Merge branch 'responsive' of github.com:webnotes/erpnext into responsive
diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.py b/accounts/doctype/purchase_invoice/purchase_invoice.py
index 56d6075..980d4e8 100644
--- a/accounts/doctype/purchase_invoice/purchase_invoice.py
+++ b/accounts/doctype/purchase_invoice/purchase_invoice.py
@@ -330,16 +330,14 @@
 		self.doc.against_expense_account = ",".join(against_accounts)
 
 	def po_required(self):
-		res = sql("select value from `tabSingles` where doctype = 'Global Defaults' and field = 'po_required'")
-		if res and res[0][0] == 'Yes':
+		if webnotes.conn.get_single_value("Buying Settings", "po_required") == 'Yes':
 			 for d in getlist(self.doclist,'entries'):
 				 if not d.purchase_order:
 					 msgprint("Purchse Order No. required against item %s"%d.item_code)
 					 raise Exception
 
 	def pr_required(self):
-		res = sql("select value from `tabSingles` where doctype = 'Global Defaults' and field = 'pr_required'")
-		if res and res[0][0] == 'Yes':
+		if webnotes.conn.get_single_value("Buying Settings", "pr_required") == 'Yes':
 			 for d in getlist(self.doclist,'entries'):
 				 if not d.purchase_receipt:
 					 msgprint("Purchase Receipt No. required against item %s"%d.item_code)
diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py
index 2d4de49..59c84d4 100644
--- a/accounts/doctype/sales_invoice/sales_invoice.py
+++ b/accounts/doctype/sales_invoice/sales_invoice.py
@@ -460,7 +460,7 @@
 		"""check in manage account if sales order / delivery note required or not."""
 		dic = {'Sales Order':'so_required','Delivery Note':'dn_required'}
 		for i in dic:	
-			if webnotes.conn.get_value('Global Defaults', 'Global Defaults', dic[i]) == 'Yes':
+			if webnotes.conn.get_single_value('Selling Settings', dic[i]) == 'Yes':
 				for d in getlist(self.doclist,'entries'):
 					if webnotes.conn.get_value('Item', d.item_code, 'is_stock_item') == 'Yes' \
 						and not d.fields[i.lower().replace(' ','_')]:
diff --git a/buying/doctype/buying_settings/__init__.py b/buying/doctype/buying_settings/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/buying/doctype/buying_settings/__init__.py
diff --git a/buying/doctype/buying_settings/buying_settings.py b/buying/doctype/buying_settings/buying_settings.py
new file mode 100644
index 0000000..7a97349
--- /dev/null
+++ b/buying/doctype/buying_settings/buying_settings.py
@@ -0,0 +1,13 @@
+# For license information, please see license.txt
+
+from __future__ import unicode_literals
+import webnotes
+
+class DocType:
+	def __init__(self, d, dl):
+		self.doc, self.doclist = d, dl
+		
+	def validate(self):
+		for key in ["supplier_type", "maintain_same_rate"]:
+			webnotes.conn.set_default(key, self.doc.fields.get(key, ""))
+	
\ No newline at end of file
diff --git a/buying/doctype/buying_settings/buying_settings.txt b/buying/doctype/buying_settings/buying_settings.txt
new file mode 100644
index 0000000..eb0da1d
--- /dev/null
+++ b/buying/doctype/buying_settings/buying_settings.txt
@@ -0,0 +1,83 @@
+[
+ {
+  "creation": "2013-06-25 11:04:03", 
+  "docstatus": 0, 
+  "modified": "2013-06-25 11:43:08", 
+  "modified_by": "Administrator", 
+  "owner": "Administrator"
+ }, 
+ {
+  "description": "Settings for Buying Module", 
+  "doctype": "DocType", 
+  "document_type": "Other", 
+  "issingle": 1, 
+  "module": "Buying", 
+  "name": "__common__"
+ }, 
+ {
+  "doctype": "DocField", 
+  "name": "__common__", 
+  "parent": "Buying Settings", 
+  "parentfield": "fields", 
+  "parenttype": "DocType", 
+  "permlevel": 0
+ }, 
+ {
+  "create": 1, 
+  "doctype": "DocPerm", 
+  "name": "__common__", 
+  "parent": "Buying Settings", 
+  "parentfield": "permissions", 
+  "parenttype": "DocType", 
+  "permlevel": 0, 
+  "read": 1, 
+  "role": "System Manager", 
+  "write": 1
+ }, 
+ {
+  "doctype": "DocType", 
+  "name": "Buying Settings"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "supp_master_name", 
+  "fieldtype": "Select", 
+  "label": "Supplier Naming By", 
+  "options": "Supplier Name\nNaming Series"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "supplier_type", 
+  "fieldtype": "Link", 
+  "label": "Default Supplier Type", 
+  "options": "Supplier Type"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "column_break_3", 
+  "fieldtype": "Column Break"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "maintain_same_rate", 
+  "fieldtype": "Check", 
+  "label": "Maintain same rate throughout purchase cycle"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "po_required", 
+  "fieldtype": "Select", 
+  "label": "Purchase Order Required", 
+  "options": "No\nYes"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "pr_required", 
+  "fieldtype": "Select", 
+  "label": "Purchase Receipt Required", 
+  "options": "No\nYes"
+ }, 
+ {
+  "doctype": "DocPerm"
+ }
+]
\ No newline at end of file
diff --git a/buying/page/buying_home/buying_home.js b/buying/page/buying_home/buying_home.js
index e996c04..0151a60 100644
--- a/buying/page/buying_home/buying_home.js
+++ b/buying/page/buying_home/buying_home.js
@@ -54,6 +54,12 @@
 		icon: "icon-cog",
 		items: [
 			{
+				"label": wn._("Buying Settings"),
+				"route": "Form/Buying Settings",
+				"doctype":"Buying Settings",
+				"description": "Settings for Buying Module"
+			},
+			{
 				"label": wn._("Purchase Taxes and Charges Master"),
 				"doctype":"Purchase Taxes and Charges Master",
 				"description": wn._("Tax Template for Purchase")
diff --git a/patches/june_2013/p09_update_global_defaults.py b/patches/june_2013/p09_update_global_defaults.py
index d2aebb1..0148b67 100644
--- a/patches/june_2013/p09_update_global_defaults.py
+++ b/patches/june_2013/p09_update_global_defaults.py
@@ -10,7 +10,11 @@
 		"reorder_email_notify": "Stock Settings",
 		"tolerance": "Stock Settings",
 		"stock_frozen_upto": "Stock Settings",
-		"stock_auth_role": "Stock Settings"
+		"stock_auth_role": "Stock Settings",
+		"so_required": "Selling Settings",
+		"dn_required": "Selling Settings",
+		"po_required": "Selling Settings",
+		"pr_required": "Selling Settings"
 	}
 	
 	from_defaults = {
@@ -18,7 +22,14 @@
 		"item_naming_by": "Stock Settings",
 		"stock_uom": "Stock Settings",
 		"valuation_method": "Stock Settings",
-		"allow_negative_stock": "Stock Settings"
+		"allow_negative_stock": "Stock Settings",
+		"cust_master_name": "Selling Settings",
+		"customer_group": "Selling Settings",
+		"territory": "Selling Settings",
+		"price_list_name": "Selling Settings",
+		"supplier_type": "Buying Settings",
+		"supp_master_name": "Buying Settings",
+		"maintain_same_rate": "Buying Settings"
 	}
 
 	for key in from_global_defaults:
diff --git a/patches/patch_list.py b/patches/patch_list.py
index 24e6beb..8979f43 100644
--- a/patches/patch_list.py
+++ b/patches/patch_list.py
@@ -247,4 +247,5 @@
 	"patches.june_2013.p06_drop_unused_tables",
 	"patches.june_2013.p08_shopping_cart_settings",
 	"patches.june_2013.p05_remove_search_criteria_reports",
+	"patches.june_2013.p09_update_global_defaults",
 ]
\ No newline at end of file
diff --git a/selling/doctype/lead/get_leads.py b/selling/doctype/lead/get_leads.py
index b0e6484..892bfd9 100644
--- a/selling/doctype/lead/get_leads.py
+++ b/selling/doctype/lead/get_leads.py
@@ -64,7 +64,7 @@
 		if mail.from_email == self.settings.email_id:
 			return
 		
-		add_sales_communication(mail.mail.get("subject", "[No Subject]"), mail.content, mail.from_email, 
+		add_sales_communication(mail.subject, mail.content, mail.from_email, 
 			mail.from_real_name, mail=mail, date=mail.date)
 
 def get_leads():
diff --git a/selling/doctype/selling_settings/__init__.py b/selling/doctype/selling_settings/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/selling/doctype/selling_settings/__init__.py
diff --git a/selling/doctype/selling_settings/selling_settings.py b/selling/doctype/selling_settings/selling_settings.py
new file mode 100644
index 0000000..5a5dc4c
--- /dev/null
+++ b/selling/doctype/selling_settings/selling_settings.py
@@ -0,0 +1,12 @@
+# For license information, please see license.txt
+
+from __future__ import unicode_literals
+import webnotes
+
+class DocType:
+	def __init__(self, d, dl):
+		self.doc, self.doclist = d, dl
+		
+	def validate(self):
+		for key in ["cust_master_name", "customer_group", "territory"]:
+			webnotes.conn.set_default(key, self.doc.fields.get(key, ""))
diff --git a/selling/doctype/selling_settings/selling_settings.txt b/selling/doctype/selling_settings/selling_settings.txt
new file mode 100644
index 0000000..a08964d
--- /dev/null
+++ b/selling/doctype/selling_settings/selling_settings.txt
@@ -0,0 +1,93 @@
+[
+ {
+  "creation": "2013-06-25 10:25:16", 
+  "docstatus": 0, 
+  "modified": "2013-06-25 10:52:35", 
+  "modified_by": "Administrator", 
+  "owner": "Administrator"
+ }, 
+ {
+  "description": "Settings for Selling Module", 
+  "doctype": "DocType", 
+  "document_type": "Other", 
+  "issingle": 1, 
+  "module": "Selling", 
+  "name": "__common__"
+ }, 
+ {
+  "doctype": "DocField", 
+  "name": "__common__", 
+  "parent": "Selling Settings", 
+  "parentfield": "fields", 
+  "parenttype": "DocType", 
+  "permlevel": 0
+ }, 
+ {
+  "create": 1, 
+  "doctype": "DocPerm", 
+  "name": "__common__", 
+  "parent": "Selling Settings", 
+  "parentfield": "permissions", 
+  "parenttype": "DocType", 
+  "permlevel": 0, 
+  "read": 1, 
+  "role": "System Manager", 
+  "write": 1
+ }, 
+ {
+  "doctype": "DocType", 
+  "name": "Selling Settings"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "cust_master_name", 
+  "fieldtype": "Select", 
+  "label": "Customer Naming By", 
+  "options": "Customer Name\nNaming Series"
+ }, 
+ {
+  "description": "<a href=\"#Sales Browser/Customer Group\">Manage Customer Groups</a>", 
+  "doctype": "DocField", 
+  "fieldname": "customer_group", 
+  "fieldtype": "Link", 
+  "label": "Default Customer Group", 
+  "options": "Customer Group"
+ }, 
+ {
+  "description": "<a href=\"#Sales Browser/Territory\">Territory</a>", 
+  "doctype": "DocField", 
+  "fieldname": "territory", 
+  "fieldtype": "Link", 
+  "label": "Default Territory", 
+  "options": "Territory"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "price_list_name", 
+  "fieldtype": "Link", 
+  "label": "Default Price List", 
+  "options": "Price List"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "column_break_5", 
+  "fieldtype": "Column Break"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "so_required", 
+  "fieldtype": "Select", 
+  "label": "Sales Order Required", 
+  "options": "No\nYes"
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "dn_required", 
+  "fieldtype": "Select", 
+  "label": "Delivery Note Required", 
+  "options": "No\nYes"
+ }, 
+ {
+  "doctype": "DocPerm"
+ }
+]
\ No newline at end of file
diff --git a/selling/page/selling_home/selling_home.js b/selling/page/selling_home/selling_home.js
index 3b3156d..91848b5 100644
--- a/selling/page/selling_home/selling_home.js
+++ b/selling/page/selling_home/selling_home.js
@@ -59,6 +59,12 @@
 		icon: "icon-cog",
 		items: [
 			{
+				"label": wn._("Selling Settings"),
+				"route": "Form/Selling Settings",
+				"doctype":"Selling Settings",
+				"description": "Settings for Selling Module"
+			},
+			{
 				label: wn._("Sales Taxes and Charges Master"),
 				description: wn._("Sales taxes template."),
 				doctype:"Sales Taxes and Charges Master"
diff --git a/setup/doctype/company/charts/__init__.py b/setup/doctype/company/charts/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/setup/doctype/company/charts/__init__.py
diff --git a/setup/doctype/company/charts/ar_ar_chart_template.json b/setup/doctype/company/charts/ar_ar_chart_template.json
new file mode 100644
index 0000000..4aceae0
--- /dev/null
+++ b/setup/doctype/company/charts/ar_ar_chart_template.json
@@ -0,0 +1,11887 @@
+{
+ "name": "Argentina - Plan de Cuentas", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Envases ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Materia Prima ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Materiales y Suministros Directos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio del personal", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad por labores", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ uniformes al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ atenciones al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ accident. trab. y enferm. prof", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ asignaci\u00f3n familiar LEY 25129", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ gastos recreativos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad del personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ bonificaci\u00f3n por riesgo de caja ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de prestaciones salud ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de pensiones ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ seguros de vida LEY 49226", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio al personal ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos adicionales a las remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n de empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / asignaci\u00f3n familiar ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / trabajos eventuales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones extraordinarias ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / practicas pre-profecionales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / subsidios por enfermedad ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / aguinaldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n obreros ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Otras remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / sueldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / salarios ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / remuneraciones en especie ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Mano de Obra Directa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Producci\u00f3n - Otros Costos Directos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Mano de Obra Indirecta", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Materiales Auxiliares", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Repuestos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Suministros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Materiales y Suministros Indirectos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - gastos indirectos / Otros Gastos de Producci\u00f3n Indirectos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Otros Gastos de Producci\u00f3n Indirectos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Gastos de Producci\u00f3n Indirectos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de Producci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de ventas - Publicidad ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Alquiler de locales y servicios basicos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones / sueldos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / comisiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / remuneraciones en especie", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ accident. trab., enferm. prof y otros seguros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ movilidad y refrigerios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ atenciones al personal y gastos recreativos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Gastos adicionales a las remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / asignaci\u00f3n familiar y bonificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / vacaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / practicas pre-profecionales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / horas extras", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Honorarios profecionales ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / embalajes y otros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / telecomunicaciones (telefono, internet,...)", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes aereos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras cargas de personal ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Mantenimiento de inmuebles, maquinarias y equipos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Otros gastos de ventas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de ventas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de administraci\u00f3n - Gastos varios ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Cotizaci\u00f3n, licitaci\u00f3n, donaciones y otros ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraci\u00f3n al directorio ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / telefonos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / practicas pre-profecionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / vacaciones empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / aguinaldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / gratificaci\u00f3n de empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / horas extras empleados      ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraciones en especie ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / sueldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / otras cargas de personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes aereos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / movilidad al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / atenciones al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / refrigerio al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / asignaci\u00f3n familiar ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / envio correspondencia ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / bonificaci\u00f3n por riesgo de caja ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Depreciaci\u00f3n y Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Penalidades, tributos y seguros  ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / gastos notariales, registro y judicial", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / honorarios profesionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / transferencias de fondos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / mantenimiento, ctas bancarias ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / servicios de seguridad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / otros servicios bancarios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / talonarios de cheques ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Publicidad, representaci\u00f3n y otros servicios de personal", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de administraci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses moratorios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / pago tributos y contribuciones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / comisi\u00f3n tarjeta de credito ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / gastos cheques devueltos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses SUNAT ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses de leasing", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Otras cargas financieras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses de pagares ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes compensatorio - por cartera", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / perdida por diferencia de cambio", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / descuentos concedidos por pronto pago", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses y gastos de prestamo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / devolucion de documentos de cobranza", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes por Letras en descuento", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses moratorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses compensatorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses,compra,mercader\u00eda ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses por sobregiros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / gastos por atrazo, cuotas bancarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Interes y gastos financieros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros    ", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Centros de Costo", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital - Capital social / acciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital - Capital social / participaciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital - Capital social ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital - Acciones en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Capital (Patrimonio neto)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PASIVOS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones a ser mantenidas hasta el vencimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones financieras representativas de derecho patrimonial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inversiones mobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / concesiones, licencias y otros derechos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / otros activos intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de intangibles  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Inversiones inmobiliarias  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de activo inmovilizado ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PATRIMONIO"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Ingresos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Ingresos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Subsidios recibidos diferidos ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Costos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Costos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, resultados  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Impuesto a la renta diferido ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / patrimonio ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / resultados ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Ganancia en venta con arrendamiento financiero paralelo ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Pasivo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ gerentes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ directores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / letras por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - ** Cuentas por cobrar comerciales, relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, relacionadas / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / reclamaciones a terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / intereses, r\u00e9galias y dividendos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / venta de activo inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / letras por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar comerciales, terceros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Estimaci\u00f3n de cuentas de cobranza dudosa", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Agotamiento acumulado / agotamiento de reservas de recursos extra\u00edbles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Agotamiento acumulado  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n, ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n, costos de exploraci\u00f3n y desarrollo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Amortizaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n,costo de financiacion, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipos diversos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipo de transporte ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, muebles y enseres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento financiero, inversiones inmobiliarias, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento ..., inmuebles, maquinaria y equipo de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Depreciaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones - Provisi\u00f3n para reestructuraciones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Otras provisiones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para litigios   ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para garant\u00edas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para gastos de responsabilidad social ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Provisiones    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / matriz", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / sucursales ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / asociadas ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / sucursales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / sucursales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Dividendos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, otras  ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas / otras cuentas por pagar diversas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, otras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, matriz", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, sucursales", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pasivo por compra de activo inmovilizado ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, relacionadas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Unidades de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "DISPONIBLES PARA LA VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones mantenidas hasta el vencimiento ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pr\u00e9stamos y partidas a cobrar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acciones y participaciones"
+         }
+        ], 
+        "name": "INVERSIONES MANTENIDAS HASTA EL VENCIMIENTO "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar a terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar al originador", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y Documentos a cobrar a terceros"
+         }
+        ], 
+        "name": "PRESTAMOS Y PARTIDAS A COBRAR "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Forward", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Futuros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Opciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Derivados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "A VALOR RAZONABLE CON CAMBIOS EN RESULTADOS"
+       }, 
+       {
+        "name": "Caja y Bancos - Valores a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y Bancos.../ BCO. CTA CTE PAB"
+         }
+        ], 
+        "name": "Caja y Bancos - Bancos"
+       }, 
+       {
+        "name": "Caja y Bancos - Recaudaciones a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / valor razonable  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable ...- Inversiones al valor razonable ** Inversiones mantenidas para negociaci\u00f3n     ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Fondos fijos / caja menuda 01 PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Activos financieros / compromiso de compra", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado /valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero eh", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo USD"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Inversiones disponibles para la venta", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones al valor razonable y disponibles para la venta ** Inversiones financieras", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar...- Letras por cobrar / en cartera", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en  cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / sucursales", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / matriz ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros ... / no emitidas, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por... - Facturas, boletas y otros .../ no emitidas, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Facturas, boletas y otros comprobantes por cobrar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Accionistas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Intereses Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Alquileres Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Anticipo al Personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar   ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Cobranza dudosa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Comisiones por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar a terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Dividendos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RENDIMIENTOS POR COBRAR"
+       }, 
+       {
+        "name": "DERECHOS POR COMPROMISO DE RECOMPRA"
+       }, 
+       {
+        "name": "ANTICIPO A CONSTRUCTOR POR AVANCE DE OBRA"
+       }, 
+       {
+        "name": "ANTICIPO COMITENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Al Originador", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Puestos inactivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por servicios burs\u00e1tiles"
+         }, 
+         {
+          "name": "Asesor\u00eda"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contrato de Underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Extraburs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Por  Manejo de Fideicomisos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Contratos de Administraci\u00f3n Portafolio de Terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Fondos Administrados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Encargos Fiduciarios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por comisiones de administraci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por  administraci\u00f3n y manejo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores Materializados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Libro de Acciones y Accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores Desmaterializados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por Custodia y Conservaci\u00f3n de Valores"
+         }, 
+         {
+          "name": "Otras comisiones"
+         }
+        ], 
+        "name": "COMISIONES POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DOCUMENTOS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Facturas, boletas y otros comprobantes por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Cuotas Iniciales", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Adelantos o Separaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cartera ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cobranza ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / Deudores Varios"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Incobrables"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }, 
+       {
+        "name": "PROVISIONES PARA CUENTAS POR COBRAR"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PRODUCTOS TERMINADOS"
+       }, 
+       {
+        "name": "PRODUCTOS EN PROCESO"
+       }, 
+       {
+        "name": "MATERIA PRIMA"
+       }, 
+       {
+        "name": "MATERIALES Y SUMINISTROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / suscripciones por cobrar a socios o accionistas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Accionistas o (socios) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / adelanto de dietas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Personal / entregas a rendir cuenta", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / otras cuentas por cobrar al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Personal", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / directores ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / personal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / gerentes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Diversas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "PROVISI\u00d3N POR DETERIORO DE EXISTENCIAS"
+       }
+      ], 
+      "name": "Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y  equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Venta de activo inmovilizado ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos /  dividendos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses , asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, sucursal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, r\u00e9galias y dividendos / intereses", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Interes\u00e9s, regal\u00edas y dividendos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / Concesiones y Franquicias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVOS ADQUIRIDOS EN ARRENDAMIENTO FINANCIERO"
+       }, 
+       {
+        "name": "CONSTRUCCIONES EN CURSO "
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PLUSVAL\u00cdA MERCANTIL (Goodwill)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROPIEDADES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Programas de computaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reservas de recursos extra\u00edbles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTANGIBLES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades"
+         }, 
+         {
+          "name": "Plusval\u00eda mercantil (Goodwill) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS NO CORRIENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas a Largo Plazo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Activos por instrumentos financieros derivados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros primarios   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / instrumento de cobertura", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / cartera de negociaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros derivados  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Activos por instrumentos financieros   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / entregas a rendir cuenta a terceros  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas a Largo Plazo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / reclamaciones a terceros ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVO NO CORRIENTE DISPONIBLE PARA LA VENTA"
+       }, 
+       {
+        "name": "UNIDADES DE PARTICIPACION"
+       }, 
+       {
+        "name": "ACTIVO POR IMPUESTO CORRIENTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / dep\u00f3sitos en garant\u00eda por alquileres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones no financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / otros dep\u00f3sitos en garant\u00eda ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Venta de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / Compa\u00f1\u00edas aseguradoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / transportadoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / tributos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / otras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / servicios p\u00fablicos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Reclamaciones a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Intereses, regal\u00edas y dividendos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Servicios y otros contratados por anticipado - Interes\u00e9s ** Costos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo por impuesto diferido  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ACTIVO POR IMPUESTO DIFERIDO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuota patrimonial bolsa de valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuota patrimonial bolsa de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por reporto", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por operaciones burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Dep\u00f3sitos en Garant\u00eda"
+         }
+        ], 
+        "name": "OTROS ACTIVOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Mantenimiento de activos inmovilizados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Otros gastos contratados por anticipado ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "ACTIVOS DE EXPLORACION Y EVALUACION MINERA"
+       }, 
+       {
+        "name": "DERECHOS FIDUCIARIOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Primas pagadas por opciones ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos en arrendamiento financiero", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos de exploraci\u00f3n y evaluaci\u00f3n minera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DEPRECIACION ACUMULADA"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Alquileres ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Seguros ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AMORTIZACION ACUMULADA"
+       }
+      ], 
+      "name": "Servicios y otros contratados por anticipado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Caja y bancos - Caja / efectivo USD ($)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y bancos - Caja / efectivo PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Caja", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y .../ BCO. CTA CTE PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Cuentas corrientes en instituciones finacieras  / cuentas corrientes operativas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y ...- Cuentas corrientes en instituciones financieras / cuentas corrientes para fines espec\u00edficos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Cuentas corrientes en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Fondos fijos / caja chica 01 PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Fondos fijos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos a plazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos de ahorro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Dep\u00f3sitos en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Certificados bancarios / certificados bancarios ** otros equivalentes de efectivos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Certificados bancarios / otros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Certificados bancarios **Otros equivalentes de efectivos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / BN CTA DETRACCIONES PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / fondos sujetos a restricci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cajas y bancos - Fondos sujetos a restricci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Caja y bancos - Efectivo en tr\u00e1nsito ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Banco Central del Ecuador"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fondos rotativos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja"
+         }, 
+         {
+          "name": "Instituciones financieras"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Ahorros Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta Ahorros En el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras Instituciones Financieras"
+         }
+        ], 
+        "name": "ACTIVO DISPONIBLE"
+       }
+      ], 
+      "name": "Caja y bancos  (Activo disponible y exigible) - Efectivo y equivalentes de efectivos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos manufacturados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos de extracci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias primas - Materias primas desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Salarios por Pagar / Retenciones a Depositar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Sueldos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos manufacturados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Salarios por Pagar / Provisi\u00f3n para Sueldo Anual Complementario", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Cargas Sociales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos agropecuarios y pisc\u00edcolas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materias primas   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras Cuentas por Pagar / Cobros por Adelantado", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Acreedores Varios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Honorarios Directores y S\u00edndicos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / lubricantes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / combustibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / energ\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / otros suministros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Suministros ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / materiales auxiliares", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / suministros    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / repuestos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares, suministros y repuestos desvalorizados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Materiales auxiliares, suministros y  repuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n para juicios Pendientes", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases y embalajes - Envases y embalajes desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Envases y embalajes - Embalajes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Envases y embalajes - Envases", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Envases y embalajes     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inversi\u00f3n inmoviliaria", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipos diversos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, herramientas y unidades de reemplazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, patentes y propiedad industrial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, reservas de recursos extra\u00edbles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos no corrientes mantenidos para la venta    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, costo - Categoria de productos 01", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Mercade...- Mercader\u00edas .../ Mercader\u00edas manufacturadas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Mercader\u00edas - Mercader\u00edas manufacturadas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas manufacturadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / recursos extra\u00eddos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / mercader\u00edas manufacturadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercaderias desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen vegetal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen animal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Otras mercader\u00edas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Mercader\u00edas  (Activo realizable)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Productos terminados - Productos de extracci\u00f3n terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Anticipos de Clientes"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen animal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos terminados - Productos agropecuarios y pisc\u00edcolas terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Proveedores"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / otros productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos inmuebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados - Productos terminados desvalorizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos terminados - Productos inmuebles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Productos manufacturados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Otros productos terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Costos de financiaci\u00f3n, productos terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Existencias de servicios terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Participaciones de los trabajadores en utilidades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Beneficios a empleados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aportes y descuentos al IESS", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondo reserva del IESS", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES PATRONALES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acreedores Varios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por administraci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras comisiones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dividendos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Comisiones por pagar ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Operaciones Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por custodia", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deuda Sector No Financiero"
+         }
+        ], 
+        "name": "PASIVO NO FINANCIERO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligaciones por Arrendamiento Financiero ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "A valor razonable con cambios en resultados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compa\u00f1\u00edas relacionadas / vinculadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Administradores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Accionistas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Relacionadas"
+         }, 
+         {
+          "name": "Pasivos por compra de activos no corrientes"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones por contratos de underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Porci\u00f3n corriente de deuda a largo plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sobregiros bancarios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Obligaciones financieras"
+         }, 
+         {
+          "name": "Otros pasivos financieros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras cuentas y documentos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Anticipos recibidos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y documentos por pagar"
+         }
+        ], 
+        "name": "PASIVOS FINANCIEROS"
+       }, 
+       {
+        "name": "OTROS PASIVOS CORRIENTES"
+       }, 
+       {
+        "name": "ACREEDORES POR INTERMEDIACION            "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Litigios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Indemnizaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Obligaciones Judiciales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SANCIONES Y MULTAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Impuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Retenciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Contribuciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES TRIBUTARIAS"
+       }
+      ], 
+      "name": "Productos  terminados", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pasivo Circulante / Debentures Emitidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / subproductos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos, desechos y desperdicios - Subproductos, desechos y desperdicios desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo Circulante / Intereses a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Obligaciones a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Prestamos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Adelantos en Cuenta Corriente", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Desechos y desperdicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses diferidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pasivos por impuestos diferidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PASIVOS DIFERIDOS"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Subproductos ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subproductos, desechos y desperdicios   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DEUDA SECTOR FINANCIERO"
+       }, 
+       {
+        "name": "Productos en proceso - Productos extra\u00eddos en proceso de transformaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / costos de financiaci\u00f3n, productos en proceso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / otros productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / existencias de servicios en proceso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en proceso - Productos en proceso desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto sobre los Bienes Personales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Deudas Fiscales / Monotributo a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / ITBMS a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / Impuesto sobre la Renta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Productos en proceso - Productos inmuebles en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Costos de financiaci\u00f3n, productos en proceso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto a la Ganancia M\u00ednima Presunta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo   ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable   ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo    ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen animal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos en proceso - Productos agropecuarios y pisc\u00edcolas en proceso", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos en proceso - Otros productos en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Productos en proceso de manufactura", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Existencias de servicios en proceso", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos en  proceso ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Existencias por recibir - Mercader\u00edas / Categoria de productos 01", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Mercader\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materias primas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materiales auxiliares, suministros y repuesto", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / mercader\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materias primas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Existencias por recibir desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materiales auxiliares, suministros y repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Existencias por recibir - Envases y embalajes", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Existencias por recibir   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materias primas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / mercader\u00edas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Existencias por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / costos de financiaci\u00f3n, productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / existencias de servicios en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / otros productos en proceso ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / otros productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / costos de financiaci\u00f3n, productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos inmuebles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos terminados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / suministros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / repuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / materiales auxiliares ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Envases y embalajes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos manufacturados    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / subproductos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Subproductos, desechos y desperdicios ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de existencias    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros activos - Bienes de arte y cultura / obras de arte ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / biblioteca", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / otros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Bienes de arte y cultura ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros activos - Diversos / otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes recibidos en pago (adjudicados y realizables) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes entregados en comodato ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / monedas y joyas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Diversos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACUMULADOS"
+       }, 
+       {
+        "name": "UTILIDAD (PERDIDA) DEL EJERCICIO"
+       }, 
+       {
+        "name": "RESULTADOS ACUMULADOS POR APLICACI\u00d3N DE LAS NIIF POR PRIMERA VEZ"
+       }
+      ], 
+      "name": "Otros activos    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / maquinaria en montaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inversiones inmobiliarias, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / otros activos en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / construcciones en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / inversi\u00f3n inmobiliaria en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaci...", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmue...- Constru.../ costo de financiaci\u00f3n, inmuebles, maquinaria y ..., C de F, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inmuebles maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / adaptaci\u00f3n de terrenos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipos diversos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / herramientas y unidades de reemplazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / muebles y enseres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Unidades por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / muebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / enseres", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Muebles y enseres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos no motorizados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos motorizados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - ** Unidades de transporte ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / herramientas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / unidades de reemplazo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Terrenos / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos .., costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / otros equipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo para procesamiento de informaci\u00f3n (de c\u00f3mputo) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de seguridad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Equipos diversos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de financiaci\u00f3n, almacenes", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / almacenes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de financiaci\u00f3n, edificaciones para producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones para producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de financiaci\u00f3n, instalaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / instalaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones administrativas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Edificaciones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inmuebles, maquinaria y equipo   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos adquiridos en arrendamiento financiero   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Capital / Dividendos a Distribuir en Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costos de financiaci\u00f3n, inversiones inmobliarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Edificaciones /  edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Edificaciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / rurales, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / rurales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / urbanos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "PATRIMONIO DE LOS NEGOCIOS FIDUCIARIOS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Patrimonio del fondo colectivo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patrimonio del fondo administrado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PATRIMONIO DE LOS FONDOS DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PAGADO"
+       }, 
+       {
+        "name": "ACCIONES EN TESORER\u00cdA"
+       }, 
+       {
+        "name": "FONDO PATRIMONIAL"
+       }
+      ], 
+      "name": "Inversiones inmobiliarias   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ instrumentos financieros representativos de derecho ..., acuerdo de compra ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ inversiones a ser mantenidas hasta el vencimiento, acuerdo de compra", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Desvalorizaci\u00f3n de inversiones mobiliarias ** acuerdos de compra ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por el sistema financiero", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por las empresas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a ../ instrumentos ., otros t\u00edtulos representativos de deuda **valores emitidos por otras entidades", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos o garantizados por el estado ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Inversiones a ser mantenidas hasta el vencimiento / instrumentos financieros representativos de deuda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Inversiones a ser mantenidas hasta el vencimiento", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ otros t\u00edtulos representativos de patrimonio, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de .../ otros t\u00edtulos representativos de patrimonio, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho patrimonial / otros t\u00edtulos representativos de patrimonio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n ..., participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ participaciones en asociaciones en participaci\u00f3n y consorcios", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de participaci\u00f3n de fondos mutuos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ **certificados de participaci\u00f3n de fondos de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones representativas de capital social, comunes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos .../ acciones representativas de capital social, preferentes, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ acciones representativas de capital social, preferentes ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de suscripci\u00f3n preferente", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Instrumentos financieros representativos de derecho patrimonial ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones mobiliarias (Activo inmovilizado)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Impuesto a la renta diferido", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, patrimonio   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Utilidades y P\u00e9rdidas del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en producci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos biol\u00f3gicos     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "OTRAS RESERVAS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / licencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / concesiones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / otros derechos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Concesiones, licencias y otros derechos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / marcas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / patentes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Patentes y propiedad industrial ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Programas de computadora (software) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Otros activos intangibles / otros activos intangibles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Otros activos intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "RESERVA LEGAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserva por valuaci\u00f3n Propiedades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reserva por Valuaci\u00f3n Activos Financieros Disponibles para la Venta", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RESERVA POR VALUACI\u00d3N"
+       }, 
+       {
+        "name": "RESERVA FACULTATIVA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / madera  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Reservas de recursos extra\u00edbles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles - Plusval\u00eda mercantil / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Intangibles - Plusval\u00eda mercantil ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Intangibles   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar diversas, terceros - D\u00e9positos recibidos en garant\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos adquiridos en arrendamientos financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones inmoviliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / intangibles ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por compra de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Pasivos financieros, compromiso de venta ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "INGRESOS DE ACTIVOS POR IMPUESTOS DIFERIDOS"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Reclamaciones de terceros ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / otras cuentas por pagar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / donaciones condicionadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / subsidios gubernamentales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros primarios  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, cartera de negociaci\u00f3n ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, instrumentos de cobertura ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros derivados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por instrumentos financieros   ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, terceros ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Directores / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Directores / dietas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Gerentes ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "UTILIDAD POR OPERACIONES DESCONTINUADAS"
+       }, 
+       {
+        "name": "OTRAS UTILIDADES EN VENTAS"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE VALORES"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE PROPIEDAD"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Largo Plazo", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Corto Plazo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / dividendos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Accionistas (o socios) ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar a los accionistas(socios), directores y gerentes ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / contratos de arrendamiento financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos emitidos   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos titulizados  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, otras obligaciones ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, instituciones financieras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, otras entidades ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / pr\u00e9stamos de instituciones financieras y otras entidades ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, pagar\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, letras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, facturas conformadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, otras obligaciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, bonos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / otros instrumentos  financieros por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / otras entidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / instituciones financieras    ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Pr\u00e9stamos de instituciones financieras y otras entidades   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero a Largo Plazo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero parte Corriente", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Contratos de arrendamientos financiero  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos emitidos  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos titulizados ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / otras obligaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Obligaciones emitidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / pagar\u00e9s ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / letras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / facturas conformadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / bonos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / otras obligaciones financieras  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Otros instrumentos financieros por pagar    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Obligaciones financieras - Pr\u00e9stamos con compromisos de recompra ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "OBLIGACIONES FINANCIERAS"
+       }, 
+       {
+        "name": "ACTIVOS BIOL\u00d3GICOS"
+       }, 
+       {
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "ACTIVOS NO CORRIENTES"
+       }
+      ], 
+      "name": "Obligaciones financieras  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Honorarios por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Anticipos a proveedores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inscripciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mantenimiento de Inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Comisiones en operaciones ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS BURS\u00c1TILES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Portafolio de terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por representaci\u00f3n de obligacionistas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR PRESTACI\u00d3N DE SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERMEDIACI\u00d3N DE VALORES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores materializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y liquidaci\u00f3n de valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO\n        COMPENSACI\u00d3N Y LIQUIDACI\u00d3N"
+       }, 
+       {
+        "name": "OTRAS COMISIONES GANADAS"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Letras por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, terceros - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ganancia Venta de Activo Fijo", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Recupero de Deudores Incobrables", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta Inversiones Permanentes", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Donaciones obtenidas, ganandas, percibidas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, sucursales ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta p\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INGRESOS POR ESTRUCTURACI\u00d3N"
+       }, 
+       {
+        "name": "INGRESOS POR ASESORIA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, otros", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, matriz", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobiernos regionales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Otros costos administrativos e intereses ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Administradoras de fondos de pensiones (AFP)", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Certificados tributarios ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto de alcabala ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto predial ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al rodaje", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al patrimonio vehicular ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los juegos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a las apuestas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los espect\u00e1culos p\u00fablicos no deportivos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / impuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios administrativos o derechos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, estacionamiento de veh\u00edculos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, licencia de apertura de establecimientos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios p\u00fablicos o arbitrios ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, transporte p\u00fablico ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / tasas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Gobiernos locales / contribuciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes ...- Gobiernos Locales (Predial, Licencias, tributos, impuestos, contribuciones, tasas y arbitrios,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENCICO ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ONP", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ESSALUD", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENATI", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / otras instituciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Instituciones p\u00fablicas (ESSALUD, ONP,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Gobierno central / impuesto selectivo al consumo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, tasas por la prestaci\u00f3n de servicios p\u00fablicos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, regal\u00edas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los dividendos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a las transacciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los juegos de casino y tragamonedas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, otros impuestos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto temporal a los activos netos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / **otros impuestos (ITF,...) y contraprestaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon hidroenerg\u00e9tico ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon petroleo ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon gas\u00edfero ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon minero  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon forestal ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon pesquero ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / canon", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - servicios prestados por no domiciliados   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de percepciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - cuenta propia ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas (IGV)   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de cuarta categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de no domiciliados ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de tercera categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, otras retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de quinta categor\u00eda ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos arancelarios ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos aduaneros por ventas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobierno central", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta propia ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta de terceros ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Empresas prestadoras de servicios de salud (EPS)", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Tributos, **contraprestaciones  y aportes al sistema de pensiones y de salud por pagar  (Pasivo)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Comisiones gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajodores por pagar / pensiones y jubilaciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / adelanto de compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar - Beneficios sociales de los trabajadores por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Interese sobre Inversiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Honorarios gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Categoria de productos 01", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / sueldos y salarios por pagar   ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / gratificaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / vacaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / comisiones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / remuneraciones en especie por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar  - Remuneraciones por pagar   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Intereses gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Alquileres gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta de Acciones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "INTERESES Y RENDIMIENTOS"
+       }, 
+       {
+        "name": "UTILIDAD EN CAMBIO"
+       }, 
+       {
+        "name": "DIVIDENDOS"
+       }, 
+       {
+        "name": "UTILIDAD POR VALUACI\u00d3N DE ACTIVOS FINANCIEROS A VALOR RAZONABLE"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Otras remuneraciones y participaciones por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Participaci\u00f3n de los trabajadores por pagar ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Remuneraciones y participaciones por pagar", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / ingresos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / utilidades acumuladas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - Utilidades no distribuidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / p\u00e9rdidas acumuladas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / gastos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - P\u00e9rdidas acumuladas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados acumulados     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reserva legal - Contractuales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Estatutarias ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Reinversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Facultativas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Legal ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Otras reservas ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Reserva legal    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente de revaluaci\u00f3n - Participaci\u00f3n en excedente de revaluaci\u00f3n, inversiones en entidades relacionadas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / intangibles ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Exdecente de revaluaci\u00f3n / inversiones inmobiliarias  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / inmuebles, maquinaria y equipos ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n, acciones liberadas recibidas  ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Excedente de revaluaci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultados no realizados - Instrumentos financieros, cobertura de flujo de efectivo ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados no realizados - Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Resultados no realizados - Diferencia en cambio de inversiones permanentes en entidades extranjeras ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta,compra o venta convencional fecha d liqui", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados no realizados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de Publicidad y Propaganda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Salarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses por cr\u00e9ditos de bancos y otras Instituciones financieras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intereses por otros pasivos no financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERESES CAUSADOS"
+       }, 
+       {
+        "name": "Gastos en Servicios P\u00fablicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Mercader\u00edas Vendidas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Depreciaci\u00f3n de Activo Fijo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Cargas Sociales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos Bancarios", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Impuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en Valuaci\u00f3n de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN VALUACI\u00d3N DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en cambio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN CAMBIO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Arrendamiento operativo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ARRENDAMIENTO OPERATIVO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores Desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y Liquidaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores Materializados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO COMPENSACI\u00d3N Y LIQUIDACI\u00d3N \n      "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras Comisiones Pagadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS COMISIONES PAGADAS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tlies", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COMISIONES PAGADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Administraci\u00f3n de portafolio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por operaciones descontinuadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta activos biol\u00f2gicos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Propiedad ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDAS EN VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta P\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS POR ESTRUCTURACI\u00d3N"
+       }
+      ], 
+      "name": "Acciones de inversi\u00f3n   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Beneficios sociales de los trabajadores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS DE PERSONAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios de terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS DE TERCEROS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Honorarios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "HONORARIOS"
+       }, 
+       {
+        "name": "Capital adicional - Reducciones de capital pendientes de formalizaci\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Capital adicional - Primas (descuento) de acciones  ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Gastos en Siniestros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / reservas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / aportes ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / utilidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / acreencias ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital adicional - Capitalizaciones en tr\u00e1mite ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida Venta Activo Fijo", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Capital adicional ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inventarios - Mercancias / Categoria de productos 01", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inventarios - Mercancias"
+         }, 
+         {
+          "name": "Materias primas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inventarios - Mercancias en Tr\u00e1nsito", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos Elaborados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos en Curso de Elaboraci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Inventarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales Varios ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plantas en crecimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animales vivos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inventarios"
+       }
+      ], 
+      "name": "ACTIVOS"
+     }
+    ], 
+    "name": "Cuentas de Balance", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Compras - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercaderias / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos .../ otros costos vinculados con las compras de materias primas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ comisiones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos vinculados con las compras / costos vinculados con las compras de materias primas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ comisiones    ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ otros costos vinculados con las compras de mercader\u00edas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos Vinculados con las compras / costos vinculados con las compras de mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vincu...,otros costos vinculados con las compras de materiales, suministros y repuestos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, seguros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, transporte  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de materiales, suministros y repuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, transporte  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ../ costos vinculados con las compras de envases y .., otrs costos vinculados con las compras d env y emb", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, seguros ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de envases y embalajes ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Costos Vinculados con las compras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos de extracc\u00edon ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ repuestos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Envases y embalajes / embalajes ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Envases y embalajes / envases ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Envases y embalajes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compras (Gastos por naturaleza)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "COSTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas imputables ...- Gastos financieros imputables a cuentas de existencias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cargas imputables ...- Cargas imputables a cuentas de costos y gastos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas imputables a cuentas de costos y gastos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas cubiertas por provisiones - Cargas cubiertas por provisiones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas cubiertas por provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / existencias de servicios terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costos de producci\u00f3n no absorbido, productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costo de ineficiencia, productos terminados  ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Productos terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / desechos y desperdicios ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros - Categoria de productos 01", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercaderi\u00e1s de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Servicios / relacionadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Servicios / terceros (Costo diferido)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos en proceso ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / existencias por recibir ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materias primas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / mercader\u00edas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / subproductos, desechos y desperdicios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / envases y embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de ventas  ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "INGRESOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente bruto ...- Exdedente bruto (insuficiencia bruta) de explotaci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Excedente bruto (insuficiencia bruta) de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado de explotaci\u00f3n - Resultado de explotaci\u00f3n", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado antes ...- Resultado antes de participaciones e impuestos ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado antes de participaciones e impuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ repuestos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas iinmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercaderias manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ embalajes", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ envases", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Venta - Categoria de productos 01", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias  (perdidas de inventario)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / beneficio de movilidad al trabajador", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaciones extraordinarias", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / asignaci\u00f3n familiar", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / sueldos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / subsidios por enfermedad", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / horas Extras", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaci\u00f3n por riesgo de caja", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de personal ...- Remuneraciones / sueldos y salarios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / vacaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / gratificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / comisiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / remuneraciones en especie", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de pensiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ caja de beneficios de seguridad social del pescador", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de ...- Seguridad .../ seguro complementario de trabajo de riesgo, accidentes de trabajo y enfermedades profesionales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguros particulares de prestaciones de salud - EPS y otros particulares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de prestaciones de salud", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguro de vida", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ contribuciones al SENCICO y el SENATI ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Seguridad y previsi\u00f3n social y otras contribuciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal  ...- Otras Remuneraciones / planilla de movilidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Otras remuneraciones   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Capacitaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ Compensaci\u00f3n por tiempo de servicio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ otros beneficios post-empleo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ pensiones y jubilaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Beneficios sociales de los trabajadores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Indemnizaciones al personal", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Retribuciones al directorio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Atenci\u00f3n al personal  ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compras - Categoria de productos 01", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de personal, directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de ventas   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / verificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de cobranzas   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Producci\u00f3n encargada a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / agua", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / gas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / energ\u00eda el\u00e9ctrica", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios / internet", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / cable", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / radio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / tel\u00e9fono", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios b\u00e1sicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultoria / administrartiva ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / mercadotecnia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / medioambiental ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / legal y tributaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / auditor\u00eda y contable ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / investigaci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Asesor\u00eda y consultor\u00eda ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / relaciones p\u00fablicas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / diarios y revistas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / televisi\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / articulos promocionales", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / radial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / otros medios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Publicidad, publicaciones, relaciones p\u00fablicas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / edificios y locales", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inversi\u00f3n inmoviliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / unidades de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / combustible y lubricantes", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / herramientas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Mantenimiento y reparaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / terrenos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / vigilancia", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / guardian\u00eda", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / conserjer\u00eda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios de contratistas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos de laboratorio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / mantenimiento de cuentas", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / transferencias de fondos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / talonario de cheques", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / otros servicios bancarios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos bancarios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos notariales y de registro ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ legalizaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ tr\u00e1mites judiciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ varios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ centrales de riesgo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Otros servicios prestados por terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ correos  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alojamiento", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alimentaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ otros gastos de viaje ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de pasajeros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de carga", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Transporte, correos .../ transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros -Transporte, correos y gastos de viaje  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de servicios prestados por terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos por tributos - Gobierno regional ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Cotizaciones con car\u00e1cter de tributo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto al patrimonio vehicular ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / licencia de funcionamiento ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / arbitrios municipales y seguridad ciudadana ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto predial ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno local", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENATI ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENCICO", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Otros gastos por tributos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Otros tributos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno central / c\u00e1nones ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / regal\u00edas mineras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a las transacciones financieras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a los juegos de casino y m\u00e1quinas tragamonedas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto general a las ventas y selectivo al consumo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto temporal a los activos netos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno central ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos por tributos   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inversiones inmobiliarias  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos biol\u00f3gicos ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos adquiridos en arrendamiento financiero", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inmuebles, maquinaria y equipo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, intangibles ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Otros ...- Costo neto .../ operaciones discontinuadas, abandono de activos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inversiones inmobiliarias", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos biol\u00f3gicos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inmuebles, maquinaria y equipo", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / intangibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos adquiridos en arrendamiento financiero", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Otros ...- Costo neto ... / Costo neto de enajenaci\u00f3n de activos inmovilizados   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Costo neto de enajenaci\u00f3n de activos inmovilizados y operaciones discontinuadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gastos de investigaci\u00f3n y desarrollo", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Regal\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suministros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos de ...- Seguros / vehiculos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / robo, desfalco", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / contra incendio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Seguros", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Licencias y derechos de vigencia", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gesti\u00f3n medioambiental", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suscripciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / sanciones administrativas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / gastos extraordinarios ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / otros gastos ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / donaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Otros gastos de gesti\u00f3n  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otros gastos de gesti\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Gastos por participaciones en negocios conjuntos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Participaci\u00f3n en los resultados de subsidiarias y afiliadas bajo el m\u00e9todo del valor patrimonial", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Obligaciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / inversiones inmobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / productos terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inmuebles, maquinaria y equipo ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inversi\u00f3n inmoviliaria ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, intangibles ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, activos biol\u00f3gicos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "P\u00e9rdida por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaci\u00f3n en los resultados de subsidiarias y asociadas bajo el m\u00e9todo del valor patrimonial ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaciones en negocios conjuntos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Participaci\u00f3n en resultados de entidades relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Otros gastos financieros / primas por opciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Otros gastos financieros / gastos financieros en medici\u00f3n a valor descontado", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Otros gastos financieros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ emisi\u00f3n y colocaci\u00f3n de instrumentos representativos de deuda y patrimonio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros -  Gastos en operaciones de endeudamiento y otros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones de factoraje / gastos por menor valor ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Gastos en operaciones de factoraje ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones para negociaci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos.../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones comerciales (compra de mercaderia)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ otros instrumentos financieros por pagar (sobre giro bancario)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones tributarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ otras entidades", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ instituciones financieras", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos...- Intereses por pr\u00e9stamos .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones emitidas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Intereses por pr\u00e9stamos y otras obligaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Diferencia de cambio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Descuentos concedidos por pronto pago", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - P\u00e9rdida por instrumentos financieros derivados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros  (gastos en operaciones de endudamiento, intereses,...)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / patentes y propiedad industrial ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Amortizaci\u00f3n de intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de activos biol\u00f3gicos en  producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inversiones inmobiliarias / edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / plusval\u00eda mercantil ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inmuebles maquinaria y equipo   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Deterioro del valor de los activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, terceros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, terceros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de .., cuentas por cobrar al personal, a los accionistas(socios)..", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones mobiliarias, inversiones a ser mantenidas hasta el vencimento ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones ., instrumentos financieros representativos de derecho patrimonial", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Valuaci\u00f3n de activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para gastos de responsabilidad social", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado, costo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del ..., actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para litigios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para reestructuraciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / otras provisiones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Provisiones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmoviliarias / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento financiero .../ edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal   ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ muebles y enseres", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de  explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costos de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Depreciaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y ...- Agotamiento / agotamiento de recursos naturales adquiridos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Agotamiento", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valuaci\u00f3n y deterioro de activos y provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "COSTO DE PRODUCCI\u00d3N "
+         }, 
+         {
+          "name": "OBLIGACIONES FINANCIERAS"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PRIMA POR OPERACIONES DE REPORTO"
+         }, 
+         {
+          "name": "OTROS GASTOS"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "FISCALES"
+         }, 
+         {
+          "name": "ORGANISMOS DE CONTROL"
+         }, 
+         {
+          "name": "MUNICIPALES"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "ACTIVOS NO CORRIENTES "
+         }, 
+         {
+          "name": "CUENTAS POR COBRAR"
+         }, 
+         {
+          "name": "COSTO DE VENTAS"
+         }
+        ], 
+        "name": "P\u00c9RDIDA POR MEDICI\u00d3N DE ACTIVOS NO FINANCIEROS AL VALOR RAZONABLE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ARRENDAMIENTOS"
+         }, 
+         {
+          "name": "POR PUBLICIDAD"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "SEGUROS"
+         }, 
+         {
+          "name": "MATERIALES Y SUMINISTROS"
+         }, 
+         {
+          "name": "SERVICIOS Y MANTENIMIENTO"
+         }, 
+         {
+          "name": "DEPRECIACI\u00d3N"
+         }, 
+         {
+          "name": "AMORTIZACIONES"
+         }, 
+         {
+          "name": "PROVISIONES"
+         }
+        ], 
+        "name": "GASTOS GENERALES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACTIVOS DE EXPLORACI\u00d3N Y EVALUACI\u00d3N MINERA"
+         }, 
+         {
+          "name": "PLUSVAL\u00cdA MERCANTIL (GOODWILL)"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "CUENTAS Y DOCUMENTOS POR COBRAR"
+         }, 
+         {
+          "name": "EXISTENCIAS"
+         }, 
+         {
+          "name": "PROPIEDADES  PLANTA Y EQUIPO"
+         }
+        ], 
+        "name": "GASTOS POR  DETERIORO"
+       }
+      ], 
+      "name": "GASTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ingresos financieros - Ingresos en operaciones de factoraje (factoring)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Dividendos  ", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Participaci\u00f3n en result de subsidiarias y asociadas bajo m\u00e9todo de valor patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Ingresos por participaciones en negocios conjuntos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Participaci\u00f3n en resultados de entidades relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ingresos financieros - Ganancia por instrumento financiero derivado", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Diferencia en Cambio (desajuste)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Descuentos obtenidos por pronto pago", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones disponibles para la venta", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Otras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Ganancia por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos ...- Rendimientos ganados / inversiones a ser mantenidas hasta vencimiento", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / pr\u00e9stamos otorgados (Intereses Moratorios)", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / instrumentos financieros representativos de derecho patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Devengado", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Por Devengar", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / dep\u00f3sitos en instituciones financieras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Rendimientos Ganados (moras e intereses cobrados)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos...- Otros ingresos ... /ingresos financieros  en medici\u00f3n a valor descontado (venta al cr\u00e9dito)", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Otros ingresos financieros", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ingresos financieros    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Activos biol\u00f3gicos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inversiones inmobiliarias", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inmuebles, maquinaria y equipo", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Intangibles", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n activos no financieros al valor razonable - Activo realizable   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado  / inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable - Activo inmovilizado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de intangibles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inversiones inmobiliarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inmuebles, maquinaria y equipo", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de deterioro de cuentas de activos inmovilizados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ... /cuentas de cobranza dudosa", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de existencias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de cuentas de valuaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Alquileres / equipos diversos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / terrenos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / equipo de transporte", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / edificaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos de gesti\u00f3n - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / donaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / reclamos al seguro", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / sudsidios gubernamentales ", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / dividendos de acciones preferentes ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / interes minoritario ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / resultados por exposici\u00f3n a la inflaci\u00f3n ( )", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / ingresos extraordinarios ( )", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros ingresos ...- Otros ingresos  de gesti\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inmuebles, maquinaria y equipo intangible", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ intangibles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos biol\u00f3gicos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones mobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos adquiridos en arrendamiento financiero", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros ingresos ...- Enajenaci\u00f3n de activos inmovilizados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Regalias", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Servicios en beneficio del personal", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Comisiones y corretajes", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Otros ingresos de gesti\u00f3n  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / relacionadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / terceros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Custodia", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES RECIBIDOS DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Titularizaci\u00f3n", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios no inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles no inscritos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Negocios Fiduciarios"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Administrados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Fondos de Inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Administraci\u00f3n de portafolio "
+         }
+        ], 
+        "name": "ADMINISTRACION DE RECURSOS DE TERCEROS"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones concedidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos  / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos, rebajas y bonificaciones obtenidos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones obtenidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen animal  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen vegetal", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n .../ costos de financiaci\u00f3n  inversiones inmobiliarias, edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, maquinaria y equipo, edificaciones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, ..., maquinarias y otros equipos de explotaci\u00f3n ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Costos de financiaci\u00f3n capitalizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / maquinarias y otros equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / otros equipos   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de seguridad", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producc\u00edon de activo ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inversiones inmobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Acreedores por  contra", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Producci\u00f3n de activo inmovilizado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Bienes en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores en garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES PROPIOS EN PODER DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Emisiones no colocadas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "EMISIONES NO COLOCADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Colaterales de las operaciones de reporto burs\u00e1til", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COLATERALES DE LAS OPERACIONES DE REPORTO BURSATIL"
+       }, 
+       {
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de existencias de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos sobre instrumentos financieros derivados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS CUENTAS DE ORDEN DEUDORAS"
+       }, 
+       {
+        "name": "Documentos Endosados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / envases", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / embalajes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / existencias de productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / otros productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos inmuebles en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ desechos y desperdicios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ sub productos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producc\u00edon almacenada - Variaci\u00f3n de productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos inmuebles terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de la producci\u00f3n almacenada", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, terceros   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas - Prestaci\u00f3n de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados - Productos manufacturados    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Productos terminados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ventas - Software", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas agropecuarias y pisc\u00edcolas   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas otras  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas de extracc\u00edon ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas inmuebles  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercaderias relacionadas / mercader\u00edas manufacturadas   ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / mercader\u00edas relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos  inmuebles terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos manufacturados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Productos terminados, relacionadas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos manufacturados ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos inmuebles terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / productos terminados terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas de extracc\u00edon", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas otras", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas inmuebles", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas  - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas     ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas  - Mercader\u00edas terceros", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Devoluciones sobre ventas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, terceros (Venta Diferida)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas terceros - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Mercader\u00edas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ventas (Ingresos)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /diferido", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /corriente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Impuesto a la renta   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - Utilidad", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - P\u00e9rdida", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Determinaci\u00f3n del resultado del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valor agregado - Valor agregado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valor agregado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Margen comercial - Margen comercial", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Margen comercial (Saldos intermediarios de gesti\u00f3n)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de servicios ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de bienes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Producci\u00f3n del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / corriente", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / diferida", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Participaciones de los trabajadores", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Ganancias y Perdidas", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Acreedoras por el contrario", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores entregados - Activos realizables entregados en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / reponsb. por LT o efectos desc. 00.2.000", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / LT/.o efectos descontados 00.1.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables /  bienes en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables / bienes en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cuentas por cobrar   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cartas fianza ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores entregados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a futuro", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Permutas financieras (swap)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compromisos sobre instrumentos financieros derivados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores recibidos - Activos realizables recibidos en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes de uso / bienes recibidos por embargos, 00.5.001", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes de uso / respons. por bienes recib. p, 00.6.001", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso muebles enseres, 00.4.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso equipos diversos, 00.4.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, 00.4.000", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, muebles y enseres, 00.3.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, equipos diversos, 00.3.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, 00.3.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes de uso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes recibidos en pr\u00e9stamo y custodia ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cuentas por cobrar ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cartas fianza", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Valores y bienes recibidos en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores recibidos ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden acreedoras - Diversas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Deudoras por contra ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Permutas financieras (swap) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a futuro ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Derechos sobre instrumentos financieros derivados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden deudoras - Diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / suministros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Bienes dados de baja ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en ejecuci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en tr\u00e1mite ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Contratos aprobados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden deudoras", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Orden", 
+    "root_type": "None"
+   }
+  ], 
+  "name": "Per\u00fa - PCGE 2010", 
+  "root_type": "None"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/at_austria_chart_template.json b/setup/doctype/company/charts/at_austria_chart_template.json
new file mode 100644
index 0000000..23dfe67
--- /dev/null
+++ b/setup/doctype/company/charts/at_austria_chart_template.json
@@ -0,0 +1,2426 @@
+{
+ "name": "Austria - Chart of Accounts", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "name": "5500 bis 5590 Verbrauch von Werkzeugen und anderen Erzeugungshilfsmittel", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf igErwerb 20 % VSt/20 % USt", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf igErwerb 10 % VSt/10 % USt", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5400 bis 5490 Verbrauch von Betriebsstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Skontoertr\u00e4ge auf sonstige bezogene Herstellungsleistungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "5100 bis 5190 Verbrauch an Rohstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5300 bis 5390 Verbrauch von Hilfsstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5700 bis 5790 Sonstige bezogene Herstellungsleistungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf 20 %", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf igErwerb ohne Vorsteuerabzug und 10 % USt", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf igErwerb ohne Vorsteuerabzug und 20 % USt", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Aufwandsstellenrechnung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5200 bis 5290 Verbrauch von bezogenen Fertig- und Einzelteilen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5600 bis 5690 Verbrauch von Brenn- und Treibstoffen, Energie und Wasser", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Skontoertr\u00e4ge auf Materialaufwand", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Summe Wareneinsatz"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Rezerwa z tytu\u0142u odroczonego podatku dochodowego"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rezerwa d\u0142ugoterminowa na \u015bwiadczenia emerytalne i podobne"
+         }, 
+         {
+          "name": "Rezerwa kr\u00f3tkoterminowa na \u015bwiadczenia emerytalne i podobne"
+         }
+        ], 
+        "name": "Rezerwa na \u015bwiadczenia"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pozosta\u0142e rezerwy kr\u00f3tkoterminowe"
+         }, 
+         {
+          "name": "Pozosta\u0142e rezerwy d\u0142ugoterminowe"
+         }
+        ], 
+        "name": "Pozosta\u0142e rezerwy"
+       }
+      ], 
+      "name": "Rezerwy"
+     }, 
+     {
+      "name": "Kapita\u0142 podstawowy"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inne rozliczenia mi\u0119dzyokresowe d\u0142ugoterminowe"
+         }, 
+         {
+          "name": "Inne rozliczenia mi\u0119dzyokresowe kr\u00f3tkoterminowe"
+         }
+        ], 
+        "name": "Inne rozliczenia mi\u0119dzyokresowe"
+       }, 
+       {
+        "name": "Ujemna warto\u015b\u0107 firmy"
+       }
+      ], 
+      "name": "Rozliczenia mi\u0119dzyokresowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Zak\u0142adowy fundusz \u015bwiadcze\u0144 socjalnych"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Zak\u0142adowy fundusz rehabilitacji os\u00f3b niepe\u0142nosprawnych"
+         }, 
+         {
+          "name": "Fundusz nagr\u00f3d"
+         }, 
+         {
+          "name": "Fundusz na remont zasob\u00f3w mieszkaniowych"
+         }
+        ], 
+        "name": "Inne fundusze specjalne"
+       }
+      ], 
+      "name": "Fundusze specjalne"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Podatek dochodowy od os\u00f3b prawnych"
+       }, 
+       {
+        "name": "Inne obowi\u0105zkowe obci\u0105\u017cenia wyniku finansowego"
+       }
+      ], 
+      "name": "Podatek dochodowy i inne obowi\u0105zkowe obci\u0105\u017cenia wyniku finansowego"
+     }, 
+     {
+      "name": "Rozliczenia wyniku finansowego"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kapita\u0142 rezerwowy"
+       }, 
+       {
+        "name": "Kapita\u0142 zapasowy"
+       }, 
+       {
+        "name": "Kapita\u0142y wydzielone w jednostce statutowej i zak\u0142adach (oddzia\u0142ach) samodzielnie sporz\u0105dzaj\u0105cych bilans"
+       }, 
+       {
+        "name": "Kapita\u0142 z aktualizacji wyceny"
+       }
+      ], 
+      "name": "Pozosta\u0142e kapita\u0142y i fundusze"
+     }, 
+     {
+      "name": "Wynik finansowy"
+     }
+    ], 
+    "name": "Kapita\u0142y w\u0142asne i wynik finansowy"
+   }, 
+   {
+    "children": [
+     {
+      "name": "8600 bis 8690 Aufl\u00f6sung unversteuerten R\u00fccklagen"
+     }, 
+     {
+      "name": "Gewinabfuhr bzw. Verlust\u00fcberrechnung aus Ergebnisabf\u00fchrungsvertr\u00e4gen"
+     }, 
+     {
+      "name": "8100 bis 8130 Sonstige Zinsen und \u00e4hnliche Ertr\u00e4ge", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "nicht ausgenutzte Lieferantenskonti", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Erl\u00f6se aus dem Abgang von Wertpapieren des Umlaufverm\u00f6gens", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se aus dem Abgang von Beteiligungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8700 bis 8740 Aufl\u00f6sung von Kapitalr\u00fccklagen"
+     }, 
+     {
+      "name": "8260 bis 8270 Aufwendungen aus sonst. Fiananzanlagen und aus Wertpapieren des Umlaufverm\u00f6gens", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "8450 bis 8490 Au\u00dferordentliche Aufwendungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Buchwert abgegangener sonstiger Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8220 bis 8250 Aufwendungen aus Beteiligungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Ertr\u00e4ge aus dem Abgang von und der Zuschreibung zu Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8800 bis 8890 Zuweisung von unversteuerten R\u00fccklagen"
+     }, 
+     {
+      "name": "8050 bis 8090 Ertr\u00e4ge aus anderen Wertpapieren und Ausleihungen des Finanzanlageverm\u00f6gens", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8280 bis 8340 Zinsen und \u00e4hnliche Aufwendungem", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "8750 bis 8790 Aufl\u00f6sung von Gewinnr\u00fccklagen"
+     }, 
+     {
+      "name": "Buchwert abgegangener Beteiligungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8500 bis 8590 Steuern vom Einkommen und vom Ertrag"
+     }, 
+     {
+      "name": "Erl\u00f6se aus dem Abgang von sonstigen Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Buchwert abgegangener Wertpapiere des Umlaufverm\u00f6gens", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8400 bis 8440 Au\u00dferordentliche Ertr\u00e4ge", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Ertr\u00e4ge aus dem Abgang von und der Zuschreibung zu Wertpapieren des Umlaufverm\u00f6gens", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8000 bis 8040 Ertr\u00e4ge aus Beteiligungen", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Summe Finanzertr\u00e4ge und Aufwendungen"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Hebezeuge und Montageanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Aufwendungen f\u00fcs das Ingangssetzen u. Erweitern eines Betriebes", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anlagen im Bau", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Vorrichtungen, Formen und Modelle", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Maschinenwerkzeuge", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Wohn- und Sozialgeb\u00e4ude auf eigenem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Wohn- und Sozialgeb\u00e4ude auf fremdem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Marken, Warenzeichen und Musterschutzrechte", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geringwertige Verm\u00f6gensgegenst\u00e4nde, soweit nicht im Erzeugungsprozess verwendet", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Grundst\u00fcckseinrichtunten auf fremdem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Patentrechte und Lizenzen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Bauliche Investitionen in fremden (gepachteten) Wohn- und Sozialgeb\u00e4uden", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Beteiligungen an angeschlossenen (assoziierten) Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "B\u00fcromaschinen, EDV - Anlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Gesch\u00e4fts(Firmen)wert", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Ausleihungen an  verbundene Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Beheizungs- und Beleuchtungsanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Sonstige Ausleihungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Andere Betriebs- und Gesch\u00e4ftsausstattung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an Personengesellschaften ohne Beteiligungscharakter", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Antriebsmaschinen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "LKW", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Transportanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "920 bis 930 Festverzinsliche Wertpapiere des Anlageverm\u00f6gens", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Genossenschaften ohne Beteiligungscharakter", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Bebaute Grundst\u00fccke (Grundwert)", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geringwertige Verm\u00f6gensgegenst\u00e4nde, soweit im Erzeugerprozess verwendet", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "940 bis 970 Sonstige Finanzanlagen, Wertrechte", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Andere Erzeugungshilfsmittel", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geleistete Anzahlungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Allgemeine Werkzeuge und Handwerkzeuge", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geleistete Anzahlungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geleistete Anzahlungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Betriebs- und Gesch\u00e4ftsgeb\u00e4ude auf eigenem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Betriebs- und Gesch\u00e4ftsgeb\u00e4ude auf fremdem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Datenverarbeitungsprogramme", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Grundst\u00fcckseinrichtunten auf eigenem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Konzessionen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Sonstige Beteiligungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Bauliche Investitionen in fremden (gepachteten) Betriebs- und Gesch\u00e4ftsgeb\u00e4uden", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Beteiligungen an Gemeinschaftunternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "44 bis 49 Sonstige Maschinen und maschinelle Anlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "PKW", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pacht- und Mietrechte", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Ausleihungen an  verbundene Unternehmen, mit denen ein Beteiligungsverh\u00e4lnis besteht", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Nachrichten- und Kontrollanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an Kapitalgesellschaften ohne Beteiligungscharakter", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Fertigungsmaschinen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Gebinde", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Energieversorgungsanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Andere Bef\u00f6rderungsmittel", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Grundst\u00fccksgleiche Rechte", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an Investmentfonds", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Unbebaute Grundst\u00fccke", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Summe Kontoklasse 0 Anlageverm\u00f6gen"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Aktywa z tytu\u0142u odroczonego podatku dochodowego"
+       }, 
+       {
+        "name": "Inne rozliczenia mi\u0119dzyokresowe"
+       }
+      ], 
+      "name": "Pozosta\u0142e rozliczenia mi\u0119dzyokresowe"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Produkty gotowe w magazynie", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Produkty gotowe poza jednostk\u0105", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Produkty gotowe"
+       }, 
+       {
+        "name": "P\u00f3\u0142produkty", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Produkty i p\u00f3\u0142produkty"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Czynne rozliczenia mi\u0119dzyokresowe koszt\u00f3w"
+       }, 
+       {
+        "name": "Bierne rozliczenia mi\u0119dzyokresowe koszt\u00f3w"
+       }
+      ], 
+      "name": "Rozliczenia mi\u0119dzyokresowe koszt\u00f3w"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Odchylenia z tytu\u0142u aktualizacji warto\u015bci zapas\u00f3w produkt\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odchylenia od cen ewidencyjnych produkt\u00f3w", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Odchylenia od cen ewidencyjnych produkt\u00f3w"
+     }
+    ], 
+    "name": "Produkty i rozliczenia mi\u0119dzyokresowe"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Amortyzacja", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Pozosta\u0142e koszty rodzajowe", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Pozosta\u0142e \u015bwiadczenia", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Odpisy na zak\u0142adowy fundusz \u015bwiadcze\u0144 socjalnych lub \u015bwiadczenia urlopowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sk\u0142adki na ubezpieczenia spo\u0142eczne, FP, FG\u015aP", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ubezpieczenia spo\u0142eczne i inne \u015bwiadczenia"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Podatek od nieruchomo\u015bci", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Op\u0142aty s\u0105dowe, prawnicze i notarialne", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Koncesje", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Pozosta\u0142e podatki i op\u0142aty", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Op\u0142aty i prowizje bankowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Podatek akcyzowy", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Op\u0142aty skarbowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "VAT niepodlegaj\u0105cy odliczeniu", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Podatek od \u015brodk\u00f3w transportowych", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Podatki i op\u0142aty"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Wynagrodzenia os\u00f3b dora\u017anie zatrudnionych", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Wynagrodzenia pracownik\u00f3w", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Wynagrodzenia"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Zu\u017cycie paliwa do \u015brodk\u00f3w transportu", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Zu\u017cycie innych materia\u0142\u00f3w", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Zu\u017cycie surowc\u00f3w do wytwarzania produkt\u00f3w", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Zu\u017cycie materia\u0142\u00f3w biurowych", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Zu\u017cycie energii", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Zu\u017cycie materia\u0142\u00f3w i energii"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Us\u0142ugi celne", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi graficzne i drukarskie", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi telekomunikacyjne", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi kurierskie i transportowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi remontowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Pozosta\u0142e us\u0142ugi", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi pocztowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Analizy sanitarne", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Us\u0142ugi obce"
+       }
+      ], 
+      "name": "Koszty wed\u0142ug rodzaj\u00f3w"
+     }, 
+     {
+      "name": "\u015awiadczenia na rzecz pracownik\u00f3w", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Koszty zgromadzone", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty nie wliczane do warto\u015bci sprzeda\u017cy", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Przypadaj\u0105ce na przysz\u0142e okresy", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Nie podlegaj\u0105ce rozliczeniu w czasie", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Rozliczenie koszt\u00f3w"
+     }
+    ], 
+    "name": "Koszty wed\u0142ug rodzaj\u00f3w i ich rozliczenie"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Sprzeda\u017c produkt\u00f3w na kraj", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c produkt\u00f3w na eksport", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c us\u0142ug na kraj", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c us\u0142ug na eksport", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Sprzeda\u017c produkt\u00f3w"
+     }, 
+     {
+      "name": "Straty nadzwyczajne", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otrzymane dotacje", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Przychody z us\u0142ug socjalnych", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Przychody ze zbycia niefinansowych aktyw\u00f3w trwa\u0142ych", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Inne pozosta\u0142e przychody operacyjne", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Przychody ze wzrostu warto\u015bci niefinansowych aktyw\u00f3w trwa\u0142ych", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Pozosta\u0142e przychody operacyjne"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Sprzeda\u017c wysy\u0142kowa towar\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c detaliczna towar\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c hurtowa towar\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Prowizja komisowa", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Sprzeda\u017c towar\u00f3w"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Warto\u015b\u0107 sprzedanych towar\u00f3w w sprzeda\u017cy detalicznej", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 sprzedanych towar\u00f3w w sprzeda\u017cy wysy\u0142kowej", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 sprzedanych towar\u00f3w w sprzeda\u017cy hurtowej", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Prowizja komisowa", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Warto\u015b\u0107 sprzedanych towar\u00f3w w cenach zakupu"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Koszt wytworzenia wyrob\u00f3w gotowych wydanych do w\u0142asnych sklep\u00f3w", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt wytworzenia produkt\u00f3w uznanych za niedobory", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt wytworzenia \u015bwiadcze\u0144 na rzecz \u015brodk\u00f3w trwa\u0142ych w budowie", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt wytworzenia zako\u0144czonych prac rozwojowych", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt zaniechania okre\u015blonego rodzaju dzia\u0142alno\u015bci", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszt obrot\u00f3w wewn\u0119trznych"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Koszt w\u0142asny sprzeda\u017cy us\u0142ug na eksport", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt w\u0142asny sprzeda\u017cy us\u0142ug na kraj", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt w\u0142asny sprzeda\u017cy produkt\u00f3w na kraj", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt w\u0142asny sprzeda\u017cy produkt\u00f3w na eksport", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty sprzedanych produkt\u00f3w"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Koszt wyrob\u00f3w w\u0142asnej produkcji wydanych do w\u0142asnych sklep\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "\u015awiadczenia na rzecz \u015brodk\u00f3w trwa\u0142ych w budowie", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Koszt niedobor\u00f3w produkt\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Koszt zaniechania okre\u015blonego rodzaju dzia\u0142alno\u015bci", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Obroty wewn\u0119trzne"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Warto\u015b\u0107 sprzedanych inwestycji", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Odpisy z tytu\u0142u utraty warto\u015bci inwestycji-koszty", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ujemne r\u00f3\u017cnice kursu walut", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pozosta\u0142e koszty finansowe", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Odsetki zap\u0142acone", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty finansowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kwoty nale\u017cne z tytu\u0142u dywidend", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otrzymane odsetki", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Aktualizacja warto\u015bci inwestycji-przychody", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Przychody ze zbycia inwestycji", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Kwoty nale\u017cne ze sprzeda\u017cy aktyw\u00f3w finansowych", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Dodatnie r\u00f3\u017cnice kursu walut", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Pozosta\u0142e przychody finansowe", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Przychody finansowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Warto\u015b\u0107 w cenach zakupu sprzedanych odpad\u00f3w", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 w cenach zakupu sprzedanych materia\u0142\u00f3w", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 w cenach zakupu sprzedanych opakowa\u0144", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Warto\u015b\u0107 sprzedanych materia\u0142\u00f3w i opakowa\u0144"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inne pozosta\u0142e koszty operacyjne", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Odpisy z tytu\u0142u utraty warto\u015bci aktyw\u00f3w niefinansowych", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Dotacje przekazane", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 sprzedanych niefinansowych aktyw\u00f3w trwa\u0142ych", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Pozosta\u0142e koszty operacyjne"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Sprzeda\u017c odpad\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c materia\u0142\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c opakowa\u0144", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Sprzeda\u017c materia\u0142\u00f3w i opakowa\u0144"
+     }, 
+     {
+      "name": "Zyski nadzwyczajne", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Przychody i koszty zwi\u0105zane z ich osi\u0105gni\u0119ciem"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Zobowi\u0105zania warunkowe"
+       }, 
+       {
+        "name": "Weksle obce dyskontowane lub indosowane"
+       }, 
+       {
+        "name": "Nale\u017cno\u015bci warunkowe"
+       }
+      ], 
+      "name": "Rozrachunki pozabilansowe"
+     }, 
+     {
+      "name": "Rozrachunki z odbiorcami"
+     }, 
+     {
+      "name": "Odpisy aktualizuj\u0105ce rozrachunki"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pozosta\u0142e rozrachunki z urz\u0119dem skarbowym"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rozliczenie nale\u017cnego VAT-7%"
+         }, 
+         {
+          "name": "Rozliczenie nale\u017cnego VAT-22%"
+         }, 
+         {
+          "name": "Rozliczenie nale\u017cnego VAT-0%"
+         }
+        ], 
+        "name": "Rozrachunki z urz\u0119dem skarbowym z tytu\u0142u VAT nale\u017cnego"
+       }, 
+       {
+        "name": "Rozrachunki publicznoprawne z PFRON"
+       }, 
+       {
+        "name": "Rozrachunki publicznoprawne z urz\u0119dem celnym"
+       }, 
+       {
+        "name": "Pozosta\u0142e rozrachunki publicznoprawne"
+       }, 
+       {
+        "name": "Rozrachunki z urz\u0119dem skarbowym z tytu\u0142u VAT"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rozliczenie naliczonego VAT-22%"
+         }, 
+         {
+          "name": "Rozliczenie naliczonego VAT-0%"
+         }, 
+         {
+          "name": "Rozliczenie naliczonego VAT-7%"
+         }
+        ], 
+        "name": "VAT naliczony i jego rozliczenie"
+       }, 
+       {
+        "name": "Rozrachunki publicznoprawne z ZUS"
+       }, 
+       {
+        "name": "Rozrachunki publicznoprawne z urz\u0119dem miasta/gminy"
+       }
+      ], 
+      "name": "Rozrachunki publicznoprawne"
+     }, 
+     {
+      "name": "Rozrachunki z dostawcami"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Rozrachunki z tytu\u0142u po\u017cyczek udzielonych pracownikom"
+       }, 
+       {
+        "name": "Inne rozrachunki z pracownikami"
+       }, 
+       {
+        "name": "Rozrachunki z tytu\u0142u wynagrodze\u0144"
+       }
+      ], 
+      "name": "Rozrachunki z pracownikami"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Rozrachunki wewn\u0105trzzak\u0142adowe"
+       }, 
+       {
+        "name": "Rozrachunki z tytu\u0142u dop\u0142at i zwrotu dop\u0142at"
+       }, 
+       {
+        "name": "Pozosta\u0142e rozrachunki"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Po\u017cyczki otrzymane"
+         }, 
+         {
+          "name": "Po\u017cyczki udzielone"
+         }
+        ], 
+        "name": "Po\u017cyczki"
+       }, 
+       {
+        "name": "Rozrachunki z tytu\u0142u dywidend"
+       }, 
+       {
+        "name": "Nale\u017cno\u015bci dochodzone na drodze s\u0105dowej"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rozliczenie nadwy\u017cek"
+         }, 
+         {
+          "name": "Rozliczenie niedobor\u00f3w"
+         }
+        ], 
+        "name": "Rozliczenie niedobor\u00f3w i nadwy\u017cek"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rozrachunki z tytu\u0142u wk\u0142ad\u00f3w niepieni\u0119\u017cnych na kapita\u0142 zak\u0142adowy"
+         }, 
+         {
+          "name": "Rozrachunki z tytu\u0142u umorzenia udzia\u0142\u00f3w w\u0142asnych"
+         }, 
+         {
+          "name": "Rozrachunki z tytu\u0142u podwy\u017cszenia kapita\u0142u ze \u015brodk\u00f3w w\u0142asnych sp\u00f3\u0142ki"
+         }, 
+         {
+          "name": "Rozrachunki z tytu\u0142u wp\u0142at na kapita\u0142 zak\u0142adowy"
+         }
+        ], 
+        "name": "Rozrachunki zwi\u0105zane z kapita\u0142em zak\u0142adowym"
+       }
+      ], 
+      "name": "Pozosta\u0142e rozrachunki"
+     }
+    ], 
+    "name": "Rozrachunki i roszczenia"
+   }, 
+   {
+    "children": [
+     {
+      "name": "3900 bis 3990 Passive Rechnungsabgrenzungsposten", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3040 bis 3090 Sonstige R\u00fcckstellungen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Verbindlichkeiten aus Lieferungen u. Leistungen EU", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Umsatzsteuer aus i.g. Lieferungen 20%"
+     }, 
+     {
+      "name": "Umsatzsteuer aus i.g. Lieferungen 10%"
+     }, 
+     {
+      "name": "Verbindlichkeiten aus Lieferungen u. Leistungen Inland", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Verrechnung Finanzamt"
+     }, 
+     {
+      "name": "3110 bis 3170 Verbindlichkeiten gegen\u00fcber Kredidinstituten", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3380 bis 3390 Verbindlichkeiten aus der Annahme gezogener Wechsel u. d. Ausstellungen eigener Wechsel", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Erhaltene Anzahlungenauf Bestellungen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "R\u00fcckstellungen f\u00fcr Pensionen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3700 bis 3890 \u00dcbrige sonstige Verbindlichkeiten", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Verbindlichkeiten aus Lieferungen u. Leistungen sonst. Ausland", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Umsatzsteuer aus i.g. Erwerb 20%"
+     }, 
+     {
+      "name": "Umsatzsteuer", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Umsatzsteuer aus i.g. Erwerb 10%"
+     }, 
+     {
+      "name": "USt. \u00a719 /art (reverse charge)"
+     }, 
+     {
+      "name": "Umsatzsteuer Zahllast"
+     }, 
+     {
+      "name": "Anleihen (einschlie\u00dflich konvertibler)", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Verbindlichkeiten gegen\u00fcber Gesellschaften", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3600 bis 3690 Verbindlichkeiten im Rahmen der sozialen Sicherheit", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3180 bis 3190 Verbindlichkeiten gegen\u00fcber Finanzinstituten", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3400 bis 3470 Verbindlichkeiten gegen\u00fc. verb. Untern., Verbindl. gegen\u00fc. Untern., mit denen eine Beteiligungsverh\u00e4lnis besteht", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Umsatzsteuer-Evidenzkonto f\u00fcr erhaltene Anzahlungen auf Bestellungen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3020 bis 3030 Steuerr\u00fcckstellungen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "R\u00fcckstellungen f\u00fcr Abfertigung", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Summe Fremdkapital"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Koszty sprzeda\u017cy wyrob\u00f3w", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty utrzymania punkt\u00f3w sprzeda\u017cy detalicznej", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty dzia\u0142alno\u015bci podstawowej-handlowej"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Straty zwi\u0105zane z wykonaniem d\u0142ugotrwa\u0142ych us\u0142ug", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rozliczone koszty dzia\u0142alno\u015bci", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty nie zako\u0144czonych d\u0142ugotrwa\u0142ych us\u0142ug", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty utrzymania hurtowni", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty dzia\u0142alno\u015bci podstawowej-produkcyjnej"
+     }, 
+     {
+      "name": "Rozliczenie koszt\u00f3w dzia\u0142alno\u015bci", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "\u015awiadczenia us\u0142ug na potrzeby reprezentacji i reklamy", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty zarz\u0105dzania jednostk\u0105", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty zarz\u0105du"
+     }, 
+     {
+      "children": [
+       {
+        "name": "\u015awiadczenia us\u0142ug transportowych", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pozosta\u0142e koszty", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty dzia\u0142alno\u015bci pomocniczej"
+     }
+    ], 
+    "name": "Koszty wed\u0142ug typ\u00f3w dzia\u0142alno\u015bci i ich rozliczenie"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Erl\u00f6se 20 %", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4630 bis 4650 Ertr\u00e4ge aus dem Abgang vom Anlageverm\u00f6gen, ausgen. Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se aus im Inland stpfl. EG Lieferungen 20 % USt", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4400 bis 4490 Erl\u00f6sschm\u00e4lerungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se i.g. Lieferungen (stfr)", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4500 bis 4570 Ver\u00e4nderungen des Bestandes an fertigen und unfertigen Erzeugn. sowie an noch nicht abrechenbaren Leistungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4660 bis 4670 Ertr\u00e4ge aus der Zuschreibung zum Anlageverm\u00f6gen, ausgen. Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se 0 % Ausfuhrlieferungen/Drittl\u00e4nder", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4580 bis 4590 andere aktivierte Eigenleistungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se 10 %", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4600 bis 4620 Erl\u00f6se aus dem Abgang vom Anlageverm\u00f6gen, ausgen. Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se aus im Inland stpfl. EG Lieferungen 10 % USt", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4800 bis 4990 \u00dcbrige betriebliche Ertr\u00e4ge", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4700 bis 4790 Ertr\u00e4ge aus der Aufl\u00f6sung von R\u00fcckstellungen", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Summe Betriebliche Ertr\u00e4ge"
+   }, 
+   {
+    "children": [
+     {
+      "name": "7100 bis 7190 Sonstige Steuern"
+     }, 
+     {
+      "name": "7650 bis 7680 Werbung und Repr\u00e4sentationen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7480 bis 7490 Lizenzaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7700 bis 7740 Versicherungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Verwaltungskosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7200 bis 7290 Instandhaltung u. Reinigung durh Dritte, Entsorgung, Beleuchtung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Abschreibungen auf aktivierte Aufwendungen f\u00fcr das Ingangs. u. Erweitern des Betriebes", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Herstellungskosten der zur Erzielung der Umsatzerl\u00f6se erbrachten Leistungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7610 bis 7620 Druckerzeugnisse und Vervielf\u00e4ltigungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Aufwandsstellenrechnung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Fachliteratur und Zeitungen ", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7380 bis 7390 Nachrichtenaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Spenden und Trinkgelder", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7320 bis 7330 Kfz - Aufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7840 bis 7880 Verschiedene betriebliche Aufwendungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7300 bis 7310 Transporte durch Dritte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Spesen des Geldverkehrs", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Buchwert abgegangener Anlagen, ausgenommen Finanzanlagen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7360 bis 7370 Tag- und N\u00e4chtigungsgelder", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7580 bis 7590 Aufsichtsratsverg\u00fctungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Aus- und Fortbildung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7800 bis 7810 Schadensf\u00e4lle", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7340 bis 7350 Reise- und Fahraufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7750 bis 7760 Beratungs- und Pr\u00fcfungsaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7500 bis 7530 Aufwand f\u00fcr beigestelltes Personal", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Sonstige betrieblichen Aufwendungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Vertriebskosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7010 bis 7080 Abschreibungen auf das Anlageverm\u00f6gen (ausgenommen Finanzanlagen)", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7540 bis 7570 Provisionen an Dritte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "B\u00fcromaterial und Drucksorten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7910 bis 7950 Aufwandsstellenrechung der Hersteller", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Abschreibungen vom Umlaufverm\u00f6gen, soweit diese die im Unternehmen \u00fcblichen Abschreibungen \u00fcbersteigen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Skontoertr\u00e4ge auf sonstige betriebliche Aufwendungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "7400 bis 7430 Miet- und Pachtaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7440 bis 7470 Leasingaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Mitgliedsbeitr\u00e4ge", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Verluste aus dem Abgang vom Anlageverm\u00f6gen, ausgenommen Finanzanlagen", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Summe Abschreibungen und Aufwendungen"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Postwertzeichen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Unterschiedsbetrag zur gebotenen Pensionsr\u00fcckstellung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen aus Lief. und Leist. Inland ", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2750 bis 2770 Kassenbest\u00e4nde in Fremdw\u00e4hrung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2250 bis 2270 Forderungen gegen\u00fcber Unternehmen, mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2200 bis 2220 Forderungen gegen\u00fcber verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2000 bis 2007 Forderungen aus Lief. und Leist. Inland", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu sonstigen Forderungen und Verm\u00f6gensgegenst\u00e4nden", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Besitzwechsel ...", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Eingeforderte aber noch nicht eingezahlte Einlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen aus Lief. und Leist. Ausland", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen gegen\u00fcber verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen gegen\u00fcber Unternehmen mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen aus Lief. und Leist. EU", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Eigene Anteile (Wertpapiere)", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen gegen\u00fcber Unternehmen mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Sonstige Anteile", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2100 bis 2120 Forderungen aus Lief. und Leist. EU", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Schecks in Inlandsw\u00e4hrung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Vorsteuer \u00a719/Art 19 ( reverse charge ) "
+     }, 
+     {
+      "name": "Vorsteuer aus ig. Erwerb 10%"
+     }, 
+     {
+      "name": "Vorsteuer", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Steuerabgrenzung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Disagio", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen aus Lief. und Leist. Inland ", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Wertberichtigungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Unterschiedsbetrag gem. Abschnitt XII Pensionskassengesetz", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kassenbestand", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen gegen\u00fcber verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Aktive Rechnungsabrenzungsposten", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Stempelmarken", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu sonstigen Forderungen und Verm\u00f6gensgegenst\u00e4nden", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Wertberichtigungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen aus Lief. und Leist. Ausland", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2150 bis 2170 Forderungen aus Lief. und Leist. Ausland", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Bank / Guthaben bei Kreditinstituten", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2630 bis 2670 Sonstige Wertpapiere", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen aus Lief. und Leist. EU", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2300 bis 2460 Sonstige Forderungen und Verm\u00f6gensgegenst\u00e4nde", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einfuhrumsatzsteuer (bezahlt)", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Summe Umlaufverm\u00f6gen"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Nieruchomo\u015bci", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Warto\u015bci niematerialne i prawne", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inwestycje w nieruchomo\u015bci i prawa"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inne warto\u015bci niematerialne i prawne", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Koszty zako\u0144czonych prac rozwojowych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Nabyta warto\u015b\u0107 firmy", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Zaliczki na warto\u015bci niematerialne i prawne", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Warto\u015bci niematerialne i prawne"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Odpisy umorzeniowe innych \u015brodk\u00f3w trwa\u0142ych", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe warto\u015bci grunt\u00f3w i prawa wieczystego u\u017cytkowania grunt\u00f3w", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe \u015brodk\u00f3w transportu", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe ulepsze\u0144 obcych \u015brodk\u00f3w trwa\u0142ych", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe urz\u0105dze\u0144 technicznych i maszyn", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe budynk\u00f3w, lokali i obiekt\u00f3w in\u017cynierii l\u0105dowej i wodnej", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odpisy umorzeniowe \u015brodk\u00f3w trwa\u0142ych"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Odpisy umorzeniowe innych warto\u015bci niematerialnych i prawnych", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe warto\u015bci firmy", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe zako\u0144czonych prac rozwojowych", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odpisy umorzeniowe warto\u015bci niematerialnych i prawnych"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Odpisy umorzeniowe inwestycji w warto\u015bci niematerialne i prawne", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe inwestycji w nieruchomo\u015bci", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odpisy umorzeniowe inwestycji w nieruchomo\u015bci i prawa"
+       }
+      ], 
+      "name": "Odpisy umorzeniowe \u015brodk\u00f3w trwa\u0142ych oraz warto\u015bci niematerialnych i prawnych"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Zaliczki na \u015brodki trwa\u0142e w budowie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Nak\u0142ady na budow\u0119 \u015brodka trwa\u0142ego", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Ulepszenia \u015brodka trwa\u0142ego", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Ulepszenia obcych \u015brodk\u00f3w trwa\u0142ych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Inwestycje budowy \u015brodka trwa\u0142ego", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "\u015arodki trwa\u0142e w budowie"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inne \u015brodki trwa\u0142e", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Budynki, lokale i obiekty in\u017cynierii l\u0105dowej i wodnej", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u015arodki transportu", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Grunty w\u0142asne i prawa wieczystego u\u017cytkowania grunt\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Urz\u0105dzenia techniczne i maszyny", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "\u015arodki Trwa\u0142e"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inne rozliczenia mi\u0119dzyokresowe", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aktywa z tytu\u0142u odroczonego podatku dochodowego", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "D\u0142ugoterminowe rozliczenia mi\u0119dzyokresowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Od pozosta\u0142ych jednostek", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Od jednostek powi\u0105zanych", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Nale\u017cno\u015bci d\u0142ugoterminowe"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inne d\u0142ugoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzielone po\u017cyczki", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odpisy aktualizuj\u0105ce d\u0142ugoterminowe aktywa finansowe"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzielone po\u017cyczki", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne d\u0142ugoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "W jednostkach powi\u0105zanych"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inne d\u0142ugoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzielone po\u017cyczki", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "W pozosta\u0142ych jednostkach"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inne rodzaje d\u0142ugoterminowych aktyw\u00f3w finansowych", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inne inwestycje d\u0142ugoterminowe"
+       }
+      ], 
+      "name": "D\u0142ugoterminowe aktywa finansowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Odpisy aktualizuj\u0105ce udzielone po\u017cyczki d\u0142ugoterminowe", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odpisy aktualizuj\u0105ce inne rodzaje d\u0142ugoterminowych aktyw\u00f3w finansowych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odpisy aktualizuj\u0105ce udzia\u0142y i akcje w obcych jednostkach", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odpisy aktualizuj\u0105ce lokaty", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Odpisy aktualizuj\u0105ce d\u0142ugoterminowe aktywa finansowe"
+     }
+    ], 
+    "name": "Aktywa Trwa\u0142e"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Bilanzgewinn (-verlust )", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Er\u00f6ffnungsbilanz"
+     }, 
+     {
+      "name": "9700 bis 9790 Einlagen stiller Gesellschafter "
+     }, 
+     {
+      "name": "9300 bis 9380 Gewinnr\u00fccklagen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "9900 bis 9999 Evidenzkonten"
+     }, 
+     {
+      "name": "9000 bis 9180 Gezeichnetes bzw. gewidmetes Kapital", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "nicht eingeforderte ausstehende Einlagen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "9600 bis 9690 Privat und Verrechnungskonten bei Einzelunternehmen und Personengesellschaften"
+     }, 
+     {
+      "name": "Schlussbilanz"
+     }, 
+     {
+      "name": "9200 bis 9290 Kapitalr\u00fccklagen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Gewinn- und Verlustrechnung"
+     }, 
+     {
+      "name": "9400 bis 9590 Bewertungsreserven uns sonst. unversteuerte R\u00fccklagen", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Summe Eigenkapital R\u00fccklagen Abschlusskonten"
+   }, 
+   {
+    "children": [
+     {
+      "name": "1000 bis 1090 Bezugsverrechnung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1900 bis 1990 Wertberichtigungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1200 bis 1290 Bezogene Teile", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1700 bis 1790 Noch nicht abgerechenbare Leistungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "geleistete Anzahlungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1100 bis 1190 Rohstoffe", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1600 bis 1690 Waren", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1350 bis 1390 Betriebsstoffe", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1500 bis 1590 Fertige Erzeugniss", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1300 bis 1340 Hilfsstoffe", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1400 bis 1490 Unfertige Erzeugniss", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Summe Vorr\u00e4te"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Materia\u0142y", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Opakowania", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materia\u0142y w przerobie", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materia\u0142y i opakowania"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Towary poza jednostk\u0105", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Towary w detalu", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Towary w zak\u0142adach gastronomicznych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Towary w hurcie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Nieruchomo\u015bci i prawa maj\u0105tkowe przeznaczone do obrotu", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Towary skupu", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Towary"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Odchylenia od cen ewidencyjnych materia\u0142\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odchylenia od cen ewidencyjnych opakowa\u0144", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odchylenia z tytu\u0142u aktualizacji warto\u015bci zapas\u00f3w materia\u0142\u00f3w i towar\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Odchylenia od cen ewidencyjnych towar\u00f3w w hurcie", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odchylenia od cen ewidencyjnych towar\u00f3w w zak\u0142adach gastronomicznych", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odchylenia od cen ewidencyjnych towar\u00f3w w detalu", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odchylenia od cen ewidencyjnych towar\u00f3w skupu", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odchylenia od cen ewidencyjnych towar\u00f3w"
+       }
+      ], 
+      "name": "Odchylenia od cen ewidencyjnych materia\u0142\u00f3w i towar\u00f3w"
+     }, 
+     {
+      "name": "Zapasy obce", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Niedobory, szkody i nadwy\u017cki w transporcie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie zakupu sk\u0142adnik\u00f3w aktyw\u00f3w trwa\u0142ych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie zakupu towar\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Op\u0142aty manipulacyjne policzone przez Urz\u0105d Celny", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie warto\u015bci materia\u0142\u00f3w i towar\u00f3w w drodze", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie zakupu materia\u0142\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Reklamacje faktur dostawc\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie zakupu us\u0142ug obcych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Warto\u015bci dostaw niefakturowanych", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Rozliczenie zakupu"
+     }
+    ], 
+    "name": "Materia\u0142y i towary"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inne kr\u00f3tkoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Kr\u00f3tkoterminowe aktywa finansowe w pozosta\u0142ych jednostkach"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Udzielone po\u017cyczki", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne kr\u00f3tkoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Kr\u00f3tkoterminowe aktywa finansowe w jednostkach powi\u0105zanych"
+       }, 
+       {
+        "name": "Odpisy aktualizuj\u0105ce kr\u00f3tkoterminowe aktywa finansowe", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Kr\u00f3tkoterminowe aktywa finansowe"
+     }, 
+     {
+      "name": "Inne \u015brodki pieni\u0119\u017cne", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Inne inwestycje kr\u00f3tkoterminowe", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kasa krajowych \u015brodk\u00f3w pieni\u0119\u017cnych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kasa zagranicznych \u015brodk\u00f3w pieni\u0119\u017cnych", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "\u015arodki pieni\u0119\u017cne w kasie"
+     }, 
+     {
+      "name": "Inne aktywa pieni\u0119\u017cne", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Rachunek bankowy wyodr\u0119bnionych \u015brodk\u00f3w pieni\u0119\u017cnych ZF\u015aS", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Rachunek bankowy akretytywy", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Rachunek bankowy lokat terminowych", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inne rachunki bankowe"
+       }, 
+       {
+        "name": "Rachunki kredyt\u00f3w bankowych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rachunek \u015brodk\u00f3w wyodr\u0119bnionych i zablokowanych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rachunek \u015brodk\u00f3w walutowych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u015arodki pieni\u0119\u017cne w drodze", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rachunek bie\u017c\u0105cy", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Rachunki i kredyty bankowe"
+     }, 
+     {
+      "name": "Kr\u00f3tkoterminowe rozliczenia mi\u0119dzyokresowe", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "\u015arodki pieni\u0119\u017cne, rachunki bankowe oraz inne kr\u00f3tkoterminowe aktywa finansowe"
+   }, 
+   {
+    "children": [
+     {
+      "name": "6400 bis 6440 Aufwendungen f\u00fcr Abfertigungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6200 bis 6390 Geh\u00e4lter", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6560 bis 6590 Gesetzlicher Sozialaufwand Angestellte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6500 bis 6550 Gesetzlicher Sozialaufwand Arbeiter", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6660 bis 6690 Gehaltsabh\u00e4ngige Abgaben und Pflichtbeitr\u00e4gte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6600 bis 6650 Lohnabh\u00e4ngige Abgaben und Pflichtbeitr\u00e4gte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6450 bis 6490 Aufwendungen f\u00fcr Altersversorgung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Aufwandsstellenrechnung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6000 bis 6190 L\u00f6hne", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6700 bis 6890 Sonstige Sozialaufwendungen", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Summe Personalaufwand"
+   }
+  ], 
+  "name": "Plan kont"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/be_l10nbe_chart_template.json b/setup/doctype/company/charts/be_l10nbe_chart_template.json
new file mode 100644
index 0000000..1183a36
--- /dev/null
+++ b/setup/doctype/company/charts/be_l10nbe_chart_template.json
@@ -0,0 +1,4768 @@
+{
+ "name": "Belgian PCMN", 
+ "root": {
+  "children": [
+   {
+    "name": "INDIRECTE KOSTEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Kantoorbenodigdheden"
+     }, 
+     {
+      "name": "Emballage"
+     }, 
+     {
+      "name": "Hulpstoffen 1"
+     }, 
+     {
+      "name": "Grondstoffen 2"
+     }, 
+     {
+      "name": "Goederen onderweg"
+     }, 
+     {
+      "name": "Goederen 1"
+     }, 
+     {
+      "name": "Hulpstoffen 2"
+     }, 
+     {
+      "name": "Gereed product 1"
+     }, 
+     {
+      "name": "Gereed product 2"
+     }, 
+     {
+      "name": "Onderhanden werk"
+     }, 
+     {
+      "name": "Zegels"
+     }, 
+     {
+      "name": "Goederen 2"
+     }, 
+     {
+      "name": "Goederen in consignatie"
+     }, 
+     {
+      "name": "Verpakkingsmateriaal"
+     }, 
+     {
+      "name": "Grondstoffen 1"
+     }, 
+     {
+      "name": "Halffabrikaten 2"
+     }, 
+     {
+      "name": "Halffabrikaten 1"
+     }
+    ], 
+    "name": "VOORRAAD GRONDSTOFFEN, HULPMATERIALEN EN HANDELSGOEDEREN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Btw te vorderen overig", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie WIR", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Af te dragen Btw-verlegd", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw oude jaren", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw te vorderen hoog", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen laag", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige te betalen posten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vooruit ontvangen bedr.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw-afdracht", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Energiekosten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Accountantskosten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Telefoon/telefax", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Termijnen onderh. werk", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Rekening-courant inkoopvereniging", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Loonheffing", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Afdracht loonheffing", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vennootschapsbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw te vorderen laag", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen hoog", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Te vorderen Btw-verlegd", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen overig", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Investeringsaftrek", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Dividendbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Sociale lasten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pensioenpremies", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiegeld", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiedagen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiezegels", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Rente", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Dividend", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tanti\u00e8mes", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "KORTLOPENDE SCHULDEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Vooruitbetaalde kosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Te ontvangen ziekengeld", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Overige vorderingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Dubieuze debiteuren", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rekening-courant directie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Voorziening dubieuze debiteuren", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Voorschotten personeel", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "VORDERINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "BIZNER bank"
+       }, 
+       {
+        "name": "Kleine kas"
+       }, 
+       {
+        "name": "ABN-AMRO bank"
+       }, 
+       {
+        "name": "Bankbetaalkaarten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Effecten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kas  valuta"
+       }, 
+       {
+        "name": "Kruisposten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kas"
+       }, 
+       {
+        "name": "RABO bank"
+       }, 
+       {
+        "name": "Girobetaalkaarten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Postbank"
+       }
+      ], 
+      "name": "LIQUIDE MIDDELEN"
+     }
+    ], 
+    "name": "FINANCIELE REKENINGEN, KORTLOPENDE VORDERINGEN EN SCHULDEN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Afschrijving Vrachtauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanhangwagens", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Personenauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Heftrucks", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanhangwagens", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Vrachtauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Personenauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Rijwielen en bromfietsen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Rijwielen en bromfietsen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Heftrucks", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "VERVOERMIDDELEN"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Aanschafwaarde Gereedschappen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Fabrieksinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Bedrijfsinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Magazijninventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Gereedschappen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantine-inventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Fabrieksinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Magazijninventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantoorinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantoormachines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantoormachines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantine-inventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantoorinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Bedrijfsinventaris", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INVENTARIS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Afschrijving Machines 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 1", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "MACHINES"
+       }
+      ], 
+      "name": "MACHINES EN INVENTARIS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Financieringskosten huurkoop", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Waarborgsommen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Vorderingen op deelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Financieringskosten", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "LANGLOPENDE VORDERINGEN"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Meerderheidsdeelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Minderheidsdeelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aandeel inkoopcombinatie", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "FINANCIELE VASTE ACTIVA"
+       }
+      ], 
+      "name": "FINANCIELE VASTE ACTIVA EN LANGLOPENDE VORDERINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Hypotheek o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Lease-verplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Huurkoopverplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 4", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 3", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "AFLOSSINGEN"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rekening-courant directie", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 3", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Lease-verplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Huurkoopverplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 4", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 3", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 4", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "LANGLOPENDE SCHULDEN"
+       }
+      ], 
+      "name": "LANGLOPENDE SCHULDEN EN AFLOSSINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Afschrijving Ontwikkelingskosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Octrooien", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Auteursrechten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Vergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Licenties", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Tonnagevergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Drankvergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Vergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Auteursrechten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Drankvergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Tonnagevergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Octrooien", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Ontwikkelingskosten", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMATERIELE ACTIVA"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Aanschafwaarde Gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Verbouwingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Landerijen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Grondverbetering", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Pachtersinvesteringen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Bedrijfsgebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Woon-winkelhuis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Woon-winkelhuis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Winkels", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Parkeerplaats", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Grondverbetering", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Ondergrond gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Bedrijfsgebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Winkels", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Pachtersinvesteringen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Parkeerplaats", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Verbouwingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanloopkosten", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "ONROERENDE GOEDEREN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige persoonlijke verplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Giften", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Buitengewone lasten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Inkomstenbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vermogensbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Wettelijke reserves", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige reserves", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Aandelenkapitaal", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige priv\u00e9-uitgaven", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Huishoudgeld", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie lijfrenteverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie volksverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Priv\u00e9-opnamen/stortingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Kapitaal", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "WAO en ziekengeldverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Priv\u00e9-gebruik", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie volksverzekeringen", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "EIGEN VERMOGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pens.voorz. eigen beheer", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Stamrechtverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Backservice pensioenverpl.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pensioenverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Egalisatierekening WIR", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vervangingsreserve", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Garantieverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Egalisatieres. grootonderh.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Assurantie eigen risico", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Latente belastingverpl.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Voorziening deelnemingen", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "VOORZIENINGEN"
+     }
+    ], 
+    "name": "VASTE ACTIVA, EIGEN VERMOGEN, LANGLOPEND VREEMD VERMOGEN EN VOORZIENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Opbrengsten deelnemingen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verlies verkoop deelnem.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Vpb bijzonder resultaat", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Winst", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Memoriaal"
+     }, 
+     {
+      "name": "Winst bij verkoop deelnem.", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Reorganisatiekosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Vpb normaal resultaat", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Voorz. Verlies deelnem.", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "OVERIGE RESULTATEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Income"
+     }
+    ], 
+    "name": "Income"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Tanti\u00e8mes de l'exercice"
+       }, 
+       {
+        "name": "Autres allocataires"
+       }, 
+       {
+        "name": "Dividendes et tanti\u00e8mes d'exercices ant\u00e9rieurs"
+       }, 
+       {
+        "name": "Dividendes de l'exercice"
+       }
+      ], 
+      "name": "DETTES DECOULANT DE L'AFFECTATION DES RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }, 
+       {
+        "name": "Compensation clients"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres entreprises avec lesquelles il existe un lien de participation"
+         }, 
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants de l'entreprise"
+         }
+        ], 
+        "name": "Effets \u00e0 recevoir sur entreprises apparent\u00e9es et administrateurs et g\u00e9rants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants d'entreprise"
+         }, 
+         {
+          "name": "Autres entreprises avec lesquelles il existe un lien de participation"
+         }
+        ], 
+        "name": "Clients, cr\u00e9ances courantes, entreprises apparent\u00e9es, administrateurs et g\u00e9rants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets \u00e0 l'escompte"
+         }, 
+         {
+          "name": "Effets \u00e0 l'encaissement"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir"
+         }
+        ], 
+        "name": "Effets \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ances r\u00e9sultant de livraisons de biens"
+         }, 
+         {
+          "name": "Rabais, remises, ristournes \u00e0 accorder et autres notes de cr\u00e9dit \u00e0 \u00e9tablir"
+         }
+        ], 
+        "name": "Clients"
+       }, 
+       {
+        "name": "Cr\u00e9ances douteuses"
+       }, 
+       {
+        "name": "Acomptes vers\u00e9s"
+       }, 
+       {
+        "name": "Clients : retenues sur garanties"
+       }, 
+       {
+        "name": "Produits \u00e0 recevoir"
+       }
+      ], 
+      "name": "CREANCES COMMERCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acomptes re\u00e7us d'autres tiers \u00e0 moins d'un an"
+       }, 
+       {
+        "name": "Participation du personnel \u00e0 payer"
+       }, 
+       {
+        "name": "Actionnaires - capital \u00e0 rembourser"
+       }, 
+       {
+        "name": "Obligations et coupons \u00e9chus"
+       }, 
+       {
+        "name": "Emballages et mat\u00e9riel consign\u00e9s"
+       }, 
+       {
+        "name": "Autres dettes diverses"
+       }, 
+       {
+        "name": "Cautionnements re\u00e7us en num\u00e9raires"
+       }
+      ], 
+      "name": "DETTES DIVERSES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Charges \u00e0 reporter"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres produits d'exploitation"
+           }, 
+           {
+            "name": "Commissions \u00e0 obtenir"
+           }, 
+           {
+            "name": "Ristournes, rabais \u00e0 obtenir"
+           }
+          ], 
+          "name": "Produits d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus et non \u00e9chus sur pr\u00eats et d\u00e9bits"
+           }, 
+           {
+            "name": "Autres produits financiers"
+           }
+          ], 
+          "name": "Produits financiers"
+         }
+        ], 
+        "name": "Produits acquis"
+       }, 
+       {
+        "name": "Charges \u00e0 imputer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Produits d'exploitation \u00e0 reporter"
+         }, 
+         {
+          "name": "Produits financiers \u00e0 reporter"
+         }
+        ], 
+        "name": "Produits \u00e0 reporter"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compte de r\u00e9partition p\u00e9riodique des charges"
+         }, 
+         {
+          "name": "Compte d'attente"
+         }, 
+         {
+          "name": "Transferts d'exercice"
+         }
+        ], 
+        "name": "Comptes d'attente"
+       }
+      ], 
+      "name": "COMPTES DE REGULARISATION ET COMPTES D'ATTENTE"
+     }, 
+     {
+      "name": "ACOMPTES RECUS SUR COMMANDES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acomptes re\u00e7us"
+       }, 
+       {
+        "name": "Factures \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournisseurs importation"
+           }, 
+           {
+            "name": "Fournisseurs CEE"
+           }, 
+           {
+            "name": "Fournisseurs belges"
+           }
+          ], 
+          "name": "Fournisseurs ordinaires"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Entreprises li\u00e9es"
+           }, 
+           {
+            "name": "Entreprises avec lesquelles il existe un lien de participation"
+           }
+          ], 
+          "name": "Entreprises apparent\u00e9es"
+         }
+        ], 
+        "name": "Effets \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes envers les coparticipants"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs CEE"
+           }, 
+           {
+            "name": "Fournisseurs importation"
+           }, 
+           {
+            "name": "Fournisseurs belges"
+           }
+          ], 
+          "name": "Fournisseurs ordinaires"
+         }, 
+         {
+          "name": "Fournisseurs - retenues de garanties"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Entreprises avec lesquelles il existe un lien de participation"
+           }
+          ], 
+          "name": "Entreprises apparent\u00e9es"
+         }
+        ], 
+        "name": "Fournisseurs"
+       }, 
+       {
+        "name": "Compensations fournisseurs"
+       }
+      ], 
+      "name": "DETTES COMMERCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "1er trimestre"
+         }, 
+         {
+          "name": "Arri\u00e9r\u00e9s"
+         }, 
+         {
+          "name": "3\u00e8me trimestre"
+         }, 
+         {
+          "name": "2\u00e8me trimestre"
+         }, 
+         {
+          "name": "4\u00e8me trimestre"
+         }
+        ], 
+        "name": "Office National de la S\u00e9curit\u00e9 Sociale"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Employ\u00e9s"
+         }, 
+         {
+          "name": "Ouvriers"
+         }, 
+         {
+          "name": "Administrateurs, g\u00e9rants et commissaires"
+         }, 
+         {
+          "name": "Direction"
+         }
+        ], 
+        "name": "R\u00e9mun\u00e9rations"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ouvriers"
+         }, 
+         {
+          "name": "Employ\u00e9s"
+         }, 
+         {
+          "name": "Direction"
+         }
+        ], 
+        "name": "P\u00e9cules de vacances"
+       }, 
+       {
+        "children": [
+         {
+          "name": "\u00e0 4507 Autres imp\u00f4ts en Belgique"
+         }, 
+         {
+          "name": "\u00e0 4504 Imp\u00f4ts sur le r\u00e9sultat"
+         }, 
+         {
+          "name": "Imp\u00f4ts \u00e0 l'\u00e9tranger"
+         }
+        ], 
+        "name": "Dettes fiscales estim\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "T.V.A. \u00e0 payer - Import"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer - Cocontractant"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer - Intra-communautaire"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer"
+         }, 
+         {
+          "name": "Compte courant administration T.V.A."
+         }, 
+         {
+          "name": "Taxe d'\u00e9galisation due"
+         }
+        ], 
+        "name": "T.V.A. \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres imp\u00f4ts sur le r\u00e9sultat"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres imp\u00f4ts et taxes \u00e0 payer"
+           }, 
+           {
+            "name": "Imp\u00f4ts provinciaux \u00e0 payer"
+           }, 
+           {
+            "name": "Imp\u00f4ts communaux \u00e0 payer"
+           }, 
+           {
+            "name": "Pr\u00e9compte immobilier"
+           }
+          ], 
+          "name": "Autres imp\u00f4ts et taxes en Belgique"
+         }, 
+         {
+          "name": "Imp\u00f4ts et taxes \u00e0 l'\u00e9tranger"
+         }
+        ], 
+        "name": "Imp\u00f4ts et taxes \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres pr\u00e9comptes retenus"
+         }, 
+         {
+          "name": "Pr\u00e9compte professionnel retenu sur r\u00e9mun\u00e9rations"
+         }, 
+         {
+          "name": "Pr\u00e9compte professionnel retenu sur tanti\u00e8mes"
+         }, 
+         {
+          "name": "Pr\u00e9compte mobilier retenu sur dividendes attribu\u00e9s"
+         }, 
+         {
+          "name": "Pr\u00e9compte mobilier retenu sur int\u00e9r\u00eats pay\u00e9s"
+         }
+        ], 
+        "name": "Pr\u00e9comptes retenus"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes et provisions sociales diverses"
+         }, 
+         {
+          "name": "Caisse d'assurances sociales pour travailleurs ind\u00e9pendants"
+         }, 
+         {
+          "name": "Oppositions sur r\u00e9mun\u00e9rations"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurance groupe "
+           }, 
+           {
+            "name": "Assurances individuelles"
+           }, 
+           {
+            "name": "Assurance loi"
+           }, 
+           {
+            "name": "Assurance salaire garanti "
+           }
+          ], 
+          "name": "Assurances relatives au personnel"
+         }, 
+         {
+          "name": "Provision pour gratifications de fin d'ann\u00e9e"
+         }, 
+         {
+          "name": "D\u00e9parts de personnel"
+         }
+        ], 
+        "name": "Autres dettes sociales"
+       }
+      ], 
+      "name": "DETTES FISCALES, SALARIALES ET SOCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Non convertibles"
+         }, 
+         {
+          "name": "Convertibles"
+         }
+        ], 
+        "name": "Emprunts obligataires non subordonn\u00e9s"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Non convertibles"
+         }, 
+         {
+          "name": "Convertibles"
+         }
+        ], 
+        "name": "Emprunts subordonn\u00e9s"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9dits d'acceptation"
+         }, 
+         {
+          "name": "Promesses"
+         }, 
+         {
+          "name": "Dettes en compte"
+         }
+        ], 
+        "name": "Etablissements de cr\u00e9dit"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Financement de biens immobiliers"
+         }, 
+         {
+          "name": "Financement de biens mobiliers"
+         }
+        ], 
+        "name": "Dettes de location-financement et assimil\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets \u00e0 payer"
+         }, 
+         {
+          "name": "Fournisseurs"
+         }
+        ], 
+        "name": "Dettes commerciales"
+       }, 
+       {
+        "name": "Autres emprunts"
+       }, 
+       {
+        "name": "Cautionnements re\u00e7us en num\u00e9raires"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Entreprises avec lesquelles il existe un lien de participation"
+         }, 
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs, g\u00e9rants, associ\u00e9s"
+         }, 
+         {
+          "name": "Autres dettes"
+         }
+        ], 
+        "name": "Dettes diverses"
+       }
+      ], 
+      "name": "DETTES A PLUS D'UN AN ECHEANT DANS L'ANNEE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Etablissements de cr\u00e9dit. Cr\u00e9dits d'acceptation"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Promesses"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Dettes en compte courant"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Emprunts en compte \u00e0 terme fixe"
+       }, 
+       {
+        "name": "Autres emprunts"
+       }
+      ], 
+      "name": "DETTES FINANCIERES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cautionnements vers\u00e9s en num\u00e9raires"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Actionnaires d\u00e9faillants"
+         }, 
+         {
+          "name": "Appels de fonds"
+         }
+        ], 
+        "name": "Capital appel\u00e9, non vers\u00e9"
+       }, 
+       {
+        "children": [
+         {
+          "name": "T.V.A D\u00e9ductible"
+         }, 
+         {
+          "name": "Compte courant administration T.V.A."
+         }, 
+         {
+          "name": "Taxe d'\u00e9galisation due"
+         }
+        ], 
+        "name": "T.V.A. \u00e0 r\u00e9cup\u00e9rer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imp\u00f4ts \u00e9trangers"
+         }, 
+         {
+          "name": "\u00e0 4127 Autres imp\u00f4ts belges"
+         }, 
+         {
+          "name": "\u00e0 4124 Imp\u00f4ts belges sur le r\u00e9sultat"
+         }
+        ], 
+        "name": "Imp\u00f4ts et versements fiscaux \u00e0 r\u00e9cup\u00e9rer"
+       }, 
+       {
+        "name": "Produits \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rabais, ristournes, remises \u00e0 obtenir et autres avoirs non encore re\u00e7us"
+         }, 
+         {
+          "name": "Compte courant des administrateurs et g\u00e9rants"
+         }, 
+         {
+          "name": "Compte courant des associ\u00e9s en S.P.R.L."
+         }, 
+         {
+          "name": "Avances et pr\u00eats au personnel"
+         }, 
+         {
+          "name": "Associ\u00e9s"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres cr\u00e9ances"
+           }, 
+           {
+            "name": "Subsides \u00e0 recevoir"
+           }
+          ], 
+          "name": "Etat et \u00e9tablissements publics"
+         }, 
+         {
+          "name": "Emballages et mat\u00e9riel \u00e0 rendre"
+         }, 
+         {
+          "name": "Cr\u00e9ances sur soci\u00e9t\u00e9s apparent\u00e9es"
+         }
+        ], 
+        "name": "Cr\u00e9ances diverses"
+       }, 
+       {
+        "name": "Cr\u00e9ances douteuses"
+       }
+      ], 
+      "name": "AUTRES CREANCES"
+     }
+    ], 
+    "name": "CLASSE 4. CREANCES ET DETTES A UN AN AU PLUS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Perte \u00e0 reporter", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Pr\u00e9l\u00e8vement sur les r\u00e9serves", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Pr\u00e9l\u00e8vement sur le capital et les primes d'\u00e9mission", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "B\u00e9n\u00e9fice report\u00e9 de l'exercice pr\u00e9c\u00e9dent", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Intervention d'associ\u00e9s", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "AFFECTATION AUX RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9gularisations d'imp\u00f4ts estim\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "R\u00e9gularisations d'imp\u00f4ts dus ou vers\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Reprises de provisions fiscales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat"
+       }
+      ], 
+      "name": "REGULARISATIONS D'IMPOTS ET REPRISES DE PROVISIONS FISCALES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reprises de provisions pour risques et charges exceptionnelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immobilisations financi\u00e8res", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Plus-values sur r\u00e9alisation d'actifs immobilis\u00e9s"
+       }, 
+       {
+        "name": "Reprises de r\u00e9ductions de valeur sur immobilisations financi\u00e8res", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Autres produits exceptionnels", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reprises d'amortissements et de r\u00e9ductions de valeur"
+       }
+      ], 
+      "name": "PRODUITS EXCEPTIONNELS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Escomptes obtenus", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits des autres cr\u00e9ances", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ecarts de conversion des devises", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Diff\u00e9rences de change", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subsides en capital et en int\u00e9r\u00eats", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations d'actifs circulants", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits des actifs circulants", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "PRODUITS FINANCIERS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Locations diverses \u00e0 caract\u00e8re professionnel", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bonis sur reprises d'emballages consign\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Bonis sur travaux en associations momentan\u00e9es", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Produits divers"
+       }, 
+       {
+        "name": "Commissions et courtages", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Redevances pour brevets et licences", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Prestations de services", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Revenus des immeubles affect\u00e9s aux activit\u00e9s non professionnelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subsides d'exploitation et montants compensatoires", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations courantes d'immobilisations corporelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations de cr\u00e9ances commerciales", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits de services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "AUTRES PRODUITS D'EXPLOITATION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "En immobilisations corporelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En immobilisations en cours", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En frais d'\u00e9tablissement", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En immobilisations incorporelles", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "PRODUCTION IMMOBILISEE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Des produits finis", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Des en cours de fabrication", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Sur travaux en cours des associations momentan\u00e9es", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sur commandes en cours d'ex\u00e9cution", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "B\u00e9n\u00e9fices port\u00e9s en compte sur commandes en cours"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Co\u00fbt des commandes en cours d'ex\u00e9cution", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Co\u00fbt des travaux en cours des associations momentan\u00e9es", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Commandes en cours - Co\u00fbt de revient"
+         }
+        ], 
+        "name": "Des commandes en cours d'ex\u00e9cution"
+       }, 
+       {
+        "name": "Des immeubles construits destin\u00e9s \u00e0 la vente", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "VARIATION DES STOCKS ET DES COMMANDES EN COURS D'EXECUTION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ventes d'emballages r\u00e9cup\u00e9rables", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes en Belgique", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de marchandises"
+       }, 
+       {
+        "name": "P\u00e9nalit\u00e9s et d\u00e9dits obtenus par l'entreprise", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de produits finis"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes en Belgique", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de d\u00e9chets et rebuts"
+       }, 
+       {
+        "name": "Facturations des travaux en cours", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Prestations de services dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Prestations de services en vue de l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Prestations de services en Belgique", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Prestations de services"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur prestations de services", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de produits finis", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de marchandises", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de d\u00e9chets et rebuts", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Mali sur travaux factur\u00e9s aux associations momentan\u00e9es", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Remises, ristournes et rabais accord\u00e9s"
+       }
+      ], 
+      "name": "CHIFFRE D'AFFAIRES"
+     }
+    ], 
+    "name": "CLASSE 7. - PRODUITS"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Inkoopbonussen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toevoeging voorz. incour. handelsgoed.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU hoog", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen BTW verlegd", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU laag tarief", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU laag", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Invoerkosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoopkosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU hoog tarief", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Betalingskort. crediteuren", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Garantiekosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen hoog", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toevoeging garantieverpl.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Tegenrekening inkoop", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Onttrekking uitgev.garantie", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Voorz. Incourourant grondst.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kostprijs omzet grondstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toev. Voorz. incour. grondst.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kosten inkoopvereniging", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kostprijs omzet handelsgoederen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Voorz.incour. handelsgoed.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoopprovisie", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkomende vrachten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Hulpmaterialen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Uitbesteed werk", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Priv\u00e9-gebruik goederen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen laag", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen nul", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "VOORRAAD GEREED PRODUCT EN ONDERHANDEN WERK"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Brandstoffen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige vervoerskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud personenauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud vrachtauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Priv\u00e9-gebruik auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Wegenbelasting", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "VERVOERSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige rentebaten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente hypotheek", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente leasecontracten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige rentelasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente lening o/g", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente lening u/g", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente bankkrediet", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente huurkoopcontracten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "FINANCIERINGSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Vrachtauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Tonnagevergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Drankvergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Auteursrechten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Octrooien", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Goodwill", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoorinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoormachines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gebouwen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfsgebouwen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Woon-winkelhuis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Winkels", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschappen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantine-inventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfsinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Magazijninventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Heftrucks", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aanhangwagens", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rijwielen en bromfietsen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Licenties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aanloopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontwikkelingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Personenauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pachtersinvestering", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aankoopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Parkeerplaats", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Grondverbetering", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Voorraadverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Fabrieksinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Verbouwingen", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AFSCHRIJVINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Betaalde schadevergoed.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Nadelige koersverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kosten omzetbelasting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Boekverlies vaste activa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "K.O. regeling OB", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kasverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Boekwinst van vaste activa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kosten loonbelasting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Naheffing bedrijfsver.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige baten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontvangen schadevergoed.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Voordelige koersverschil.", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "OVERIGE BATEN EN LASTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reis en verblijfkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Representatiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kascorrecties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Exportkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Beurskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Websitekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Provisie", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Etalagekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Veilingkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Reclame", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Advertenties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Verpakkingsmateriaal", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige verkoopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Afschrijving dubieuze deb.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Relatiegeschenken", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Uitgaande vrachten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "VERKOOPKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Juridische kosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bankkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige algemene kosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Advieskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toev. Ass. eigen risico", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Accountantskosten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "ALGEMENE KOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Uitkering ziekengeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige uitkeringen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Loonwerk", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Thuiswerkers", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Managementvergoedingen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gratificaties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Wervingskosten personeel", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Opleidingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfskleding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Geschenken personeel", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toevoeging pensioenverpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sociale lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Tanti\u00e8mes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Provisie", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschapsgeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Reiskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Congressen, seminars en symposia", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Oprenting stamrechtverpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toev. Backservice pens.verpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Inhouding pensioenpremies", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pensioenpremies", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Inhouding sociale lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Belastingvrije uitkeringen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfskleding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantinekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rijwielvergoeding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Autokostenvergoeding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vergoeding studiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bijzondere beloningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Uitzendkrachten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige kostenverg.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige personeelskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vakantiebonnen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vakantiegeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Lonen en salarissen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overhevelingstoeslag", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "PERSONEELSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Energiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Schoonmaakkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pacht", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontvangen huren", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huurwaarde woongedeelte", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Groot onderhoud onr. Goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige huisvestingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assurantie onroerend goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toevoeging egalisatieres. Groot onderhoud", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Belastingen onr. Goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud onroerend goed", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "HUISVESTINGSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige bedrijfskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ophalen/vervoer afval", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur inventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Energie (krachtstroom)", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing invent.operational", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Hulpmaterialen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing mach. operational", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschappen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud inventaris", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "BEDRIJFSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige kantoorkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur kantoorapparatuur", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoorbenodigdh./drukw.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Contributies/abonnementen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Administratiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Porti", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Internetaansluiting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Telefoon/telefax", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud kantoorinvent.", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "KANTOORKOSTEN"
+     }
+    ], 
+    "name": "KOSTENREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Account Payable"
+     }, 
+     {
+      "name": "Uninvoiced Receipts"
+     }, 
+     {
+      "name": "Loans"
+     }, 
+     {
+      "name": "Withholding Tax"
+     }, 
+     {
+      "name": "Accrued Expenses"
+     }, 
+     {
+      "name": "Output VAT"
+     }
+    ], 
+    "name": "Liabilities"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Salary"
+     }, 
+     {
+      "name": "Rent"
+     }, 
+     {
+      "name": "Cost of goods sold"
+     }, 
+     {
+      "name": "Office Expenses"
+     }, 
+     {
+      "name": "Income tax expenses"
+     }, 
+     {
+      "name": "Interest expenses"
+     }
+    ], 
+    "name": "Expenses"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Inkopen binnen EU laag"
+     }, 
+     {
+      "name": "Tussenrek. autom. loonbetalingen"
+     }, 
+     {
+      "name": "Inkopen binnen EU hoog"
+     }, 
+     {
+      "name": "Inkopen binnen EU overig"
+     }, 
+     {
+      "name": "Betaalwijze contant"
+     }, 
+     {
+      "name": "Tussenrek. autom. betalingen"
+     }, 
+     {
+      "name": "Inkopen buiten EU overig"
+     }, 
+     {
+      "name": "Inkopen Nederland hoog"
+     }, 
+     {
+      "name": "Betaalwijze chipknip"
+     }, 
+     {
+      "name": "Tussenrekening chipknip"
+     }, 
+     {
+      "name": "Vraagposten"
+     }, 
+     {
+      "name": "Tussenrekening correcties"
+     }, 
+     {
+      "name": "Netto lonen"
+     }, 
+     {
+      "name": "Inkopen buiten EU hoog"
+     }, 
+     {
+      "name": "Inkopen buiten EU laag"
+     }, 
+     {
+      "name": "Tussenrek. cadeaubonbetalingen"
+     }, 
+     {
+      "name": "Betaalwijze cadeaubonnen"
+     }, 
+     {
+      "name": "Inkopen Nederland overig"
+     }, 
+     {
+      "name": "Inkopen Nederland laag"
+     }, 
+     {
+      "name": "Inkopen Nederland verlegd"
+     }, 
+     {
+      "name": "Betaalwijze pin"
+     }, 
+     {
+      "name": "Tussenrekening pin"
+     }, 
+     {
+      "name": "Kassa 2"
+     }, 
+     {
+      "name": "Kassa 1"
+     }, 
+     {
+      "name": "Inkopen Nederland onbelast"
+     }, 
+     {
+      "name": "Tussenrekening balans"
+     }, 
+     {
+      "name": "Tegenrekening Inkopen"
+     }
+    ], 
+    "name": "TUSSENREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Capital Stock"
+     }, 
+     {
+      "name": "Dividends"
+     }, 
+     {
+      "name": "Income Summary"
+     }, 
+     {
+      "name": "Retained Earnings"
+     }
+    ], 
+    "name": "Equity"
+   }, 
+   {
+    "children": [
+     {
+      "name": "TRANSFERTS AUX RESERVES IMMUNISEES", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Autres allocataires", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9mun\u00e9ration du capital", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Administrateurs ou g\u00e9rants", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Dotation aux autres r\u00e9serves", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "B\u00e9n\u00e9fice \u00e0 reporter", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Perte report\u00e9e de l'exercice pr\u00e9c\u00e9dent", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Dotation \u00e0 la r\u00e9serve l\u00e9gale", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AFFECTATION DES RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Taxe sur le personnel occup\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxe sur la force motrice", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Imp\u00f4ts provinciaux et communaux"
+         }, 
+         {
+          "name": "Taxes diverses", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Taxes sur autos et camions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Taxes et imp\u00f4ts directs"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Timbres fiscaux pris en charge par la firme", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Droits d'enregistrement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T.V.A. non d\u00e9ductible", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Taxes et imp\u00f4ts indirects"
+         }
+        ], 
+        "name": "Charges fiscales d'exploitation"
+       }, 
+       {
+        "name": "\u00e0 648 Charges d'exploitations diverses", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Charges d'exploitation port\u00e9es \u00e0 l'actif au titre de restructuration", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisations courantes d'immobilisations corporelles", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisations de cr\u00e9ances commerciales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AUTRES CHARGES D'EXPLOITATION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Charges exceptionnelles transf\u00e9r\u00e9es \u00e0 l'actif en frais de restructuration", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Autres charges exceptionnelles", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Diff\u00e9rence de charge", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "P\u00e9nalit\u00e9s et amendes diverses", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immeubles acquis ou construits en vue de la revente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations financi\u00e8res", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations d\u00e9tenues en location-financement et droits similaires", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Moins-values sur r\u00e9alisation d'actifs immobilis\u00e9s"
+       }, 
+       {
+        "name": "Provisions pour risques et charges exceptionnels", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur sur immobilisations financi\u00e8res", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur frais d'\u00e9tablissement", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortissements et r\u00e9ductions de valeur exceptionnels"
+       }
+      ], 
+      "name": "CHARGES EXCEPTIONNELLES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Exc\u00e9dent de versements d'imp\u00f4ts et pr\u00e9comptes port\u00e9 \u00e0 l'actif", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Imp\u00f4ts et pr\u00e9comptes dus ou vers\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Charges fiscales estim\u00e9es", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat de l'exercice"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisions fiscales constitu\u00e9es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ments d'imp\u00f4ts dus ou vers\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ments d'imp\u00f4ts estim\u00e9s", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat d'exercices ant\u00e9rieurs"
+       }, 
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat de l'exercice", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat d'exercices ant\u00e9rieurs", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "IMPOTS SUR LE RESULTAT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Achats de fournitures", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats de marchandises", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "De fournitures", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "De mati\u00e8res premi\u00e8res", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "D'immeubles destin\u00e9s \u00e0 la vente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "De marchandises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variations de stocks"
+       }, 
+       {
+        "name": "Remises, ristournes et rabais obtenus sur achats", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sous-traitances g\u00e9n\u00e9rales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats de services, travaux et \u00e9tudes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats d'immeubles destin\u00e9s \u00e0 la revente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "APPROVISIONNEMENTS ET MARCHANDISES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Personnel int\u00e9rimaire et personnes mises \u00e0 la disposition  de l'entreprise", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9mun\u00e9rations, primes pour assurances extral\u00e9gales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Documentation", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Missions et r\u00e9ceptions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cadeaux \u00e0 la client\u00e8le", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Primes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Foires et expositions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Echantillons", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Catalogues et imprim\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Annonces et insertions", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Annonces, publicit\u00e9, propagande et documentation"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sous-traitants pour activit\u00e9s propres", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sous-traitants d'associations momentan\u00e9es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Quote-part b\u00e9n\u00e9ficiaire des coparticipants", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Sous-traitants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imprim\u00e9s et fournitures de bureau", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T\u00e9l\u00e9grammes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T\u00e9l\u00e9phone", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T\u00e9lex et t\u00e9l\u00e9fax", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais postaux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "T\u00e9l\u00e9phone, t\u00e9l\u00e9grammes, t\u00e9lex, t\u00e9l\u00e9fax, frais postaux"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Vapeur", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Eau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Electricit\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Gaz", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Eau, gaz, \u00e9lectricit\u00e9, vapeur"
+         }, 
+         {
+          "name": "Livres, biblioth\u00e8que", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Fournitures faites \u00e0 l'entreprise"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Personnel int\u00e9rimaire", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Publications l\u00e9gales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires d'avocats, d'experts, etc ...", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions aux tiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dons, lib\u00e9ralit\u00e9s, ...", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cotisations aux groupements professionnels", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de contentieux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Divers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Transports de personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Voyages, d\u00e9placements, repr\u00e9sentations", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Transports et d\u00e9placements"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres redevances", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour brevets, licences, marques, accessoires", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Redevances et royalties"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurance incendie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance vol", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance autos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances frais g\u00e9n\u00e9raux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Assurances non relatives au personnel"
+         }
+        ], 
+        "name": "R\u00e9tributions de tiers"
+       }, 
+       {
+        "name": "Entretien et r\u00e9paration", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "SERVICES ET BIENS DIVERS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Salaire hebdomadaire garanti", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Jours f\u00e9ri\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Allocations familiales compl\u00e9mentaires", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Charges sociales diverses"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurances individuelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances loi, responsabilit\u00e9 civile, chemin du travail", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance salaire garanti", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Assurances du personnel"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Allocations familiales compl\u00e9mentaires pour non salari\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Lois sociales pour ind\u00e9pendants", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Charges sociales des administrateurs, g\u00e9rants et commissaires"
+         }
+        ], 
+        "name": "Autres frais de personnel"
+       }, 
+       {
+        "name": "Primes patronales pour assurances extral\u00e9gales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur appointements et commissions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur salaires", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Cotisations patronales d'assurances sociales"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Administrateurs ou g\u00e9rants", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Personnel de direction", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Employ\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Autres membres du personnel", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Ouvriers", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9mun\u00e9rations et avantages sociaux directs"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provision pour p\u00e9cule de vacances"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Personnel", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Pensions de retraite et de survie"
+       }
+      ], 
+      "name": "REMUNERATIONS, CHARGES SOCIALES ET PENSIONS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Dotations aux r\u00e9ductions de valeur sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux r\u00e9ductions de valeur sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur frais d'\u00e9tablissement", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dotations aux amortissements et aux r\u00e9ductions de valeur sur immobilisations"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur stocks"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur commandes en cours d'ex\u00e9cution"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur cr\u00e9ances commerciales \u00e0 plus d'un an"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur cr\u00e9ances commerciales \u00e0 un an au plus"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour pensions et obligations similaires"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour grosses r\u00e9parations et gros entretiens"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour autres risques et charges"
+       }
+      ], 
+      "name": "AMORTISSEMENTS, REDUCTIONS DE VALEUR ET PROVISIONS POUR RISQUES ET CHARGES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Frais de vente des titres", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisation d'actifs circulants", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Charges d'escompte de cr\u00e9ances", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres charges de dettes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Amortissements des agios et frais d'\u00e9mission d'emprunts", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Int\u00e9r\u00eats, commissions et frais aff\u00e9rents aux dettes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Int\u00e9r\u00eats intercalaires port\u00e9s \u00e0 l'actif", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Charges des dettes"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur actifs circulants"
+       }, 
+       {
+        "name": "Frais de banques, de ch\u00e8ques postaux", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Commissions sur ouvertures de cr\u00e9dit, cautions, avals", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Diff\u00e9rences de change", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ecarts de conversion des devises", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "CHARGES FINANCIERES"
+     }
+    ], 
+    "name": "CLASSE 6. - CHARGES"
+   }, 
+   {
+    "name": "FABRIKAGEREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Verkopen Handel 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen Fabric. 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabric. 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage overig", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage overig", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabric. 0 % EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel hoog tarief", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verleende Kredietbep. fabricage", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verleende Kredietbep. handel", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel laag tarief", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel overig", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "VERKOOPRESULTATEN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortissements sur goodwill", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Co\u00fbt d'acquisition", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Acomptes vers\u00e9s", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concessions, brevets, licences, savoir-faire, marques, etc...", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es sur concessions, brevets, etc...", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur concessions, brevets, etc...", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Concessions, brevets, licences, savoir-faire, marques et droits similaires", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS INCORPORELLES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres droits r\u00e9els sur des immeubles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Frais d'acquisition des terrains \u00e0 b\u00e2tir", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "B\u00e2timents industriels", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur frais d'acquisition des terrains b\u00e2tis", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur terrains b\u00e2tis", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Terrains b\u00e2tis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Voies de transport et ouvrages d'art", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Autres b\u00e2timents d'exploitation", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "B\u00e2timents administratifs et commerciaux", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "B\u00e2timents industriels", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Frais d'acquisition sur constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Constructions sur sol d'autrui", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur constructions sur sol d'autrui", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur frais d'acquisition sur constructions", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Constructions", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "TERRAINS ET CONSTRUCTIONS", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Division A", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Division B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Machines", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Division A", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Division B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Outillage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur machines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur installations", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Plus-values act\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur installations", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur machines", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortissements", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "INSTALLATIONS, MACHINES ET OUTILLAGE", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Idem sur mat\u00e9riel ferroviaire", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Amortissements sur mat\u00e9riel automobile", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel naval", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel fluvial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel a\u00e9rien", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Idem sur mat\u00e9riel naval", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Plus-values sur mat\u00e9riel automobile", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel ferroviaire", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel a\u00e9rien", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel fluvial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values sur mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel ferroviaire", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Voitures", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Camions", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Mat\u00e9riel automobile", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel naval", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel fluvial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel a\u00e9rien", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mat\u00e9riel roulant", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "MOBILIER ET MATERIEL ROULANT", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Plus-values act\u00e9es sur installations, machines et outillage pris en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur installations, machines et outillage pris en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installations", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Machines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Outillage", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Installations, machines et outillage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mobilier", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur mobilier et mat\u00e9riel roulant en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es sur mobilier et mat\u00e9riel roulant en leasing", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mobilier et mat\u00e9riel roulant", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATION DETENUES EN LOCATION-FINANCEMENT ET DROITS SIMILAIRES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortissements sur emballages r\u00e9cup\u00e9rables", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur mat\u00e9riel d'emballage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur r\u00e9serve immobili\u00e8re", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur maison d'habitation", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur frais d'am\u00e9nagement des locaux pris en location", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortissements sur autres immobilisations corporelles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Plus-values act\u00e9es sur autres immobilisations corporelles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mat\u00e9riel d'emballage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "R\u00e9serve immobili\u00e8re", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Maison d'habitation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Emballages r\u00e9cup\u00e9rables", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "AUTRES IMMOBILISATIONS CORPORELLES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titres \u00e0 revenu fixe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres cr\u00e9ances", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres actions et parts", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titres \u00e0 revenu fixes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances sur des entreprises li\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Participations dans des entreprises li\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Titres \u00e0 revenu fixe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances sur des entreprises avec lesquelles il existe un lien de participation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Participations dans des entreprises avec lesquelles il existe un lien de participation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres cautionnements vers\u00e9s en num\u00e9raires", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Electricit\u00e9", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "T\u00e9l\u00e9phone, t\u00e9lefax, t\u00e9lex", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Gaz", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Eau", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cautionnements vers\u00e9s en num\u00e9raires", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS FINANCIERES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Installations, machines et outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mobilier et mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Autres immobilisations corporelles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Immobilisations en cours", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Avances et acomptes vers\u00e9s sur immobilisations en cours", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS CORPORELLES EN COURS ET ACOMPTES VERSES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances autres d\u00e9biteurs", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres d\u00e9biteurs", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances r\u00e9sultant de la cession d'immobilisations donn\u00e9es en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres cr\u00e9ances", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Acomptes vers\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Retenues sur garanties", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur clients exportation hors C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients Belgique", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients Belgique", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances en compte sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients exportation hors C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur les coparticipants", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clients", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances commerciales", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "CREANCES A PLUS D'UN AN", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "CLASSE 2. FRAIS D'ETABLISSEMENT. ACTIFS IMMOBILISES ET CREANCES A PLUS D'UN AN", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "D'un mois au plus"
+       }, 
+       {
+        "name": "De plus d'un mois et \u00e0 un an au plus"
+       }, 
+       {
+        "name": "De plus d'un an"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }
+      ], 
+      "name": "DEPOTS A TERME"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valeur d'acquisition"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }
+      ], 
+      "name": "TITRES A REVENUS FIXES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Comptes ouverts aupr\u00e8s des divers \u00e9tablissements"
+       }
+      ], 
+      "name": "ETABLISSEMENTS DE CREDIT."
+     }, 
+     {
+      "name": "VIREMENTS INTERNES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Coupons \u00e0 encaisser"
+       }
+      ], 
+      "name": "VALEURS ECHUES A L'ENCAISSEMENT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Caisses - timbres"
+       }
+      ], 
+      "name": "CAISSES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ch\u00e8ques \u00e9mis"
+       }
+      ], 
+      "name": "OFFICE DES CHEQUES POSTAUX"
+     }
+    ], 
+    "name": "CLASSE 5. PLACEMENTS DE TRESORERIE ET DE VALEURS DISPONIBLES"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Petty Cash"
+       }, 
+       {
+        "name": "Cash at Bank"
+       }
+      ], 
+      "name": "Cash"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Accumulated Depreciation - Equipment"
+       }
+      ], 
+      "name": "Equipment"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Accumulated Depreciation - Building"
+       }
+      ], 
+      "name": "Building"
+     }, 
+     {
+      "name": "Account Receivable"
+     }, 
+     {
+      "name": "Outstanding Cheques"
+     }, 
+     {
+      "name": "Input VAT"
+     }, 
+     {
+      "name": "Withholding Income Tax"
+     }, 
+     {
+      "name": "Inventory"
+     }
+    ], 
+    "name": "Assets"
+   }
+  ], 
+  "name": "Simple chart of accounts"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/bo_bo_chart_template.json b/setup/doctype/company/charts/bo_bo_chart_template.json
new file mode 100644
index 0000000..b4303d4
--- /dev/null
+++ b/setup/doctype/company/charts/bo_bo_chart_template.json
@@ -0,0 +1,11887 @@
+{
+ "name": "Bolivia - Plan de Cuentas", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Envases ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Materia Prima ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Materiales y Suministros Directos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio del personal", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad por labores", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ uniformes al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ atenciones al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ accident. trab. y enferm. prof", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ asignaci\u00f3n familiar LEY 25129", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ gastos recreativos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad del personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ bonificaci\u00f3n por riesgo de caja ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de prestaciones salud ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de pensiones ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ seguros de vida LEY 49226", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio al personal ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos adicionales a las remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n de empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / asignaci\u00f3n familiar ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / trabajos eventuales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones extraordinarias ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / practicas pre-profecionales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / subsidios por enfermedad ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / aguinaldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n obreros ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Otras remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / sueldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / salarios ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / remuneraciones en especie ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Mano de Obra Directa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Producci\u00f3n - Otros Costos Directos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Mano de Obra Indirecta", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Materiales Auxiliares", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Repuestos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Suministros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Materiales y Suministros Indirectos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - gastos indirectos / Otros Gastos de Producci\u00f3n Indirectos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Otros Gastos de Producci\u00f3n Indirectos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Gastos de Producci\u00f3n Indirectos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de Producci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de ventas - Publicidad ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Alquiler de locales y servicios basicos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones / sueldos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / comisiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / remuneraciones en especie", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ accident. trab., enferm. prof y otros seguros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ movilidad y refrigerios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ atenciones al personal y gastos recreativos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Gastos adicionales a las remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / asignaci\u00f3n familiar y bonificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / vacaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / practicas pre-profecionales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / horas extras", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Honorarios profecionales ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / embalajes y otros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / telecomunicaciones (telefono, internet,...)", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes aereos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras cargas de personal ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Mantenimiento de inmuebles, maquinarias y equipos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Otros gastos de ventas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de ventas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de administraci\u00f3n - Gastos varios ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Cotizaci\u00f3n, licitaci\u00f3n, donaciones y otros ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraci\u00f3n al directorio ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / telefonos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / practicas pre-profecionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / vacaciones empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / aguinaldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / gratificaci\u00f3n de empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / horas extras empleados      ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraciones en especie ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / sueldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / otras cargas de personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes aereos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / movilidad al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / atenciones al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / refrigerio al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / asignaci\u00f3n familiar ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / envio correspondencia ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / bonificaci\u00f3n por riesgo de caja ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Depreciaci\u00f3n y Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Penalidades, tributos y seguros  ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / gastos notariales, registro y judicial", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / honorarios profesionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / transferencias de fondos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / mantenimiento, ctas bancarias ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / servicios de seguridad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / otros servicios bancarios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / talonarios de cheques ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Publicidad, representaci\u00f3n y otros servicios de personal", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de administraci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses moratorios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / pago tributos y contribuciones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / comisi\u00f3n tarjeta de credito ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / gastos cheques devueltos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses SUNAT ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses de leasing", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Otras cargas financieras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses de pagares ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes compensatorio - por cartera", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / perdida por diferencia de cambio", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / descuentos concedidos por pronto pago", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses y gastos de prestamo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / devolucion de documentos de cobranza", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes por Letras en descuento", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses moratorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses compensatorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses,compra,mercader\u00eda ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses por sobregiros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / gastos por atrazo, cuotas bancarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Interes y gastos financieros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros    ", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Centros de Costo", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital - Capital social / acciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital - Capital social / participaciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital - Capital social ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital - Acciones en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Capital (Patrimonio neto)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PASIVOS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones a ser mantenidas hasta el vencimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones financieras representativas de derecho patrimonial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inversiones mobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / concesiones, licencias y otros derechos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / otros activos intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de intangibles  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Inversiones inmobiliarias  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de activo inmovilizado ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PATRIMONIO"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Ingresos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Ingresos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Subsidios recibidos diferidos ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Costos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Costos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, resultados  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Impuesto a la renta diferido ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / patrimonio ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / resultados ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Ganancia en venta con arrendamiento financiero paralelo ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Pasivo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ gerentes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ directores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / letras por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - ** Cuentas por cobrar comerciales, relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, relacionadas / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / reclamaciones a terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / intereses, r\u00e9galias y dividendos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / venta de activo inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / letras por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar comerciales, terceros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Estimaci\u00f3n de cuentas de cobranza dudosa", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Agotamiento acumulado / agotamiento de reservas de recursos extra\u00edbles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Agotamiento acumulado  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n, ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n, costos de exploraci\u00f3n y desarrollo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Amortizaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n,costo de financiacion, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipos diversos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipo de transporte ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, muebles y enseres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento financiero, inversiones inmobiliarias, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento ..., inmuebles, maquinaria y equipo de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Depreciaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones - Provisi\u00f3n para reestructuraciones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Otras provisiones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para litigios   ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para garant\u00edas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para gastos de responsabilidad social ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Provisiones    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / matriz", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / sucursales ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / asociadas ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / sucursales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / sucursales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Dividendos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, otras  ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas / otras cuentas por pagar diversas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, otras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, matriz", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, sucursales", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pasivo por compra de activo inmovilizado ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, relacionadas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Unidades de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "DISPONIBLES PARA LA VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones mantenidas hasta el vencimiento ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pr\u00e9stamos y partidas a cobrar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acciones y participaciones"
+         }
+        ], 
+        "name": "INVERSIONES MANTENIDAS HASTA EL VENCIMIENTO "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar a terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar al originador", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y Documentos a cobrar a terceros"
+         }
+        ], 
+        "name": "PRESTAMOS Y PARTIDAS A COBRAR "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Forward", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Futuros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Opciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Derivados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "A VALOR RAZONABLE CON CAMBIOS EN RESULTADOS"
+       }, 
+       {
+        "name": "Caja y Bancos - Valores a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y Bancos.../ BCO. CTA CTE PAB"
+         }
+        ], 
+        "name": "Caja y Bancos - Bancos"
+       }, 
+       {
+        "name": "Caja y Bancos - Recaudaciones a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / valor razonable  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable ...- Inversiones al valor razonable ** Inversiones mantenidas para negociaci\u00f3n     ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Fondos fijos / caja menuda 01 PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Activos financieros / compromiso de compra", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado /valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero eh", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo USD"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Inversiones disponibles para la venta", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones al valor razonable y disponibles para la venta ** Inversiones financieras", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar...- Letras por cobrar / en cartera", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en  cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / sucursales", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / matriz ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros ... / no emitidas, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por... - Facturas, boletas y otros .../ no emitidas, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Facturas, boletas y otros comprobantes por cobrar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Accionistas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Intereses Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Alquileres Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Anticipo al Personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar   ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Cobranza dudosa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Comisiones por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar a terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Dividendos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RENDIMIENTOS POR COBRAR"
+       }, 
+       {
+        "name": "DERECHOS POR COMPROMISO DE RECOMPRA"
+       }, 
+       {
+        "name": "ANTICIPO A CONSTRUCTOR POR AVANCE DE OBRA"
+       }, 
+       {
+        "name": "ANTICIPO COMITENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Al Originador", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Puestos inactivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por servicios burs\u00e1tiles"
+         }, 
+         {
+          "name": "Asesor\u00eda"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contrato de Underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Extraburs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Por  Manejo de Fideicomisos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Contratos de Administraci\u00f3n Portafolio de Terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Fondos Administrados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Encargos Fiduciarios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por comisiones de administraci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por  administraci\u00f3n y manejo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores Materializados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Libro de Acciones y Accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores Desmaterializados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por Custodia y Conservaci\u00f3n de Valores"
+         }, 
+         {
+          "name": "Otras comisiones"
+         }
+        ], 
+        "name": "COMISIONES POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DOCUMENTOS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Facturas, boletas y otros comprobantes por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Cuotas Iniciales", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Adelantos o Separaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cartera ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cobranza ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / Deudores Varios"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Incobrables"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }, 
+       {
+        "name": "PROVISIONES PARA CUENTAS POR COBRAR"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PRODUCTOS TERMINADOS"
+       }, 
+       {
+        "name": "PRODUCTOS EN PROCESO"
+       }, 
+       {
+        "name": "MATERIA PRIMA"
+       }, 
+       {
+        "name": "MATERIALES Y SUMINISTROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / suscripciones por cobrar a socios o accionistas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Accionistas o (socios) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / adelanto de dietas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Personal / entregas a rendir cuenta", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / otras cuentas por cobrar al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Personal", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / directores ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / personal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / gerentes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Diversas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "PROVISI\u00d3N POR DETERIORO DE EXISTENCIAS"
+       }
+      ], 
+      "name": "Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y  equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Venta de activo inmovilizado ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos /  dividendos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses , asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, sucursal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, r\u00e9galias y dividendos / intereses", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Interes\u00e9s, regal\u00edas y dividendos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / Concesiones y Franquicias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVOS ADQUIRIDOS EN ARRENDAMIENTO FINANCIERO"
+       }, 
+       {
+        "name": "CONSTRUCCIONES EN CURSO "
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PLUSVAL\u00cdA MERCANTIL (Goodwill)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROPIEDADES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Programas de computaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reservas de recursos extra\u00edbles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTANGIBLES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades"
+         }, 
+         {
+          "name": "Plusval\u00eda mercantil (Goodwill) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS NO CORRIENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas a Largo Plazo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Activos por instrumentos financieros derivados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros primarios   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / instrumento de cobertura", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / cartera de negociaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros derivados  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Activos por instrumentos financieros   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / entregas a rendir cuenta a terceros  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas a Largo Plazo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / reclamaciones a terceros ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVO NO CORRIENTE DISPONIBLE PARA LA VENTA"
+       }, 
+       {
+        "name": "UNIDADES DE PARTICIPACION"
+       }, 
+       {
+        "name": "ACTIVO POR IMPUESTO CORRIENTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / dep\u00f3sitos en garant\u00eda por alquileres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones no financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / otros dep\u00f3sitos en garant\u00eda ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Venta de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / Compa\u00f1\u00edas aseguradoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / transportadoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / tributos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / otras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / servicios p\u00fablicos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Reclamaciones a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Intereses, regal\u00edas y dividendos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Servicios y otros contratados por anticipado - Interes\u00e9s ** Costos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo por impuesto diferido  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ACTIVO POR IMPUESTO DIFERIDO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuota patrimonial bolsa de valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuota patrimonial bolsa de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por reporto", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por operaciones burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Dep\u00f3sitos en Garant\u00eda"
+         }
+        ], 
+        "name": "OTROS ACTIVOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Mantenimiento de activos inmovilizados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Otros gastos contratados por anticipado ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "ACTIVOS DE EXPLORACION Y EVALUACION MINERA"
+       }, 
+       {
+        "name": "DERECHOS FIDUCIARIOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Primas pagadas por opciones ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos en arrendamiento financiero", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos de exploraci\u00f3n y evaluaci\u00f3n minera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DEPRECIACION ACUMULADA"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Alquileres ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Seguros ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AMORTIZACION ACUMULADA"
+       }
+      ], 
+      "name": "Servicios y otros contratados por anticipado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Caja y bancos - Caja / efectivo USD ($)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y bancos - Caja / efectivo PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Caja", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y .../ BCO. CTA CTE PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Cuentas corrientes en instituciones finacieras  / cuentas corrientes operativas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y ...- Cuentas corrientes en instituciones financieras / cuentas corrientes para fines espec\u00edficos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Cuentas corrientes en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Fondos fijos / caja chica 01 PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Fondos fijos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos a plazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos de ahorro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Dep\u00f3sitos en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Certificados bancarios / certificados bancarios ** otros equivalentes de efectivos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Certificados bancarios / otros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Certificados bancarios **Otros equivalentes de efectivos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / BN CTA DETRACCIONES PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / fondos sujetos a restricci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cajas y bancos - Fondos sujetos a restricci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Caja y bancos - Efectivo en tr\u00e1nsito ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Banco Central del Ecuador"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fondos rotativos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja"
+         }, 
+         {
+          "name": "Instituciones financieras"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Ahorros Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta Ahorros En el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras Instituciones Financieras"
+         }
+        ], 
+        "name": "ACTIVO DISPONIBLE"
+       }
+      ], 
+      "name": "Caja y bancos  (Activo disponible y exigible) - Efectivo y equivalentes de efectivos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos manufacturados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos de extracci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias primas - Materias primas desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Salarios por Pagar / Retenciones a Depositar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Sueldos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos manufacturados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Salarios por Pagar / Provisi\u00f3n para Sueldo Anual Complementario", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Cargas Sociales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos agropecuarios y pisc\u00edcolas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materias primas   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras Cuentas por Pagar / Cobros por Adelantado", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Acreedores Varios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Honorarios Directores y S\u00edndicos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / lubricantes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / combustibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / energ\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / otros suministros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Suministros ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / materiales auxiliares", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / suministros    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / repuestos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares, suministros y repuestos desvalorizados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Materiales auxiliares, suministros y  repuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n para juicios Pendientes", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases y embalajes - Envases y embalajes desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Envases y embalajes - Embalajes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Envases y embalajes - Envases", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Envases y embalajes     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inversi\u00f3n inmoviliaria", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipos diversos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, herramientas y unidades de reemplazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, patentes y propiedad industrial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, reservas de recursos extra\u00edbles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos no corrientes mantenidos para la venta    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, costo - Categoria de productos 01", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Mercade...- Mercader\u00edas .../ Mercader\u00edas manufacturadas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Mercader\u00edas - Mercader\u00edas manufacturadas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas manufacturadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / recursos extra\u00eddos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / mercader\u00edas manufacturadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercaderias desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen vegetal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen animal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Otras mercader\u00edas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Mercader\u00edas  (Activo realizable)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Productos terminados - Productos de extracci\u00f3n terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Anticipos de Clientes"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen animal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos terminados - Productos agropecuarios y pisc\u00edcolas terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Proveedores"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / otros productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos inmuebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados - Productos terminados desvalorizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos terminados - Productos inmuebles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Productos manufacturados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Otros productos terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Costos de financiaci\u00f3n, productos terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Existencias de servicios terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Participaciones de los trabajadores en utilidades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Beneficios a empleados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aportes y descuentos al IESS", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondo reserva del IESS", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES PATRONALES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acreedores Varios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por administraci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras comisiones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dividendos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Comisiones por pagar ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Operaciones Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por custodia", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deuda Sector No Financiero"
+         }
+        ], 
+        "name": "PASIVO NO FINANCIERO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligaciones por Arrendamiento Financiero ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "A valor razonable con cambios en resultados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compa\u00f1\u00edas relacionadas / vinculadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Administradores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Accionistas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Relacionadas"
+         }, 
+         {
+          "name": "Pasivos por compra de activos no corrientes"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones por contratos de underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Porci\u00f3n corriente de deuda a largo plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sobregiros bancarios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Obligaciones financieras"
+         }, 
+         {
+          "name": "Otros pasivos financieros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras cuentas y documentos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Anticipos recibidos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y documentos por pagar"
+         }
+        ], 
+        "name": "PASIVOS FINANCIEROS"
+       }, 
+       {
+        "name": "OTROS PASIVOS CORRIENTES"
+       }, 
+       {
+        "name": "ACREEDORES POR INTERMEDIACION            "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Litigios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Indemnizaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Obligaciones Judiciales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SANCIONES Y MULTAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Impuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Retenciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Contribuciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES TRIBUTARIAS"
+       }
+      ], 
+      "name": "Productos  terminados", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pasivo Circulante / Debentures Emitidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / subproductos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos, desechos y desperdicios - Subproductos, desechos y desperdicios desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo Circulante / Intereses a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Obligaciones a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Prestamos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Adelantos en Cuenta Corriente", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Desechos y desperdicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses diferidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pasivos por impuestos diferidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PASIVOS DIFERIDOS"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Subproductos ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subproductos, desechos y desperdicios   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DEUDA SECTOR FINANCIERO"
+       }, 
+       {
+        "name": "Productos en proceso - Productos extra\u00eddos en proceso de transformaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / costos de financiaci\u00f3n, productos en proceso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / otros productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / existencias de servicios en proceso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en proceso - Productos en proceso desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto sobre los Bienes Personales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Deudas Fiscales / Monotributo a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / ITBMS a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / Impuesto sobre la Renta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Productos en proceso - Productos inmuebles en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Costos de financiaci\u00f3n, productos en proceso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto a la Ganancia M\u00ednima Presunta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo   ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable   ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo    ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen animal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos en proceso - Productos agropecuarios y pisc\u00edcolas en proceso", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos en proceso - Otros productos en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Productos en proceso de manufactura", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Existencias de servicios en proceso", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos en  proceso ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Existencias por recibir - Mercader\u00edas / Categoria de productos 01", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Mercader\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materias primas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materiales auxiliares, suministros y repuesto", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / mercader\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materias primas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Existencias por recibir desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materiales auxiliares, suministros y repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Existencias por recibir - Envases y embalajes", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Existencias por recibir   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materias primas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / mercader\u00edas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Existencias por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / costos de financiaci\u00f3n, productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / existencias de servicios en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / otros productos en proceso ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / otros productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / costos de financiaci\u00f3n, productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos inmuebles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos terminados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / suministros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / repuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / materiales auxiliares ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Envases y embalajes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos manufacturados    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / subproductos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Subproductos, desechos y desperdicios ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de existencias    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros activos - Bienes de arte y cultura / obras de arte ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / biblioteca", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / otros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Bienes de arte y cultura ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros activos - Diversos / otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes recibidos en pago (adjudicados y realizables) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes entregados en comodato ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / monedas y joyas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Diversos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACUMULADOS"
+       }, 
+       {
+        "name": "UTILIDAD (PERDIDA) DEL EJERCICIO"
+       }, 
+       {
+        "name": "RESULTADOS ACUMULADOS POR APLICACI\u00d3N DE LAS NIIF POR PRIMERA VEZ"
+       }
+      ], 
+      "name": "Otros activos    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / maquinaria en montaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inversiones inmobiliarias, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / otros activos en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / construcciones en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / inversi\u00f3n inmobiliaria en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaci...", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmue...- Constru.../ costo de financiaci\u00f3n, inmuebles, maquinaria y ..., C de F, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inmuebles maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / adaptaci\u00f3n de terrenos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipos diversos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / herramientas y unidades de reemplazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / muebles y enseres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Unidades por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / muebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / enseres", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Muebles y enseres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos no motorizados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos motorizados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - ** Unidades de transporte ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / herramientas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / unidades de reemplazo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Terrenos / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos .., costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / otros equipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo para procesamiento de informaci\u00f3n (de c\u00f3mputo) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de seguridad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Equipos diversos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de financiaci\u00f3n, almacenes", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / almacenes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de financiaci\u00f3n, edificaciones para producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones para producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de financiaci\u00f3n, instalaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / instalaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones administrativas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Edificaciones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inmuebles, maquinaria y equipo   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos adquiridos en arrendamiento financiero   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Capital / Dividendos a Distribuir en Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costos de financiaci\u00f3n, inversiones inmobliarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Edificaciones /  edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Edificaciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / rurales, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / rurales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / urbanos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "PATRIMONIO DE LOS NEGOCIOS FIDUCIARIOS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Patrimonio del fondo colectivo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patrimonio del fondo administrado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PATRIMONIO DE LOS FONDOS DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PAGADO"
+       }, 
+       {
+        "name": "ACCIONES EN TESORER\u00cdA"
+       }, 
+       {
+        "name": "FONDO PATRIMONIAL"
+       }
+      ], 
+      "name": "Inversiones inmobiliarias   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ instrumentos financieros representativos de derecho ..., acuerdo de compra ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ inversiones a ser mantenidas hasta el vencimiento, acuerdo de compra", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Desvalorizaci\u00f3n de inversiones mobiliarias ** acuerdos de compra ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por el sistema financiero", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por las empresas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a ../ instrumentos ., otros t\u00edtulos representativos de deuda **valores emitidos por otras entidades", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos o garantizados por el estado ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Inversiones a ser mantenidas hasta el vencimiento / instrumentos financieros representativos de deuda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Inversiones a ser mantenidas hasta el vencimiento", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ otros t\u00edtulos representativos de patrimonio, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de .../ otros t\u00edtulos representativos de patrimonio, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho patrimonial / otros t\u00edtulos representativos de patrimonio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n ..., participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ participaciones en asociaciones en participaci\u00f3n y consorcios", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de participaci\u00f3n de fondos mutuos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ **certificados de participaci\u00f3n de fondos de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones representativas de capital social, comunes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos .../ acciones representativas de capital social, preferentes, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ acciones representativas de capital social, preferentes ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de suscripci\u00f3n preferente", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Instrumentos financieros representativos de derecho patrimonial ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones mobiliarias (Activo inmovilizado)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Impuesto a la renta diferido", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, patrimonio   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Utilidades y P\u00e9rdidas del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en producci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos biol\u00f3gicos     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "OTRAS RESERVAS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / licencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / concesiones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / otros derechos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Concesiones, licencias y otros derechos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / marcas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / patentes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Patentes y propiedad industrial ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Programas de computadora (software) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Otros activos intangibles / otros activos intangibles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Otros activos intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "RESERVA LEGAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserva por valuaci\u00f3n Propiedades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reserva por Valuaci\u00f3n Activos Financieros Disponibles para la Venta", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RESERVA POR VALUACI\u00d3N"
+       }, 
+       {
+        "name": "RESERVA FACULTATIVA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / madera  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Reservas de recursos extra\u00edbles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles - Plusval\u00eda mercantil / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Intangibles - Plusval\u00eda mercantil ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Intangibles   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar diversas, terceros - D\u00e9positos recibidos en garant\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos adquiridos en arrendamientos financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones inmoviliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / intangibles ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por compra de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Pasivos financieros, compromiso de venta ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "INGRESOS DE ACTIVOS POR IMPUESTOS DIFERIDOS"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Reclamaciones de terceros ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / otras cuentas por pagar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / donaciones condicionadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / subsidios gubernamentales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros primarios  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, cartera de negociaci\u00f3n ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, instrumentos de cobertura ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros derivados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por instrumentos financieros   ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, terceros ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Directores / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Directores / dietas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Gerentes ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "UTILIDAD POR OPERACIONES DESCONTINUADAS"
+       }, 
+       {
+        "name": "OTRAS UTILIDADES EN VENTAS"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE VALORES"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE PROPIEDAD"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Largo Plazo", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Corto Plazo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / dividendos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Accionistas (o socios) ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar a los accionistas(socios), directores y gerentes ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / contratos de arrendamiento financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos emitidos   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos titulizados  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, otras obligaciones ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, instituciones financieras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, otras entidades ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / pr\u00e9stamos de instituciones financieras y otras entidades ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, pagar\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, letras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, facturas conformadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, otras obligaciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, bonos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / otros instrumentos  financieros por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / otras entidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / instituciones financieras    ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Pr\u00e9stamos de instituciones financieras y otras entidades   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero a Largo Plazo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero parte Corriente", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Contratos de arrendamientos financiero  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos emitidos  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos titulizados ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / otras obligaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Obligaciones emitidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / pagar\u00e9s ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / letras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / facturas conformadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / bonos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / otras obligaciones financieras  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Otros instrumentos financieros por pagar    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Obligaciones financieras - Pr\u00e9stamos con compromisos de recompra ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "OBLIGACIONES FINANCIERAS"
+       }, 
+       {
+        "name": "ACTIVOS BIOL\u00d3GICOS"
+       }, 
+       {
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "ACTIVOS NO CORRIENTES"
+       }
+      ], 
+      "name": "Obligaciones financieras  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Honorarios por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Anticipos a proveedores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inscripciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mantenimiento de Inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Comisiones en operaciones ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS BURS\u00c1TILES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Portafolio de terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por representaci\u00f3n de obligacionistas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR PRESTACI\u00d3N DE SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERMEDIACI\u00d3N DE VALORES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores materializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y liquidaci\u00f3n de valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO\n        COMPENSACI\u00d3N Y LIQUIDACI\u00d3N"
+       }, 
+       {
+        "name": "OTRAS COMISIONES GANADAS"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Letras por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, terceros - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ganancia Venta de Activo Fijo", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Recupero de Deudores Incobrables", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta Inversiones Permanentes", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Donaciones obtenidas, ganandas, percibidas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, sucursales ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta p\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INGRESOS POR ESTRUCTURACI\u00d3N"
+       }, 
+       {
+        "name": "INGRESOS POR ASESORIA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, otros", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, matriz", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobiernos regionales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Otros costos administrativos e intereses ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Administradoras de fondos de pensiones (AFP)", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Certificados tributarios ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto de alcabala ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto predial ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al rodaje", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al patrimonio vehicular ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los juegos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a las apuestas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los espect\u00e1culos p\u00fablicos no deportivos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / impuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios administrativos o derechos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, estacionamiento de veh\u00edculos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, licencia de apertura de establecimientos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios p\u00fablicos o arbitrios ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, transporte p\u00fablico ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / tasas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Gobiernos locales / contribuciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes ...- Gobiernos Locales (Predial, Licencias, tributos, impuestos, contribuciones, tasas y arbitrios,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENCICO ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ONP", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ESSALUD", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENATI", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / otras instituciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Instituciones p\u00fablicas (ESSALUD, ONP,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Gobierno central / impuesto selectivo al consumo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, tasas por la prestaci\u00f3n de servicios p\u00fablicos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, regal\u00edas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los dividendos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a las transacciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los juegos de casino y tragamonedas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, otros impuestos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto temporal a los activos netos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / **otros impuestos (ITF,...) y contraprestaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon hidroenerg\u00e9tico ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon petroleo ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon gas\u00edfero ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon minero  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon forestal ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon pesquero ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / canon", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - servicios prestados por no domiciliados   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de percepciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - cuenta propia ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas (IGV)   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de cuarta categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de no domiciliados ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de tercera categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, otras retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de quinta categor\u00eda ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos arancelarios ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos aduaneros por ventas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobierno central", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta propia ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta de terceros ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Empresas prestadoras de servicios de salud (EPS)", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Tributos, **contraprestaciones  y aportes al sistema de pensiones y de salud por pagar  (Pasivo)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Comisiones gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajodores por pagar / pensiones y jubilaciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / adelanto de compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar - Beneficios sociales de los trabajadores por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Interese sobre Inversiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Honorarios gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Categoria de productos 01", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / sueldos y salarios por pagar   ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / gratificaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / vacaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / comisiones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / remuneraciones en especie por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar  - Remuneraciones por pagar   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Intereses gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Alquileres gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta de Acciones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "INTERESES Y RENDIMIENTOS"
+       }, 
+       {
+        "name": "UTILIDAD EN CAMBIO"
+       }, 
+       {
+        "name": "DIVIDENDOS"
+       }, 
+       {
+        "name": "UTILIDAD POR VALUACI\u00d3N DE ACTIVOS FINANCIEROS A VALOR RAZONABLE"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Otras remuneraciones y participaciones por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Participaci\u00f3n de los trabajadores por pagar ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Remuneraciones y participaciones por pagar", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / ingresos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / utilidades acumuladas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - Utilidades no distribuidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / p\u00e9rdidas acumuladas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / gastos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - P\u00e9rdidas acumuladas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados acumulados     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reserva legal - Contractuales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Estatutarias ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Reinversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Facultativas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Legal ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Otras reservas ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Reserva legal    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente de revaluaci\u00f3n - Participaci\u00f3n en excedente de revaluaci\u00f3n, inversiones en entidades relacionadas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / intangibles ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Exdecente de revaluaci\u00f3n / inversiones inmobiliarias  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / inmuebles, maquinaria y equipos ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n, acciones liberadas recibidas  ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Excedente de revaluaci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultados no realizados - Instrumentos financieros, cobertura de flujo de efectivo ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados no realizados - Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Resultados no realizados - Diferencia en cambio de inversiones permanentes en entidades extranjeras ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta,compra o venta convencional fecha d liqui", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados no realizados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de Publicidad y Propaganda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Salarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses por cr\u00e9ditos de bancos y otras Instituciones financieras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intereses por otros pasivos no financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERESES CAUSADOS"
+       }, 
+       {
+        "name": "Gastos en Servicios P\u00fablicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Mercader\u00edas Vendidas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Depreciaci\u00f3n de Activo Fijo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Cargas Sociales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos Bancarios", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Impuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en Valuaci\u00f3n de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN VALUACI\u00d3N DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en cambio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN CAMBIO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Arrendamiento operativo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ARRENDAMIENTO OPERATIVO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores Desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y Liquidaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores Materializados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO COMPENSACI\u00d3N Y LIQUIDACI\u00d3N \n      "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras Comisiones Pagadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS COMISIONES PAGADAS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tlies", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COMISIONES PAGADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Administraci\u00f3n de portafolio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por operaciones descontinuadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta activos biol\u00f2gicos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Propiedad ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDAS EN VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta P\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS POR ESTRUCTURACI\u00d3N"
+       }
+      ], 
+      "name": "Acciones de inversi\u00f3n   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Beneficios sociales de los trabajadores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS DE PERSONAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios de terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS DE TERCEROS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Honorarios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "HONORARIOS"
+       }, 
+       {
+        "name": "Capital adicional - Reducciones de capital pendientes de formalizaci\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Capital adicional - Primas (descuento) de acciones  ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Gastos en Siniestros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / reservas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / aportes ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / utilidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / acreencias ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital adicional - Capitalizaciones en tr\u00e1mite ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida Venta Activo Fijo", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Capital adicional ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inventarios - Mercancias / Categoria de productos 01", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inventarios - Mercancias"
+         }, 
+         {
+          "name": "Materias primas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inventarios - Mercancias en Tr\u00e1nsito", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos Elaborados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos en Curso de Elaboraci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Inventarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales Varios ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plantas en crecimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animales vivos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inventarios"
+       }
+      ], 
+      "name": "ACTIVOS"
+     }
+    ], 
+    "name": "Cuentas de Balance", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Compras - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercaderias / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos .../ otros costos vinculados con las compras de materias primas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ comisiones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos vinculados con las compras / costos vinculados con las compras de materias primas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ comisiones    ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ otros costos vinculados con las compras de mercader\u00edas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos Vinculados con las compras / costos vinculados con las compras de mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vincu...,otros costos vinculados con las compras de materiales, suministros y repuestos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, seguros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, transporte  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de materiales, suministros y repuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, transporte  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ../ costos vinculados con las compras de envases y .., otrs costos vinculados con las compras d env y emb", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, seguros ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de envases y embalajes ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Costos Vinculados con las compras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos de extracc\u00edon ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ repuestos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Envases y embalajes / embalajes ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Envases y embalajes / envases ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Envases y embalajes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compras (Gastos por naturaleza)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "COSTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas imputables ...- Gastos financieros imputables a cuentas de existencias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cargas imputables ...- Cargas imputables a cuentas de costos y gastos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas imputables a cuentas de costos y gastos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas cubiertas por provisiones - Cargas cubiertas por provisiones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas cubiertas por provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / existencias de servicios terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costos de producci\u00f3n no absorbido, productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costo de ineficiencia, productos terminados  ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Productos terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / desechos y desperdicios ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros - Categoria de productos 01", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercaderi\u00e1s de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Servicios / relacionadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Servicios / terceros (Costo diferido)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos en proceso ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / existencias por recibir ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materias primas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / mercader\u00edas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / subproductos, desechos y desperdicios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / envases y embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de ventas  ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "INGRESOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente bruto ...- Exdedente bruto (insuficiencia bruta) de explotaci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Excedente bruto (insuficiencia bruta) de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado de explotaci\u00f3n - Resultado de explotaci\u00f3n", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado antes ...- Resultado antes de participaciones e impuestos ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado antes de participaciones e impuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ repuestos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas iinmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercaderias manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ embalajes", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ envases", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Venta - Categoria de productos 01", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias  (perdidas de inventario)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / beneficio de movilidad al trabajador", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaciones extraordinarias", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / asignaci\u00f3n familiar", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / sueldos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / subsidios por enfermedad", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / horas Extras", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaci\u00f3n por riesgo de caja", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de personal ...- Remuneraciones / sueldos y salarios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / vacaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / gratificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / comisiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / remuneraciones en especie", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de pensiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ caja de beneficios de seguridad social del pescador", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de ...- Seguridad .../ seguro complementario de trabajo de riesgo, accidentes de trabajo y enfermedades profesionales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguros particulares de prestaciones de salud - EPS y otros particulares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de prestaciones de salud", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguro de vida", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ contribuciones al SENCICO y el SENATI ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Seguridad y previsi\u00f3n social y otras contribuciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal  ...- Otras Remuneraciones / planilla de movilidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Otras remuneraciones   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Capacitaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ Compensaci\u00f3n por tiempo de servicio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ otros beneficios post-empleo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ pensiones y jubilaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Beneficios sociales de los trabajadores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Indemnizaciones al personal", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Retribuciones al directorio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Atenci\u00f3n al personal  ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compras - Categoria de productos 01", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de personal, directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de ventas   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / verificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de cobranzas   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Producci\u00f3n encargada a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / agua", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / gas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / energ\u00eda el\u00e9ctrica", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios / internet", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / cable", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / radio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / tel\u00e9fono", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios b\u00e1sicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultoria / administrartiva ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / mercadotecnia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / medioambiental ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / legal y tributaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / auditor\u00eda y contable ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / investigaci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Asesor\u00eda y consultor\u00eda ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / relaciones p\u00fablicas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / diarios y revistas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / televisi\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / articulos promocionales", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / radial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / otros medios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Publicidad, publicaciones, relaciones p\u00fablicas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / edificios y locales", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inversi\u00f3n inmoviliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / unidades de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / combustible y lubricantes", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / herramientas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Mantenimiento y reparaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / terrenos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / vigilancia", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / guardian\u00eda", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / conserjer\u00eda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios de contratistas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos de laboratorio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / mantenimiento de cuentas", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / transferencias de fondos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / talonario de cheques", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / otros servicios bancarios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos bancarios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos notariales y de registro ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ legalizaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ tr\u00e1mites judiciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ varios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ centrales de riesgo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Otros servicios prestados por terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ correos  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alojamiento", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alimentaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ otros gastos de viaje ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de pasajeros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de carga", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Transporte, correos .../ transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros -Transporte, correos y gastos de viaje  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de servicios prestados por terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos por tributos - Gobierno regional ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Cotizaciones con car\u00e1cter de tributo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto al patrimonio vehicular ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / licencia de funcionamiento ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / arbitrios municipales y seguridad ciudadana ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto predial ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno local", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENATI ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENCICO", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Otros gastos por tributos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Otros tributos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno central / c\u00e1nones ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / regal\u00edas mineras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a las transacciones financieras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a los juegos de casino y m\u00e1quinas tragamonedas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto general a las ventas y selectivo al consumo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto temporal a los activos netos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno central ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos por tributos   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inversiones inmobiliarias  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos biol\u00f3gicos ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos adquiridos en arrendamiento financiero", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inmuebles, maquinaria y equipo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, intangibles ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Otros ...- Costo neto .../ operaciones discontinuadas, abandono de activos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inversiones inmobiliarias", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos biol\u00f3gicos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inmuebles, maquinaria y equipo", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / intangibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos adquiridos en arrendamiento financiero", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Otros ...- Costo neto ... / Costo neto de enajenaci\u00f3n de activos inmovilizados   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Costo neto de enajenaci\u00f3n de activos inmovilizados y operaciones discontinuadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gastos de investigaci\u00f3n y desarrollo", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Regal\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suministros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos de ...- Seguros / vehiculos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / robo, desfalco", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / contra incendio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Seguros", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Licencias y derechos de vigencia", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gesti\u00f3n medioambiental", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suscripciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / sanciones administrativas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / gastos extraordinarios ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / otros gastos ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / donaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Otros gastos de gesti\u00f3n  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otros gastos de gesti\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Gastos por participaciones en negocios conjuntos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Participaci\u00f3n en los resultados de subsidiarias y afiliadas bajo el m\u00e9todo del valor patrimonial", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Obligaciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / inversiones inmobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / productos terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inmuebles, maquinaria y equipo ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inversi\u00f3n inmoviliaria ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, intangibles ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, activos biol\u00f3gicos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "P\u00e9rdida por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaci\u00f3n en los resultados de subsidiarias y asociadas bajo el m\u00e9todo del valor patrimonial ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaciones en negocios conjuntos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Participaci\u00f3n en resultados de entidades relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Otros gastos financieros / primas por opciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Otros gastos financieros / gastos financieros en medici\u00f3n a valor descontado", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Otros gastos financieros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ emisi\u00f3n y colocaci\u00f3n de instrumentos representativos de deuda y patrimonio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros -  Gastos en operaciones de endeudamiento y otros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones de factoraje / gastos por menor valor ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Gastos en operaciones de factoraje ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones para negociaci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos.../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones comerciales (compra de mercaderia)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ otros instrumentos financieros por pagar (sobre giro bancario)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones tributarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ otras entidades", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ instituciones financieras", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos...- Intereses por pr\u00e9stamos .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones emitidas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Intereses por pr\u00e9stamos y otras obligaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Diferencia de cambio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Descuentos concedidos por pronto pago", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - P\u00e9rdida por instrumentos financieros derivados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros  (gastos en operaciones de endudamiento, intereses,...)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / patentes y propiedad industrial ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Amortizaci\u00f3n de intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de activos biol\u00f3gicos en  producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inversiones inmobiliarias / edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / plusval\u00eda mercantil ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inmuebles maquinaria y equipo   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Deterioro del valor de los activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, terceros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, terceros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de .., cuentas por cobrar al personal, a los accionistas(socios)..", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones mobiliarias, inversiones a ser mantenidas hasta el vencimento ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones ., instrumentos financieros representativos de derecho patrimonial", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Valuaci\u00f3n de activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para gastos de responsabilidad social", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado, costo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del ..., actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para litigios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para reestructuraciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / otras provisiones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Provisiones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmoviliarias / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento financiero .../ edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal   ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ muebles y enseres", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de  explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costos de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Depreciaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y ...- Agotamiento / agotamiento de recursos naturales adquiridos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Agotamiento", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valuaci\u00f3n y deterioro de activos y provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "COSTO DE PRODUCCI\u00d3N "
+         }, 
+         {
+          "name": "OBLIGACIONES FINANCIERAS"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PRIMA POR OPERACIONES DE REPORTO"
+         }, 
+         {
+          "name": "OTROS GASTOS"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "FISCALES"
+         }, 
+         {
+          "name": "ORGANISMOS DE CONTROL"
+         }, 
+         {
+          "name": "MUNICIPALES"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "ACTIVOS NO CORRIENTES "
+         }, 
+         {
+          "name": "CUENTAS POR COBRAR"
+         }, 
+         {
+          "name": "COSTO DE VENTAS"
+         }
+        ], 
+        "name": "P\u00c9RDIDA POR MEDICI\u00d3N DE ACTIVOS NO FINANCIEROS AL VALOR RAZONABLE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ARRENDAMIENTOS"
+         }, 
+         {
+          "name": "POR PUBLICIDAD"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "SEGUROS"
+         }, 
+         {
+          "name": "MATERIALES Y SUMINISTROS"
+         }, 
+         {
+          "name": "SERVICIOS Y MANTENIMIENTO"
+         }, 
+         {
+          "name": "DEPRECIACI\u00d3N"
+         }, 
+         {
+          "name": "AMORTIZACIONES"
+         }, 
+         {
+          "name": "PROVISIONES"
+         }
+        ], 
+        "name": "GASTOS GENERALES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACTIVOS DE EXPLORACI\u00d3N Y EVALUACI\u00d3N MINERA"
+         }, 
+         {
+          "name": "PLUSVAL\u00cdA MERCANTIL (GOODWILL)"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "CUENTAS Y DOCUMENTOS POR COBRAR"
+         }, 
+         {
+          "name": "EXISTENCIAS"
+         }, 
+         {
+          "name": "PROPIEDADES  PLANTA Y EQUIPO"
+         }
+        ], 
+        "name": "GASTOS POR  DETERIORO"
+       }
+      ], 
+      "name": "GASTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ingresos financieros - Ingresos en operaciones de factoraje (factoring)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Dividendos  ", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Participaci\u00f3n en result de subsidiarias y asociadas bajo m\u00e9todo de valor patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Ingresos por participaciones en negocios conjuntos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Participaci\u00f3n en resultados de entidades relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ingresos financieros - Ganancia por instrumento financiero derivado", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Diferencia en Cambio (desajuste)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Descuentos obtenidos por pronto pago", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones disponibles para la venta", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Otras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Ganancia por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos ...- Rendimientos ganados / inversiones a ser mantenidas hasta vencimiento", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / pr\u00e9stamos otorgados (Intereses Moratorios)", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / instrumentos financieros representativos de derecho patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Devengado", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Por Devengar", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / dep\u00f3sitos en instituciones financieras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Rendimientos Ganados (moras e intereses cobrados)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos...- Otros ingresos ... /ingresos financieros  en medici\u00f3n a valor descontado (venta al cr\u00e9dito)", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Otros ingresos financieros", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ingresos financieros    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Activos biol\u00f3gicos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inversiones inmobiliarias", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inmuebles, maquinaria y equipo", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Intangibles", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n activos no financieros al valor razonable - Activo realizable   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado  / inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable - Activo inmovilizado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de intangibles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inversiones inmobiliarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inmuebles, maquinaria y equipo", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de deterioro de cuentas de activos inmovilizados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ... /cuentas de cobranza dudosa", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de existencias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de cuentas de valuaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Alquileres / equipos diversos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / terrenos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / equipo de transporte", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / edificaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos de gesti\u00f3n - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / donaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / reclamos al seguro", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / sudsidios gubernamentales ", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / dividendos de acciones preferentes ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / interes minoritario ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / resultados por exposici\u00f3n a la inflaci\u00f3n ( )", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / ingresos extraordinarios ( )", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros ingresos ...- Otros ingresos  de gesti\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inmuebles, maquinaria y equipo intangible", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ intangibles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos biol\u00f3gicos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones mobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos adquiridos en arrendamiento financiero", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros ingresos ...- Enajenaci\u00f3n de activos inmovilizados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Regalias", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Servicios en beneficio del personal", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Comisiones y corretajes", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Otros ingresos de gesti\u00f3n  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / relacionadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / terceros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Custodia", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES RECIBIDOS DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Titularizaci\u00f3n", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios no inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles no inscritos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Negocios Fiduciarios"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Administrados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Fondos de Inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Administraci\u00f3n de portafolio "
+         }
+        ], 
+        "name": "ADMINISTRACION DE RECURSOS DE TERCEROS"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones concedidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos  / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos, rebajas y bonificaciones obtenidos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones obtenidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen animal  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen vegetal", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n .../ costos de financiaci\u00f3n  inversiones inmobiliarias, edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, maquinaria y equipo, edificaciones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, ..., maquinarias y otros equipos de explotaci\u00f3n ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Costos de financiaci\u00f3n capitalizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / maquinarias y otros equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / otros equipos   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de seguridad", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producc\u00edon de activo ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inversiones inmobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Acreedores por  contra", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Producci\u00f3n de activo inmovilizado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Bienes en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores en garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES PROPIOS EN PODER DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Emisiones no colocadas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "EMISIONES NO COLOCADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Colaterales de las operaciones de reporto burs\u00e1til", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COLATERALES DE LAS OPERACIONES DE REPORTO BURSATIL"
+       }, 
+       {
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de existencias de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos sobre instrumentos financieros derivados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS CUENTAS DE ORDEN DEUDORAS"
+       }, 
+       {
+        "name": "Documentos Endosados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / envases", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / embalajes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / existencias de productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / otros productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos inmuebles en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ desechos y desperdicios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ sub productos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producc\u00edon almacenada - Variaci\u00f3n de productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos inmuebles terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de la producci\u00f3n almacenada", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, terceros   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas - Prestaci\u00f3n de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados - Productos manufacturados    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Productos terminados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ventas - Software", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas agropecuarias y pisc\u00edcolas   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas otras  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas de extracc\u00edon ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas inmuebles  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercaderias relacionadas / mercader\u00edas manufacturadas   ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / mercader\u00edas relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos  inmuebles terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos manufacturados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Productos terminados, relacionadas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos manufacturados ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos inmuebles terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / productos terminados terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas de extracc\u00edon", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas otras", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas inmuebles", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas  - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas     ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas  - Mercader\u00edas terceros", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Devoluciones sobre ventas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, terceros (Venta Diferida)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas terceros - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Mercader\u00edas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ventas (Ingresos)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /diferido", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /corriente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Impuesto a la renta   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - Utilidad", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - P\u00e9rdida", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Determinaci\u00f3n del resultado del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valor agregado - Valor agregado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valor agregado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Margen comercial - Margen comercial", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Margen comercial (Saldos intermediarios de gesti\u00f3n)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de servicios ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de bienes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Producci\u00f3n del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / corriente", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / diferida", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Participaciones de los trabajadores", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Ganancias y Perdidas", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Acreedoras por el contrario", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores entregados - Activos realizables entregados en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / reponsb. por LT o efectos desc. 00.2.000", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / LT/.o efectos descontados 00.1.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables /  bienes en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables / bienes en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cuentas por cobrar   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cartas fianza ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores entregados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a futuro", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Permutas financieras (swap)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compromisos sobre instrumentos financieros derivados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores recibidos - Activos realizables recibidos en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes de uso / bienes recibidos por embargos, 00.5.001", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes de uso / respons. por bienes recib. p, 00.6.001", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso muebles enseres, 00.4.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso equipos diversos, 00.4.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, 00.4.000", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, muebles y enseres, 00.3.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, equipos diversos, 00.3.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, 00.3.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes de uso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes recibidos en pr\u00e9stamo y custodia ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cuentas por cobrar ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cartas fianza", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Valores y bienes recibidos en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores recibidos ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden acreedoras - Diversas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Deudoras por contra ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Permutas financieras (swap) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a futuro ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Derechos sobre instrumentos financieros derivados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden deudoras - Diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / suministros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Bienes dados de baja ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en ejecuci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en tr\u00e1mite ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Contratos aprobados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden deudoras", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Orden", 
+    "root_type": "None"
+   }
+  ], 
+  "name": "Per\u00fa - PCGE 2010", 
+  "root_type": "None"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/ca_ca_en_chart_template_en.json b/setup/doctype/company/charts/ca_ca_en_chart_template_en.json
new file mode 100644
index 0000000..dedfb79
--- /dev/null
+++ b/setup/doctype/company/charts/ca_ca_en_chart_template_en.json
@@ -0,0 +1,399 @@
+{
+ "name": "Canada - Chart of Accounts for english-speaking provinces", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "OTHER NON-OPERATING INCOMES"
+       }, 
+       {
+        "name": "INTERESTS"
+       }
+      ], 
+      "name": "NON-OPERATING INCOMES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inside Sales", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "International Sales", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Non-Harmonized Provinces Sales", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Harmonized Provinces Sales", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "OTHER OPERATING INCOMES"
+       }
+      ], 
+      "name": "OPERATING INCOMES"
+     }
+    ], 
+    "name": "INCOMES"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "PREPAID EXPENSES"
+       }, 
+       {
+        "name": "INVESTMENTS HELD FOR TRADING"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ALLOWANCE FOR DOUBTFUL ACCOUNTS"
+         }, 
+         {
+          "name": "Customers Account"
+         }
+        ], 
+        "name": "ACCOUNTS RECEIVABLES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Stock In Hand", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Stock Delivered But Not Billed", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "STOCKS"
+       }, 
+       {
+        "name": "TREASURY OR TREASURY EQUIVALENTS"
+       }, 
+       {
+        "name": "CASH"
+       }, 
+       {
+        "name": "CERTIFICATES OF DEPOSITS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "GST receivable"
+         }, 
+         {
+          "name": "PST/QST receivable"
+         }, 
+         {
+          "name": "HST receivable"
+         }
+        ], 
+        "name": "TAXES RECEIVABLES"
+       }
+      ], 
+      "name": "CURRENT ASSETS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "INVESTMENTS AVAILABLE FOR SALE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACCUMULATED DEPRECIATIONS"
+         }
+        ], 
+        "name": "TANGIBLE ASSETS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PATENTS, TRADEMARKS AND COPYRIGHTS"
+         }
+        ], 
+        "name": "INTANGIBLE ASSETS"
+       }
+      ], 
+      "name": "NON-CURRENT ASSETS"
+     }
+    ], 
+    "name": "ASSETS"
+   }, 
+   {
+    "children": [
+     {
+      "name": "TRANSLATION ADJUSTMENTS"
+     }, 
+     {
+      "name": "CONTRIBUTED SURPLUS"
+     }, 
+     {
+      "name": "RETAINED EARNINGS"
+     }, 
+     {
+      "name": "PREMIUMS"
+     }, 
+     {
+      "name": "SHARE CAPITAL"
+     }, 
+     {
+      "name": "DIVIDENDS"
+     }
+    ], 
+    "name": "EQUITY"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "DEFERRED TAXES"
+       }, 
+       {
+        "name": "NON-CURRENT FINANCIAL DEBTS"
+       }, 
+       {
+        "name": "OTHER NON-CURRENT LIABILITIES"
+       }, 
+       {
+        "name": "PROVISIONS FOR PENSIONS AND OTHER POST-EMPLOYMENT ADVANTAGES"
+       }
+      ], 
+      "name": "NON-CURRENT LIABILITIES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Stock Received But Not Billed", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "LIABILITIES ASSETS HELD FOR TRANSFER"
+       }, 
+       {
+        "name": "CURRENT FINANCIAL DEBTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suppliers Account"
+         }
+        ], 
+        "name": "ACCOUNTS PAYABLES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Health Services Fund to pay", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Labour Health and Safety to pay", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Annuities - Employees Contribution", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Annuities - Employer Contribution", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "ANNUITIES TO PAY"
+           }, 
+           {
+            "children": [
+             {
+              "name": "PAP - Employer Contribution", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "PAP - Employee Contribution", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "PARENTAL INSURANCE PLAN TO PAY"
+           }, 
+           {
+            "name": "Provincial Income Tax", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Labour Standards to pay", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PROVINCIAL REVENU AGENCY"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "EI - Employees Contribution", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "EI - Employer Contribution", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "EMPLOYMENT INSURANCE TO PAY"
+           }, 
+           {
+            "name": "Federal Income Tax", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "CANADIAN REVENU AGENCY"
+         }
+        ], 
+        "name": "LABOUR TAXES TO PAY"
+       }, 
+       {
+        "children": [
+         {
+          "name": "HST to pay"
+         }, 
+         {
+          "name": "GST to pay"
+         }, 
+         {
+          "name": "PST/QST to pay"
+         }
+        ], 
+        "name": "TAXES PAYABLES"
+       }, 
+       {
+        "name": "STOCK LIABILITIES"
+       }, 
+       {
+        "name": "OTHER ACCOUNTS PAYABLES"
+       }
+      ], 
+      "name": "CURRENT LIABILITIES"
+     }
+    ], 
+    "name": "LIABILITIES"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "OTHER NON-OPERATING EXPENSES"
+       }, 
+       {
+        "name": "INTERESTS EXPENSES"
+       }
+      ], 
+      "name": "NON-OPERATING EXPENSES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "RESEARCH AND DEVELOPMENT EXPENSES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Salaries, wages and commissions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Labour Health and Safety", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Annuities", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Labour Standards", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Provincial Income Tax", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Parental Insurance", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Holidays", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Federal Income Tax", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Employment Insurance", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Health Services Fund", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "LABOUR EXPENSES"
+       }, 
+       {
+        "name": "SALES EXPENSES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Purchases in non-harmonized provinces", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "International Purchases", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Inside Purchases", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Purchases in harmonized provinces", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "COST OF GOODS SOLD"
+       }, 
+       {
+        "name": "OTHER OPERATING EXPENSES"
+       }, 
+       {
+        "name": "GENERAL EXPENSES"
+       }
+      ], 
+      "name": "OPERATING EXPENSES"
+     }
+    ], 
+    "name": "EXPENSES"
+   }
+  ], 
+  "name": "Account Chart CA EN", 
+  "parent_id": null
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/ca_ca_fr_chart_template_fr.json b/setup/doctype/company/charts/ca_ca_fr_chart_template_fr.json
new file mode 100644
index 0000000..582e399
--- /dev/null
+++ b/setup/doctype/company/charts/ca_ca_fr_chart_template_fr.json
@@ -0,0 +1,407 @@
+{
+ "name": "Canada - Plan comptable pour les provinces francophones", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "INT\u00c9R\u00caTS"
+       }, 
+       {
+        "name": "AUTRES PRODUITS NON LI\u00c9S \u00c0 L'EXPLOITATION"
+       }
+      ], 
+      "name": "PRODUITS NON LI\u00c9S \u00c0 L'EXPLOITATION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "AUTRES PRODUITS D'EXPLOITATION"
+       }, 
+       {
+        "name": "Ventes avec des provinces non-harmonis\u00e9es", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ventes", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ventes avec des provinces harmonis\u00e9es", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ventes \u00e0 l'\u00e9tranger", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "PRODUITS D'EXPLOITATION"
+     }
+    ], 
+    "name": "PRODUITS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "FRAIS SUR VENTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Achats dans des provinces harmonis\u00e9es", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Achats dans des provinces non-harmonis\u00e9es", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Achats \u00e0 l'\u00e9tranger", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Achats", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "CO\u00dbT DES PRODUITS VENDUS"
+       }, 
+       {
+        "name": "AUTRES FRAIS D'EXPLOITATION"
+       }, 
+       {
+        "name": "FRAIS G\u00c9N\u00c9RAUX"
+       }, 
+       {
+        "name": "FRAIS DE RECHERCHE ET D\u00c9VELOPPEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Vacances", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Imp\u00f4t f\u00e9d\u00e9ral", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Assurance Emploi", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Fonds des services de sant\u00e9", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Assurance parentale", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sant\u00e9 et s\u00e9curit\u00e9 au travail", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Salaires", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Rentes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Imp\u00f4t provincial", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Normes du travail", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SALAIRES ET CHARGES SOCIALES"
+       }
+      ], 
+      "name": "CHARGES D'EXPLOITATION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "INT\u00c9R\u00caTS D\u00c9BITEURS"
+       }, 
+       {
+        "name": "AUTRES FRAIS NON LI\u00c9S \u00c0 L'EXPLOITATION"
+       }
+      ], 
+      "name": "FRAIS NON LI\u00c9S \u00c0 L'EXPLOITATION"
+     }
+    ], 
+    "name": "CHARGES"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "BREVETS, MARQUES DE COMMERCE ET DROITS D'AUTEURS"
+         }
+        ], 
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "name": "PLACEMENTS DISPONIBLES \u00c0 LA VENTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "AMORTISSEMENTS CUMUL\u00c9S"
+         }
+        ], 
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }
+      ], 
+      "name": "ACTIFS NON-COURANTS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Stock", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Stock exp\u00e9di\u00e9 non-factur\u00e9", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "STOCKS"
+       }, 
+       {
+        "name": "TR\u00c9SORERIE OU \u00c9QUIVALENTS DE TR\u00c9SORERIE"
+       }, 
+       {
+        "name": "ENCAISSE"
+       }, 
+       {
+        "name": "CERTIFICATS DE D\u00c9P\u00d4TS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "TVP/TVQ \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "TVH \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "TPS \u00e0 recevoir", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "IMP\u00d4TS \u00c0 RECEVOIR"
+       }, 
+       {
+        "name": "FRAIS PAY\u00c9S D'AVANCE"
+       }, 
+       {
+        "name": "PLACEMENTS D\u00c9TENUS \u00c0 DES FINS DE TRANSACTION"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PROVISION POUR CR\u00c9ANCES DOUTEUSES"
+         }, 
+         {
+          "name": "Comptes clients"
+         }
+        ], 
+        "name": "COMPTES CLIENTS"
+       }
+      ], 
+      "name": "ACTIFS COURANTS"
+     }
+    ], 
+    "name": "ACTIF"
+   }, 
+   {
+    "children": [
+     {
+      "name": "AUTRES \u00c9L\u00c9MENTS DU R\u00c9SULTAT GLOBAL"
+     }, 
+     {
+      "name": "B\u00c9N\u00c9FICES NON R\u00c9PARTIS"
+     }, 
+     {
+      "name": "PRIMES"
+     }, 
+     {
+      "name": "CAPITAL-ACTIONS"
+     }, 
+     {
+      "name": "\u00c9CARTS DE CONVERSION"
+     }, 
+     {
+      "name": "SURPLUS D'APPORT"
+     }, 
+     {
+      "name": "DIVIDENDES"
+     }
+    ], 
+    "name": "CAPITAUX PROPRES"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "TPS \u00e0 payer", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "TVH \u00e0 payer", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "TVP/TVQ \u00e0 payer", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "IMP\u00d4TS \u00c0 PAYER"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Stock re\u00e7u non factur\u00e9", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "PASSIFS DE STOCK"
+       }, 
+       {
+        "name": "AUTRES COMPTES CR\u00c9DITEURS"
+       }, 
+       {
+        "name": "PASSIFS LI\u00c9S AUX ACTIFS D\u00c9TENUS EN VUE DE LEUR CESSION"
+       }, 
+       {
+        "name": "DETTES FINANCI\u00c8RES COURANTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Comptes fournisseurs"
+         }
+        ], 
+        "name": "FOURNISSEURS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4t f\u00e9d\u00e9ral sur les revenus", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "AE - Contribution de l'employeur", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "AE - Contribution des employ\u00e9s", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "ASSURANCE EMPLOI \u00c0 PAYER"
+           }
+          ], 
+          "name": "AGENCE DU REVENU DU CANADA"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Rentes - Contribution de l'employeur", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Rentes - Contribution des employ\u00e9s", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "RENTES \u00c0 PAYER"
+           }, 
+           {
+            "name": "Normes du Travail \u00e0 payer", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Imp\u00f4t provincial sur les revenus", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "AP - Contribution des employ\u00e9s", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "AP - Contribution de l'employeur", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "ASSURANCE PARENTALE \u00c0 PAYER"
+           }, 
+           {
+            "name": "Fond des Services de Sant\u00e9 \u00e0 payer", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sant\u00e9 et S\u00e9curit\u00e9 au Travail \u00e0 payer", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AGENCE DU REVENU PROVINCIAL"
+         }
+        ], 
+        "name": "IMP\u00d4TS LI\u00c9S AUX SALAIRES \u00c0 PAYER"
+       }
+      ], 
+      "name": "PASSIFS COURANTS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMP\u00d4TS DIFF\u00c9R\u00c9S"
+       }, 
+       {
+        "name": "PROVISIONS POUR RETRAITES ET AUTRES AVANTAGES POST\u00c9RIEURS \u00c0 L'EMPLOI"
+       }, 
+       {
+        "name": "DETTES FINANCI\u00c8RES NON-COURANTES"
+       }, 
+       {
+        "name": "AUTRES PASSIFS NON-COURANTS"
+       }
+      ], 
+      "name": "PASSIFS NON-COURANTS"
+     }
+    ], 
+    "name": "PASSIF"
+   }
+  ], 
+  "name": "Account Chart CA FR"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/cl_cl_chart_template.json b/setup/doctype/company/charts/cl_cl_chart_template.json
new file mode 100644
index 0000000..de3ffab
--- /dev/null
+++ b/setup/doctype/company/charts/cl_cl_chart_template.json
@@ -0,0 +1,11887 @@
+{
+ "name": "Chile - Plan de Cuentas", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Envases ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Materia Prima ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Materiales y Suministros Directos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio del personal", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad por labores", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ uniformes al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ atenciones al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ accident. trab. y enferm. prof", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ asignaci\u00f3n familiar LEY 25129", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ gastos recreativos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad del personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ bonificaci\u00f3n por riesgo de caja ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de prestaciones salud ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de pensiones ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ seguros de vida LEY 49226", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio al personal ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos adicionales a las remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n de empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / asignaci\u00f3n familiar ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / trabajos eventuales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones extraordinarias ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / practicas pre-profecionales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / subsidios por enfermedad ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / aguinaldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n obreros ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Otras remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / sueldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / salarios ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / remuneraciones en especie ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Mano de Obra Directa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Producci\u00f3n - Otros Costos Directos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Mano de Obra Indirecta", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Materiales Auxiliares", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Repuestos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Suministros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Materiales y Suministros Indirectos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - gastos indirectos / Otros Gastos de Producci\u00f3n Indirectos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Otros Gastos de Producci\u00f3n Indirectos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Gastos de Producci\u00f3n Indirectos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de Producci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de ventas - Publicidad ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Alquiler de locales y servicios basicos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones / sueldos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / comisiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / remuneraciones en especie", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ accident. trab., enferm. prof y otros seguros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ movilidad y refrigerios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ atenciones al personal y gastos recreativos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Gastos adicionales a las remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / asignaci\u00f3n familiar y bonificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / vacaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / practicas pre-profecionales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / horas extras", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Honorarios profecionales ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / embalajes y otros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / telecomunicaciones (telefono, internet,...)", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes aereos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras cargas de personal ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Mantenimiento de inmuebles, maquinarias y equipos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Otros gastos de ventas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de ventas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de administraci\u00f3n - Gastos varios ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Cotizaci\u00f3n, licitaci\u00f3n, donaciones y otros ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraci\u00f3n al directorio ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / telefonos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / practicas pre-profecionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / vacaciones empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / aguinaldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / gratificaci\u00f3n de empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / horas extras empleados      ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraciones en especie ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / sueldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / otras cargas de personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes aereos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / movilidad al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / atenciones al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / refrigerio al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / asignaci\u00f3n familiar ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / envio correspondencia ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / bonificaci\u00f3n por riesgo de caja ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Depreciaci\u00f3n y Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Penalidades, tributos y seguros  ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / gastos notariales, registro y judicial", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / honorarios profesionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / transferencias de fondos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / mantenimiento, ctas bancarias ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / servicios de seguridad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / otros servicios bancarios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / talonarios de cheques ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Publicidad, representaci\u00f3n y otros servicios de personal", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de administraci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses moratorios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / pago tributos y contribuciones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / comisi\u00f3n tarjeta de credito ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / gastos cheques devueltos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses SUNAT ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses de leasing", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Otras cargas financieras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses de pagares ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes compensatorio - por cartera", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / perdida por diferencia de cambio", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / descuentos concedidos por pronto pago", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses y gastos de prestamo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / devolucion de documentos de cobranza", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes por Letras en descuento", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses moratorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses compensatorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses,compra,mercader\u00eda ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses por sobregiros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / gastos por atrazo, cuotas bancarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Interes y gastos financieros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros    ", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Centros de Costo", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital - Capital social / acciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital - Capital social / participaciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital - Capital social ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital - Acciones en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Capital (Patrimonio neto)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PASIVOS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones a ser mantenidas hasta el vencimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones financieras representativas de derecho patrimonial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inversiones mobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / concesiones, licencias y otros derechos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / otros activos intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de intangibles  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Inversiones inmobiliarias  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de activo inmovilizado ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PATRIMONIO"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Ingresos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Ingresos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Subsidios recibidos diferidos ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Costos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Costos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, resultados  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Impuesto a la renta diferido ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / patrimonio ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / resultados ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Ganancia en venta con arrendamiento financiero paralelo ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Pasivo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ gerentes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ directores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / letras por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - ** Cuentas por cobrar comerciales, relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, relacionadas / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / reclamaciones a terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / intereses, r\u00e9galias y dividendos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / venta de activo inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / letras por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar comerciales, terceros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Estimaci\u00f3n de cuentas de cobranza dudosa", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Agotamiento acumulado / agotamiento de reservas de recursos extra\u00edbles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Agotamiento acumulado  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n, ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n, costos de exploraci\u00f3n y desarrollo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Amortizaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n,costo de financiacion, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipos diversos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipo de transporte ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, muebles y enseres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento financiero, inversiones inmobiliarias, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento ..., inmuebles, maquinaria y equipo de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Depreciaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones - Provisi\u00f3n para reestructuraciones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Otras provisiones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para litigios   ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para garant\u00edas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para gastos de responsabilidad social ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Provisiones    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / matriz", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / sucursales ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / asociadas ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / sucursales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / sucursales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Dividendos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, otras  ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas / otras cuentas por pagar diversas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, otras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, matriz", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, sucursales", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pasivo por compra de activo inmovilizado ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, relacionadas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Unidades de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "DISPONIBLES PARA LA VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones mantenidas hasta el vencimiento ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pr\u00e9stamos y partidas a cobrar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acciones y participaciones"
+         }
+        ], 
+        "name": "INVERSIONES MANTENIDAS HASTA EL VENCIMIENTO "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar a terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar al originador", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y Documentos a cobrar a terceros"
+         }
+        ], 
+        "name": "PRESTAMOS Y PARTIDAS A COBRAR "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Forward", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Futuros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Opciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Derivados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "A VALOR RAZONABLE CON CAMBIOS EN RESULTADOS"
+       }, 
+       {
+        "name": "Caja y Bancos - Valores a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y Bancos.../ BCO. CTA CTE PAB"
+         }
+        ], 
+        "name": "Caja y Bancos - Bancos"
+       }, 
+       {
+        "name": "Caja y Bancos - Recaudaciones a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / valor razonable  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable ...- Inversiones al valor razonable ** Inversiones mantenidas para negociaci\u00f3n     ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Fondos fijos / caja menuda 01 PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Activos financieros / compromiso de compra", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado /valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero eh", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo USD"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Inversiones disponibles para la venta", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones al valor razonable y disponibles para la venta ** Inversiones financieras", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar...- Letras por cobrar / en cartera", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en  cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / sucursales", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / matriz ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros ... / no emitidas, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por... - Facturas, boletas y otros .../ no emitidas, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Facturas, boletas y otros comprobantes por cobrar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Accionistas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Intereses Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Alquileres Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Anticipo al Personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar   ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Cobranza dudosa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Comisiones por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar a terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Dividendos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RENDIMIENTOS POR COBRAR"
+       }, 
+       {
+        "name": "DERECHOS POR COMPROMISO DE RECOMPRA"
+       }, 
+       {
+        "name": "ANTICIPO A CONSTRUCTOR POR AVANCE DE OBRA"
+       }, 
+       {
+        "name": "ANTICIPO COMITENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Al Originador", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Puestos inactivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por servicios burs\u00e1tiles"
+         }, 
+         {
+          "name": "Asesor\u00eda"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contrato de Underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Extraburs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Por  Manejo de Fideicomisos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Contratos de Administraci\u00f3n Portafolio de Terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Fondos Administrados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Encargos Fiduciarios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por comisiones de administraci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por  administraci\u00f3n y manejo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores Materializados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Libro de Acciones y Accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores Desmaterializados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por Custodia y Conservaci\u00f3n de Valores"
+         }, 
+         {
+          "name": "Otras comisiones"
+         }
+        ], 
+        "name": "COMISIONES POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DOCUMENTOS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Facturas, boletas y otros comprobantes por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Cuotas Iniciales", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Adelantos o Separaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cartera ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cobranza ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / Deudores Varios"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Incobrables"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }, 
+       {
+        "name": "PROVISIONES PARA CUENTAS POR COBRAR"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PRODUCTOS TERMINADOS"
+       }, 
+       {
+        "name": "PRODUCTOS EN PROCESO"
+       }, 
+       {
+        "name": "MATERIA PRIMA"
+       }, 
+       {
+        "name": "MATERIALES Y SUMINISTROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / suscripciones por cobrar a socios o accionistas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Accionistas o (socios) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / adelanto de dietas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Personal / entregas a rendir cuenta", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / otras cuentas por cobrar al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Personal", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / directores ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / personal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / gerentes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Diversas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "PROVISI\u00d3N POR DETERIORO DE EXISTENCIAS"
+       }
+      ], 
+      "name": "Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y  equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Venta de activo inmovilizado ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos /  dividendos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses , asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, sucursal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, r\u00e9galias y dividendos / intereses", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Interes\u00e9s, regal\u00edas y dividendos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / Concesiones y Franquicias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVOS ADQUIRIDOS EN ARRENDAMIENTO FINANCIERO"
+       }, 
+       {
+        "name": "CONSTRUCCIONES EN CURSO "
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PLUSVAL\u00cdA MERCANTIL (Goodwill)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROPIEDADES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Programas de computaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reservas de recursos extra\u00edbles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTANGIBLES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades"
+         }, 
+         {
+          "name": "Plusval\u00eda mercantil (Goodwill) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS NO CORRIENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas a Largo Plazo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Activos por instrumentos financieros derivados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros primarios   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / instrumento de cobertura", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / cartera de negociaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros derivados  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Activos por instrumentos financieros   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / entregas a rendir cuenta a terceros  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas a Largo Plazo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / reclamaciones a terceros ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVO NO CORRIENTE DISPONIBLE PARA LA VENTA"
+       }, 
+       {
+        "name": "UNIDADES DE PARTICIPACION"
+       }, 
+       {
+        "name": "ACTIVO POR IMPUESTO CORRIENTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / dep\u00f3sitos en garant\u00eda por alquileres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones no financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / otros dep\u00f3sitos en garant\u00eda ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Venta de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / Compa\u00f1\u00edas aseguradoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / transportadoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / tributos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / otras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / servicios p\u00fablicos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Reclamaciones a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Intereses, regal\u00edas y dividendos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Servicios y otros contratados por anticipado - Interes\u00e9s ** Costos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo por impuesto diferido  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ACTIVO POR IMPUESTO DIFERIDO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuota patrimonial bolsa de valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuota patrimonial bolsa de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por reporto", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por operaciones burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Dep\u00f3sitos en Garant\u00eda"
+         }
+        ], 
+        "name": "OTROS ACTIVOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Mantenimiento de activos inmovilizados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Otros gastos contratados por anticipado ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "ACTIVOS DE EXPLORACION Y EVALUACION MINERA"
+       }, 
+       {
+        "name": "DERECHOS FIDUCIARIOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Primas pagadas por opciones ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos en arrendamiento financiero", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos de exploraci\u00f3n y evaluaci\u00f3n minera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DEPRECIACION ACUMULADA"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Alquileres ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Seguros ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AMORTIZACION ACUMULADA"
+       }
+      ], 
+      "name": "Servicios y otros contratados por anticipado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Caja y bancos - Caja / efectivo USD ($)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y bancos - Caja / efectivo PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Caja", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y .../ BCO. CTA CTE PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Cuentas corrientes en instituciones finacieras  / cuentas corrientes operativas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y ...- Cuentas corrientes en instituciones financieras / cuentas corrientes para fines espec\u00edficos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Cuentas corrientes en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Fondos fijos / caja chica 01 PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Fondos fijos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos a plazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos de ahorro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Dep\u00f3sitos en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Certificados bancarios / certificados bancarios ** otros equivalentes de efectivos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Certificados bancarios / otros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Certificados bancarios **Otros equivalentes de efectivos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / BN CTA DETRACCIONES PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / fondos sujetos a restricci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cajas y bancos - Fondos sujetos a restricci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Caja y bancos - Efectivo en tr\u00e1nsito ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Banco Central del Ecuador"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fondos rotativos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja"
+         }, 
+         {
+          "name": "Instituciones financieras"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Ahorros Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta Ahorros En el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras Instituciones Financieras"
+         }
+        ], 
+        "name": "ACTIVO DISPONIBLE"
+       }
+      ], 
+      "name": "Caja y bancos  (Activo disponible y exigible) - Efectivo y equivalentes de efectivos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos manufacturados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos de extracci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias primas - Materias primas desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Salarios por Pagar / Retenciones a Depositar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Sueldos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos manufacturados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Salarios por Pagar / Provisi\u00f3n para Sueldo Anual Complementario", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Cargas Sociales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos agropecuarios y pisc\u00edcolas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materias primas   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras Cuentas por Pagar / Cobros por Adelantado", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Acreedores Varios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Honorarios Directores y S\u00edndicos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / lubricantes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / combustibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / energ\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / otros suministros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Suministros ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / materiales auxiliares", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / suministros    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / repuestos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares, suministros y repuestos desvalorizados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Materiales auxiliares, suministros y  repuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n para juicios Pendientes", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases y embalajes - Envases y embalajes desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Envases y embalajes - Embalajes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Envases y embalajes - Envases", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Envases y embalajes     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inversi\u00f3n inmoviliaria", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipos diversos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, herramientas y unidades de reemplazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, patentes y propiedad industrial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, reservas de recursos extra\u00edbles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos no corrientes mantenidos para la venta    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, costo - Categoria de productos 01", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Mercade...- Mercader\u00edas .../ Mercader\u00edas manufacturadas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Mercader\u00edas - Mercader\u00edas manufacturadas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas manufacturadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / recursos extra\u00eddos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / mercader\u00edas manufacturadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercaderias desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen vegetal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen animal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Otras mercader\u00edas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Mercader\u00edas  (Activo realizable)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Productos terminados - Productos de extracci\u00f3n terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Anticipos de Clientes"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen animal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos terminados - Productos agropecuarios y pisc\u00edcolas terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Proveedores"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / otros productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos inmuebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados - Productos terminados desvalorizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos terminados - Productos inmuebles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Productos manufacturados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Otros productos terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Costos de financiaci\u00f3n, productos terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Existencias de servicios terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Participaciones de los trabajadores en utilidades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Beneficios a empleados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aportes y descuentos al IESS", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondo reserva del IESS", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES PATRONALES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acreedores Varios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por administraci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras comisiones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dividendos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Comisiones por pagar ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Operaciones Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por custodia", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deuda Sector No Financiero"
+         }
+        ], 
+        "name": "PASIVO NO FINANCIERO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligaciones por Arrendamiento Financiero ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "A valor razonable con cambios en resultados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compa\u00f1\u00edas relacionadas / vinculadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Administradores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Accionistas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Relacionadas"
+         }, 
+         {
+          "name": "Pasivos por compra de activos no corrientes"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones por contratos de underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Porci\u00f3n corriente de deuda a largo plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sobregiros bancarios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Obligaciones financieras"
+         }, 
+         {
+          "name": "Otros pasivos financieros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras cuentas y documentos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Anticipos recibidos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y documentos por pagar"
+         }
+        ], 
+        "name": "PASIVOS FINANCIEROS"
+       }, 
+       {
+        "name": "OTROS PASIVOS CORRIENTES"
+       }, 
+       {
+        "name": "ACREEDORES POR INTERMEDIACION            "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Litigios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Indemnizaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Obligaciones Judiciales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SANCIONES Y MULTAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Impuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Retenciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Contribuciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES TRIBUTARIAS"
+       }
+      ], 
+      "name": "Productos  terminados", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pasivo Circulante / Debentures Emitidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / subproductos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos, desechos y desperdicios - Subproductos, desechos y desperdicios desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo Circulante / Intereses a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Obligaciones a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Prestamos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Adelantos en Cuenta Corriente", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Desechos y desperdicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses diferidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pasivos por impuestos diferidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PASIVOS DIFERIDOS"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Subproductos ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subproductos, desechos y desperdicios   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DEUDA SECTOR FINANCIERO"
+       }, 
+       {
+        "name": "Productos en proceso - Productos extra\u00eddos en proceso de transformaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / costos de financiaci\u00f3n, productos en proceso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / otros productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / existencias de servicios en proceso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en proceso - Productos en proceso desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto sobre los Bienes Personales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Deudas Fiscales / Monotributo a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / ITBMS a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / Impuesto sobre la Renta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Productos en proceso - Productos inmuebles en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Costos de financiaci\u00f3n, productos en proceso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto a la Ganancia M\u00ednima Presunta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo   ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable   ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo    ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen animal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos en proceso - Productos agropecuarios y pisc\u00edcolas en proceso", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos en proceso - Otros productos en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Productos en proceso de manufactura", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Existencias de servicios en proceso", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos en  proceso ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Existencias por recibir - Mercader\u00edas / Categoria de productos 01", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Mercader\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materias primas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materiales auxiliares, suministros y repuesto", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / mercader\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materias primas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Existencias por recibir desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materiales auxiliares, suministros y repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Existencias por recibir - Envases y embalajes", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Existencias por recibir   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materias primas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / mercader\u00edas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Existencias por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / costos de financiaci\u00f3n, productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / existencias de servicios en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / otros productos en proceso ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / otros productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / costos de financiaci\u00f3n, productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos inmuebles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos terminados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / suministros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / repuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / materiales auxiliares ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Envases y embalajes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos manufacturados    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / subproductos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Subproductos, desechos y desperdicios ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de existencias    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros activos - Bienes de arte y cultura / obras de arte ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / biblioteca", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / otros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Bienes de arte y cultura ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros activos - Diversos / otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes recibidos en pago (adjudicados y realizables) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes entregados en comodato ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / monedas y joyas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Diversos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACUMULADOS"
+       }, 
+       {
+        "name": "UTILIDAD (PERDIDA) DEL EJERCICIO"
+       }, 
+       {
+        "name": "RESULTADOS ACUMULADOS POR APLICACI\u00d3N DE LAS NIIF POR PRIMERA VEZ"
+       }
+      ], 
+      "name": "Otros activos    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / maquinaria en montaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inversiones inmobiliarias, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / otros activos en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / construcciones en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / inversi\u00f3n inmobiliaria en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaci...", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmue...- Constru.../ costo de financiaci\u00f3n, inmuebles, maquinaria y ..., C de F, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inmuebles maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / adaptaci\u00f3n de terrenos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipos diversos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / herramientas y unidades de reemplazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / muebles y enseres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Unidades por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / muebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / enseres", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Muebles y enseres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos no motorizados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos motorizados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - ** Unidades de transporte ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / herramientas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / unidades de reemplazo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Terrenos / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos .., costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / otros equipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo para procesamiento de informaci\u00f3n (de c\u00f3mputo) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de seguridad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Equipos diversos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de financiaci\u00f3n, almacenes", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / almacenes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de financiaci\u00f3n, edificaciones para producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones para producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de financiaci\u00f3n, instalaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / instalaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones administrativas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Edificaciones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inmuebles, maquinaria y equipo   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos adquiridos en arrendamiento financiero   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Capital / Dividendos a Distribuir en Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costos de financiaci\u00f3n, inversiones inmobliarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Edificaciones /  edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Edificaciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / rurales, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / rurales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / urbanos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "PATRIMONIO DE LOS NEGOCIOS FIDUCIARIOS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Patrimonio del fondo colectivo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patrimonio del fondo administrado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PATRIMONIO DE LOS FONDOS DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PAGADO"
+       }, 
+       {
+        "name": "ACCIONES EN TESORER\u00cdA"
+       }, 
+       {
+        "name": "FONDO PATRIMONIAL"
+       }
+      ], 
+      "name": "Inversiones inmobiliarias   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ instrumentos financieros representativos de derecho ..., acuerdo de compra ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ inversiones a ser mantenidas hasta el vencimiento, acuerdo de compra", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Desvalorizaci\u00f3n de inversiones mobiliarias ** acuerdos de compra ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por el sistema financiero", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por las empresas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a ../ instrumentos ., otros t\u00edtulos representativos de deuda **valores emitidos por otras entidades", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos o garantizados por el estado ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Inversiones a ser mantenidas hasta el vencimiento / instrumentos financieros representativos de deuda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Inversiones a ser mantenidas hasta el vencimiento", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ otros t\u00edtulos representativos de patrimonio, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de .../ otros t\u00edtulos representativos de patrimonio, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho patrimonial / otros t\u00edtulos representativos de patrimonio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n ..., participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ participaciones en asociaciones en participaci\u00f3n y consorcios", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de participaci\u00f3n de fondos mutuos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ **certificados de participaci\u00f3n de fondos de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones representativas de capital social, comunes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos .../ acciones representativas de capital social, preferentes, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ acciones representativas de capital social, preferentes ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de suscripci\u00f3n preferente", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Instrumentos financieros representativos de derecho patrimonial ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones mobiliarias (Activo inmovilizado)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Impuesto a la renta diferido", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, patrimonio   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Utilidades y P\u00e9rdidas del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en producci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos biol\u00f3gicos     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "OTRAS RESERVAS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / licencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / concesiones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / otros derechos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Concesiones, licencias y otros derechos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / marcas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / patentes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Patentes y propiedad industrial ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Programas de computadora (software) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Otros activos intangibles / otros activos intangibles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Otros activos intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "RESERVA LEGAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserva por valuaci\u00f3n Propiedades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reserva por Valuaci\u00f3n Activos Financieros Disponibles para la Venta", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RESERVA POR VALUACI\u00d3N"
+       }, 
+       {
+        "name": "RESERVA FACULTATIVA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / madera  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Reservas de recursos extra\u00edbles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles - Plusval\u00eda mercantil / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Intangibles - Plusval\u00eda mercantil ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Intangibles   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar diversas, terceros - D\u00e9positos recibidos en garant\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos adquiridos en arrendamientos financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones inmoviliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / intangibles ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por compra de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Pasivos financieros, compromiso de venta ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "INGRESOS DE ACTIVOS POR IMPUESTOS DIFERIDOS"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Reclamaciones de terceros ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / otras cuentas por pagar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / donaciones condicionadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / subsidios gubernamentales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros primarios  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, cartera de negociaci\u00f3n ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, instrumentos de cobertura ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros derivados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por instrumentos financieros   ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, terceros ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Directores / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Directores / dietas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Gerentes ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "UTILIDAD POR OPERACIONES DESCONTINUADAS"
+       }, 
+       {
+        "name": "OTRAS UTILIDADES EN VENTAS"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE VALORES"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE PROPIEDAD"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Largo Plazo", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Corto Plazo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / dividendos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Accionistas (o socios) ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar a los accionistas(socios), directores y gerentes ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / contratos de arrendamiento financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos emitidos   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos titulizados  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, otras obligaciones ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, instituciones financieras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, otras entidades ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / pr\u00e9stamos de instituciones financieras y otras entidades ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, pagar\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, letras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, facturas conformadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, otras obligaciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, bonos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / otros instrumentos  financieros por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / otras entidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / instituciones financieras    ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Pr\u00e9stamos de instituciones financieras y otras entidades   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero a Largo Plazo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero parte Corriente", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Contratos de arrendamientos financiero  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos emitidos  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos titulizados ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / otras obligaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Obligaciones emitidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / pagar\u00e9s ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / letras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / facturas conformadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / bonos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / otras obligaciones financieras  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Otros instrumentos financieros por pagar    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Obligaciones financieras - Pr\u00e9stamos con compromisos de recompra ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "OBLIGACIONES FINANCIERAS"
+       }, 
+       {
+        "name": "ACTIVOS BIOL\u00d3GICOS"
+       }, 
+       {
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "ACTIVOS NO CORRIENTES"
+       }
+      ], 
+      "name": "Obligaciones financieras  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Honorarios por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Anticipos a proveedores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inscripciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mantenimiento de Inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Comisiones en operaciones ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS BURS\u00c1TILES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Portafolio de terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por representaci\u00f3n de obligacionistas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR PRESTACI\u00d3N DE SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERMEDIACI\u00d3N DE VALORES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores materializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y liquidaci\u00f3n de valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO\n        COMPENSACI\u00d3N Y LIQUIDACI\u00d3N"
+       }, 
+       {
+        "name": "OTRAS COMISIONES GANADAS"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Letras por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, terceros - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ganancia Venta de Activo Fijo", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Recupero de Deudores Incobrables", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta Inversiones Permanentes", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Donaciones obtenidas, ganandas, percibidas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, sucursales ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta p\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INGRESOS POR ESTRUCTURACI\u00d3N"
+       }, 
+       {
+        "name": "INGRESOS POR ASESORIA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, otros", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, matriz", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobiernos regionales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Otros costos administrativos e intereses ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Administradoras de fondos de pensiones (AFP)", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Certificados tributarios ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto de alcabala ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto predial ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al rodaje", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al patrimonio vehicular ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los juegos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a las apuestas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los espect\u00e1culos p\u00fablicos no deportivos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / impuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios administrativos o derechos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, estacionamiento de veh\u00edculos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, licencia de apertura de establecimientos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios p\u00fablicos o arbitrios ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, transporte p\u00fablico ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / tasas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Gobiernos locales / contribuciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes ...- Gobiernos Locales (Predial, Licencias, tributos, impuestos, contribuciones, tasas y arbitrios,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENCICO ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ONP", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ESSALUD", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENATI", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / otras instituciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Instituciones p\u00fablicas (ESSALUD, ONP,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Gobierno central / impuesto selectivo al consumo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, tasas por la prestaci\u00f3n de servicios p\u00fablicos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, regal\u00edas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los dividendos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a las transacciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los juegos de casino y tragamonedas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, otros impuestos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto temporal a los activos netos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / **otros impuestos (ITF,...) y contraprestaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon hidroenerg\u00e9tico ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon petroleo ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon gas\u00edfero ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon minero  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon forestal ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon pesquero ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / canon", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - servicios prestados por no domiciliados   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de percepciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - cuenta propia ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas (IGV)   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de cuarta categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de no domiciliados ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de tercera categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, otras retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de quinta categor\u00eda ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos arancelarios ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos aduaneros por ventas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobierno central", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta propia ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta de terceros ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Empresas prestadoras de servicios de salud (EPS)", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Tributos, **contraprestaciones  y aportes al sistema de pensiones y de salud por pagar  (Pasivo)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Comisiones gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajodores por pagar / pensiones y jubilaciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / adelanto de compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar - Beneficios sociales de los trabajadores por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Interese sobre Inversiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Honorarios gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Categoria de productos 01", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / sueldos y salarios por pagar   ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / gratificaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / vacaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / comisiones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / remuneraciones en especie por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar  - Remuneraciones por pagar   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Intereses gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Alquileres gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta de Acciones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "INTERESES Y RENDIMIENTOS"
+       }, 
+       {
+        "name": "UTILIDAD EN CAMBIO"
+       }, 
+       {
+        "name": "DIVIDENDOS"
+       }, 
+       {
+        "name": "UTILIDAD POR VALUACI\u00d3N DE ACTIVOS FINANCIEROS A VALOR RAZONABLE"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Otras remuneraciones y participaciones por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Participaci\u00f3n de los trabajadores por pagar ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Remuneraciones y participaciones por pagar", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / ingresos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / utilidades acumuladas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - Utilidades no distribuidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / p\u00e9rdidas acumuladas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / gastos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - P\u00e9rdidas acumuladas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados acumulados     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reserva legal - Contractuales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Estatutarias ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Reinversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Facultativas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Legal ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Otras reservas ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Reserva legal    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente de revaluaci\u00f3n - Participaci\u00f3n en excedente de revaluaci\u00f3n, inversiones en entidades relacionadas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / intangibles ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Exdecente de revaluaci\u00f3n / inversiones inmobiliarias  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / inmuebles, maquinaria y equipos ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n, acciones liberadas recibidas  ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Excedente de revaluaci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultados no realizados - Instrumentos financieros, cobertura de flujo de efectivo ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados no realizados - Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Resultados no realizados - Diferencia en cambio de inversiones permanentes en entidades extranjeras ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta,compra o venta convencional fecha d liqui", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados no realizados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de Publicidad y Propaganda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Salarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses por cr\u00e9ditos de bancos y otras Instituciones financieras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intereses por otros pasivos no financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERESES CAUSADOS"
+       }, 
+       {
+        "name": "Gastos en Servicios P\u00fablicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Mercader\u00edas Vendidas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Depreciaci\u00f3n de Activo Fijo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Cargas Sociales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos Bancarios", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Impuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en Valuaci\u00f3n de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN VALUACI\u00d3N DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en cambio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN CAMBIO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Arrendamiento operativo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ARRENDAMIENTO OPERATIVO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores Desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y Liquidaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores Materializados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO COMPENSACI\u00d3N Y LIQUIDACI\u00d3N \n      "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras Comisiones Pagadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS COMISIONES PAGADAS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tlies", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COMISIONES PAGADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Administraci\u00f3n de portafolio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por operaciones descontinuadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta activos biol\u00f2gicos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Propiedad ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDAS EN VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta P\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS POR ESTRUCTURACI\u00d3N"
+       }
+      ], 
+      "name": "Acciones de inversi\u00f3n   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Beneficios sociales de los trabajadores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS DE PERSONAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios de terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS DE TERCEROS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Honorarios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "HONORARIOS"
+       }, 
+       {
+        "name": "Capital adicional - Reducciones de capital pendientes de formalizaci\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Capital adicional - Primas (descuento) de acciones  ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Gastos en Siniestros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / reservas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / aportes ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / utilidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / acreencias ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital adicional - Capitalizaciones en tr\u00e1mite ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida Venta Activo Fijo", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Capital adicional ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inventarios - Mercancias / Categoria de productos 01", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inventarios - Mercancias"
+         }, 
+         {
+          "name": "Materias primas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inventarios - Mercancias en Tr\u00e1nsito", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos Elaborados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos en Curso de Elaboraci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Inventarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales Varios ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plantas en crecimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animales vivos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inventarios"
+       }
+      ], 
+      "name": "ACTIVOS"
+     }
+    ], 
+    "name": "Cuentas de Balance", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Compras - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercaderias / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos .../ otros costos vinculados con las compras de materias primas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ comisiones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos vinculados con las compras / costos vinculados con las compras de materias primas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ comisiones    ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ otros costos vinculados con las compras de mercader\u00edas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos Vinculados con las compras / costos vinculados con las compras de mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vincu...,otros costos vinculados con las compras de materiales, suministros y repuestos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, seguros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, transporte  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de materiales, suministros y repuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, transporte  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ../ costos vinculados con las compras de envases y .., otrs costos vinculados con las compras d env y emb", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, seguros ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de envases y embalajes ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Costos Vinculados con las compras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos de extracc\u00edon ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ repuestos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Envases y embalajes / embalajes ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Envases y embalajes / envases ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Envases y embalajes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compras (Gastos por naturaleza)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "COSTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas imputables ...- Gastos financieros imputables a cuentas de existencias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cargas imputables ...- Cargas imputables a cuentas de costos y gastos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas imputables a cuentas de costos y gastos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas cubiertas por provisiones - Cargas cubiertas por provisiones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas cubiertas por provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / existencias de servicios terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costos de producci\u00f3n no absorbido, productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costo de ineficiencia, productos terminados  ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Productos terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / desechos y desperdicios ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros - Categoria de productos 01", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercaderi\u00e1s de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Servicios / relacionadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Servicios / terceros (Costo diferido)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos en proceso ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / existencias por recibir ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materias primas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / mercader\u00edas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / subproductos, desechos y desperdicios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / envases y embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de ventas  ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "INGRESOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente bruto ...- Exdedente bruto (insuficiencia bruta) de explotaci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Excedente bruto (insuficiencia bruta) de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado de explotaci\u00f3n - Resultado de explotaci\u00f3n", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado antes ...- Resultado antes de participaciones e impuestos ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado antes de participaciones e impuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ repuestos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas iinmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercaderias manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ embalajes", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ envases", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Venta - Categoria de productos 01", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias  (perdidas de inventario)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / beneficio de movilidad al trabajador", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaciones extraordinarias", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / asignaci\u00f3n familiar", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / sueldos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / subsidios por enfermedad", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / horas Extras", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaci\u00f3n por riesgo de caja", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de personal ...- Remuneraciones / sueldos y salarios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / vacaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / gratificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / comisiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / remuneraciones en especie", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de pensiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ caja de beneficios de seguridad social del pescador", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de ...- Seguridad .../ seguro complementario de trabajo de riesgo, accidentes de trabajo y enfermedades profesionales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguros particulares de prestaciones de salud - EPS y otros particulares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de prestaciones de salud", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguro de vida", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ contribuciones al SENCICO y el SENATI ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Seguridad y previsi\u00f3n social y otras contribuciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal  ...- Otras Remuneraciones / planilla de movilidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Otras remuneraciones   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Capacitaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ Compensaci\u00f3n por tiempo de servicio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ otros beneficios post-empleo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ pensiones y jubilaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Beneficios sociales de los trabajadores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Indemnizaciones al personal", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Retribuciones al directorio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Atenci\u00f3n al personal  ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compras - Categoria de productos 01", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de personal, directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de ventas   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / verificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de cobranzas   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Producci\u00f3n encargada a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / agua", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / gas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / energ\u00eda el\u00e9ctrica", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios / internet", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / cable", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / radio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / tel\u00e9fono", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios b\u00e1sicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultoria / administrartiva ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / mercadotecnia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / medioambiental ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / legal y tributaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / auditor\u00eda y contable ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / investigaci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Asesor\u00eda y consultor\u00eda ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / relaciones p\u00fablicas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / diarios y revistas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / televisi\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / articulos promocionales", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / radial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / otros medios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Publicidad, publicaciones, relaciones p\u00fablicas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / edificios y locales", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inversi\u00f3n inmoviliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / unidades de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / combustible y lubricantes", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / herramientas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Mantenimiento y reparaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / terrenos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / vigilancia", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / guardian\u00eda", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / conserjer\u00eda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios de contratistas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos de laboratorio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / mantenimiento de cuentas", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / transferencias de fondos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / talonario de cheques", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / otros servicios bancarios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos bancarios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos notariales y de registro ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ legalizaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ tr\u00e1mites judiciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ varios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ centrales de riesgo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Otros servicios prestados por terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ correos  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alojamiento", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alimentaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ otros gastos de viaje ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de pasajeros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de carga", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Transporte, correos .../ transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros -Transporte, correos y gastos de viaje  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de servicios prestados por terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos por tributos - Gobierno regional ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Cotizaciones con car\u00e1cter de tributo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto al patrimonio vehicular ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / licencia de funcionamiento ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / arbitrios municipales y seguridad ciudadana ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto predial ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno local", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENATI ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENCICO", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Otros gastos por tributos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Otros tributos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno central / c\u00e1nones ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / regal\u00edas mineras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a las transacciones financieras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a los juegos de casino y m\u00e1quinas tragamonedas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto general a las ventas y selectivo al consumo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto temporal a los activos netos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno central ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos por tributos   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inversiones inmobiliarias  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos biol\u00f3gicos ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos adquiridos en arrendamiento financiero", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inmuebles, maquinaria y equipo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, intangibles ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Otros ...- Costo neto .../ operaciones discontinuadas, abandono de activos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inversiones inmobiliarias", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos biol\u00f3gicos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inmuebles, maquinaria y equipo", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / intangibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos adquiridos en arrendamiento financiero", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Otros ...- Costo neto ... / Costo neto de enajenaci\u00f3n de activos inmovilizados   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Costo neto de enajenaci\u00f3n de activos inmovilizados y operaciones discontinuadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gastos de investigaci\u00f3n y desarrollo", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Regal\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suministros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos de ...- Seguros / vehiculos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / robo, desfalco", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / contra incendio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Seguros", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Licencias y derechos de vigencia", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gesti\u00f3n medioambiental", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suscripciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / sanciones administrativas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / gastos extraordinarios ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / otros gastos ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / donaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Otros gastos de gesti\u00f3n  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otros gastos de gesti\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Gastos por participaciones en negocios conjuntos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Participaci\u00f3n en los resultados de subsidiarias y afiliadas bajo el m\u00e9todo del valor patrimonial", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Obligaciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / inversiones inmobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / productos terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inmuebles, maquinaria y equipo ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inversi\u00f3n inmoviliaria ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, intangibles ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, activos biol\u00f3gicos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "P\u00e9rdida por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaci\u00f3n en los resultados de subsidiarias y asociadas bajo el m\u00e9todo del valor patrimonial ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaciones en negocios conjuntos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Participaci\u00f3n en resultados de entidades relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Otros gastos financieros / primas por opciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Otros gastos financieros / gastos financieros en medici\u00f3n a valor descontado", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Otros gastos financieros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ emisi\u00f3n y colocaci\u00f3n de instrumentos representativos de deuda y patrimonio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros -  Gastos en operaciones de endeudamiento y otros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones de factoraje / gastos por menor valor ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Gastos en operaciones de factoraje ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones para negociaci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos.../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones comerciales (compra de mercaderia)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ otros instrumentos financieros por pagar (sobre giro bancario)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones tributarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ otras entidades", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ instituciones financieras", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos...- Intereses por pr\u00e9stamos .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones emitidas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Intereses por pr\u00e9stamos y otras obligaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Diferencia de cambio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Descuentos concedidos por pronto pago", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - P\u00e9rdida por instrumentos financieros derivados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros  (gastos en operaciones de endudamiento, intereses,...)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / patentes y propiedad industrial ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Amortizaci\u00f3n de intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de activos biol\u00f3gicos en  producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inversiones inmobiliarias / edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / plusval\u00eda mercantil ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inmuebles maquinaria y equipo   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Deterioro del valor de los activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, terceros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, terceros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de .., cuentas por cobrar al personal, a los accionistas(socios)..", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones mobiliarias, inversiones a ser mantenidas hasta el vencimento ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones ., instrumentos financieros representativos de derecho patrimonial", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Valuaci\u00f3n de activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para gastos de responsabilidad social", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado, costo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del ..., actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para litigios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para reestructuraciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / otras provisiones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Provisiones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmoviliarias / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento financiero .../ edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal   ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ muebles y enseres", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de  explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costos de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Depreciaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y ...- Agotamiento / agotamiento de recursos naturales adquiridos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Agotamiento", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valuaci\u00f3n y deterioro de activos y provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "COSTO DE PRODUCCI\u00d3N "
+         }, 
+         {
+          "name": "OBLIGACIONES FINANCIERAS"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PRIMA POR OPERACIONES DE REPORTO"
+         }, 
+         {
+          "name": "OTROS GASTOS"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "FISCALES"
+         }, 
+         {
+          "name": "ORGANISMOS DE CONTROL"
+         }, 
+         {
+          "name": "MUNICIPALES"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "ACTIVOS NO CORRIENTES "
+         }, 
+         {
+          "name": "CUENTAS POR COBRAR"
+         }, 
+         {
+          "name": "COSTO DE VENTAS"
+         }
+        ], 
+        "name": "P\u00c9RDIDA POR MEDICI\u00d3N DE ACTIVOS NO FINANCIEROS AL VALOR RAZONABLE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ARRENDAMIENTOS"
+         }, 
+         {
+          "name": "POR PUBLICIDAD"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "SEGUROS"
+         }, 
+         {
+          "name": "MATERIALES Y SUMINISTROS"
+         }, 
+         {
+          "name": "SERVICIOS Y MANTENIMIENTO"
+         }, 
+         {
+          "name": "DEPRECIACI\u00d3N"
+         }, 
+         {
+          "name": "AMORTIZACIONES"
+         }, 
+         {
+          "name": "PROVISIONES"
+         }
+        ], 
+        "name": "GASTOS GENERALES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACTIVOS DE EXPLORACI\u00d3N Y EVALUACI\u00d3N MINERA"
+         }, 
+         {
+          "name": "PLUSVAL\u00cdA MERCANTIL (GOODWILL)"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "CUENTAS Y DOCUMENTOS POR COBRAR"
+         }, 
+         {
+          "name": "EXISTENCIAS"
+         }, 
+         {
+          "name": "PROPIEDADES  PLANTA Y EQUIPO"
+         }
+        ], 
+        "name": "GASTOS POR  DETERIORO"
+       }
+      ], 
+      "name": "GASTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ingresos financieros - Ingresos en operaciones de factoraje (factoring)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Dividendos  ", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Participaci\u00f3n en result de subsidiarias y asociadas bajo m\u00e9todo de valor patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Ingresos por participaciones en negocios conjuntos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Participaci\u00f3n en resultados de entidades relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ingresos financieros - Ganancia por instrumento financiero derivado", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Diferencia en Cambio (desajuste)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Descuentos obtenidos por pronto pago", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones disponibles para la venta", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Otras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Ganancia por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos ...- Rendimientos ganados / inversiones a ser mantenidas hasta vencimiento", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / pr\u00e9stamos otorgados (Intereses Moratorios)", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / instrumentos financieros representativos de derecho patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Devengado", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Por Devengar", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / dep\u00f3sitos en instituciones financieras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Rendimientos Ganados (moras e intereses cobrados)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos...- Otros ingresos ... /ingresos financieros  en medici\u00f3n a valor descontado (venta al cr\u00e9dito)", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Otros ingresos financieros", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ingresos financieros    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Activos biol\u00f3gicos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inversiones inmobiliarias", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inmuebles, maquinaria y equipo", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Intangibles", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n activos no financieros al valor razonable - Activo realizable   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado  / inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable - Activo inmovilizado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de intangibles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inversiones inmobiliarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inmuebles, maquinaria y equipo", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de deterioro de cuentas de activos inmovilizados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ... /cuentas de cobranza dudosa", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de existencias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de cuentas de valuaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Alquileres / equipos diversos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / terrenos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / equipo de transporte", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / edificaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos de gesti\u00f3n - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / donaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / reclamos al seguro", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / sudsidios gubernamentales ", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / dividendos de acciones preferentes ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / interes minoritario ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / resultados por exposici\u00f3n a la inflaci\u00f3n ( )", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / ingresos extraordinarios ( )", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros ingresos ...- Otros ingresos  de gesti\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inmuebles, maquinaria y equipo intangible", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ intangibles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos biol\u00f3gicos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones mobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos adquiridos en arrendamiento financiero", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros ingresos ...- Enajenaci\u00f3n de activos inmovilizados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Regalias", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Servicios en beneficio del personal", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Comisiones y corretajes", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Otros ingresos de gesti\u00f3n  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / relacionadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / terceros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Custodia", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES RECIBIDOS DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Titularizaci\u00f3n", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios no inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles no inscritos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Negocios Fiduciarios"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Administrados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Fondos de Inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Administraci\u00f3n de portafolio "
+         }
+        ], 
+        "name": "ADMINISTRACION DE RECURSOS DE TERCEROS"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones concedidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos  / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos, rebajas y bonificaciones obtenidos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones obtenidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen animal  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen vegetal", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n .../ costos de financiaci\u00f3n  inversiones inmobiliarias, edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, maquinaria y equipo, edificaciones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, ..., maquinarias y otros equipos de explotaci\u00f3n ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Costos de financiaci\u00f3n capitalizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / maquinarias y otros equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / otros equipos   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de seguridad", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producc\u00edon de activo ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inversiones inmobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Acreedores por  contra", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Producci\u00f3n de activo inmovilizado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Bienes en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores en garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES PROPIOS EN PODER DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Emisiones no colocadas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "EMISIONES NO COLOCADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Colaterales de las operaciones de reporto burs\u00e1til", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COLATERALES DE LAS OPERACIONES DE REPORTO BURSATIL"
+       }, 
+       {
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de existencias de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos sobre instrumentos financieros derivados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS CUENTAS DE ORDEN DEUDORAS"
+       }, 
+       {
+        "name": "Documentos Endosados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / envases", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / embalajes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / existencias de productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / otros productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos inmuebles en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ desechos y desperdicios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ sub productos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producc\u00edon almacenada - Variaci\u00f3n de productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos inmuebles terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de la producci\u00f3n almacenada", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, terceros   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas - Prestaci\u00f3n de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados - Productos manufacturados    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Productos terminados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ventas - Software", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas agropecuarias y pisc\u00edcolas   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas otras  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas de extracc\u00edon ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas inmuebles  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercaderias relacionadas / mercader\u00edas manufacturadas   ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / mercader\u00edas relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos  inmuebles terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos manufacturados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Productos terminados, relacionadas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos manufacturados ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos inmuebles terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / productos terminados terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas de extracc\u00edon", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas otras", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas inmuebles", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas  - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas     ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas  - Mercader\u00edas terceros", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Devoluciones sobre ventas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, terceros (Venta Diferida)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas terceros - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Mercader\u00edas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ventas (Ingresos)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /diferido", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /corriente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Impuesto a la renta   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - Utilidad", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - P\u00e9rdida", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Determinaci\u00f3n del resultado del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valor agregado - Valor agregado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valor agregado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Margen comercial - Margen comercial", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Margen comercial (Saldos intermediarios de gesti\u00f3n)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de servicios ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de bienes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Producci\u00f3n del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / corriente", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / diferida", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Participaciones de los trabajadores", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Ganancias y Perdidas", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Acreedoras por el contrario", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores entregados - Activos realizables entregados en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / reponsb. por LT o efectos desc. 00.2.000", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / LT/.o efectos descontados 00.1.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables /  bienes en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables / bienes en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cuentas por cobrar   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cartas fianza ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores entregados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a futuro", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Permutas financieras (swap)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compromisos sobre instrumentos financieros derivados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores recibidos - Activos realizables recibidos en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes de uso / bienes recibidos por embargos, 00.5.001", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes de uso / respons. por bienes recib. p, 00.6.001", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso muebles enseres, 00.4.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso equipos diversos, 00.4.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, 00.4.000", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, muebles y enseres, 00.3.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, equipos diversos, 00.3.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, 00.3.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes de uso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes recibidos en pr\u00e9stamo y custodia ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cuentas por cobrar ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cartas fianza", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Valores y bienes recibidos en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores recibidos ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden acreedoras - Diversas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Deudoras por contra ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Permutas financieras (swap) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a futuro ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Derechos sobre instrumentos financieros derivados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden deudoras - Diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / suministros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Bienes dados de baja ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en ejecuci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en tr\u00e1mite ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Contratos aprobados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden deudoras", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Orden", 
+    "root_type": "None"
+   }
+  ], 
+  "name": "Per\u00fa - PCGE 2010", 
+  "root_type": "None"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/cn_l10n_chart_china.json b/setup/doctype/company/charts/cn_l10n_chart_china.json
new file mode 100644
index 0000000..2c48a2a
--- /dev/null
+++ b/setup/doctype/company/charts/cn_l10n_chart_china.json
@@ -0,0 +1,456 @@
+{
+ "name": "\u4e2d\u56fd\u4f1a\u8ba1\u79d1\u76ee\u8868", 
+ "root": {
+  "children": [
+   {
+    "name": "\u957f\u671f\u5e94\u6536\u6b3e", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u94f6\u884c\u5b58\u6b3e", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u73b0\u91d1", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u8425\u4e1a\u7a0e\u91d1\u53ca\u9644\u52a0", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u5176\u4ed6\u4e1a\u52a1\u652f\u51fa", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u4e3b\u8425\u4e1a\u52a1\u6210\u672c", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u8d44\u672c\u516c\u79ef", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u9012\u5ef6\u6240\u5f97\u7a0e\u8d1f\u503a", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u56fa\u5b9a\u8d44\u4ea7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u7d2f\u8ba1\u6298\u65e7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5f85\u5904\u7406\u8d22\u4ea7\u635f\u6ea2", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5176\u4ed6\u4e1a\u52a1\u6536\u5165", 
+    "root_type": "Income"
+   }, 
+   {
+    "name": "\u77ed\u671f\u501f\u6b3e", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5e94\u4ed8\u804c\u5de5\u85aa\u916c", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u574f\u8d26\u51c6\u5907", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5e94\u4ed8\u80a1\u5229", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5e94\u4ed8\u5229\u606f", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u957f\u671f\u6295\u8d44\u51cf\u503c\u51c6\u5907", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u957f\u671f\u80a1\u6743\u6295\u8d44", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u65e0\u5f62\u8d44\u4ea7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u65e0\u5f62\u8d44\u4ea7\u51cf\u503c\u51c6\u5907", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u7d2f\u8ba1\u644a\u9500", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5229\u6da6\u5206\u914d", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u76c8\u4f59\u516c\u79ef", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u672c\u5e74\u5229\u6da6", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u9884\u8ba1\u8d1f\u503a", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u8425\u4e1a\u5916\u652f\u51fa", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u957f\u671f\u501f\u6b3e", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u957f\u671f\u503a\u5238", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u957f\u671f\u5f85\u644a\u8d39\u7528", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5e94\u6536\u7968\u636e", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u9884\u4ed8\u8d26\u6b3e", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5e94\u6536\u8d26\u6b3e", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u516c\u5141\u4ef7\u503c\u53d8\u52a8\u635f\u76ca", 
+    "root_type": "Income"
+   }, 
+   {
+    "name": "\u5236\u9020\u8d39\u7528", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u4ea4\u6613\u6027\u91d1\u878d\u8d1f\u503a", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u4ea4\u6613\u6027\u91d1\u878d\u8d44\u4ea7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u4ee3\u7406\u4e1a\u52a1\u8d1f\u503a", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u56fa\u5b9a\u8d44\u4ea7\u6e05\u7406", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u6240\u5f97\u7a0e", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u88ab\u5957\u671f\u9879\u76ee", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5b9e\u6536\u8d44\u672c", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u59d4\u6258\u52a0\u5de5\u7269\u8d44", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5546\u54c1\u8fdb\u9500\u5dee\u4ef7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5305\u88c5\u7269\u53ca\u4f4e\u503c\u6613\u8017\u54c1", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u9012\u5ef6\u6536\u76ca", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u8425\u4e1a\u5916\u6536\u5165", 
+    "root_type": "Income"
+   }, 
+   {
+    "name": "\u7814\u53d1\u652f\u51fa", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u5728\u5efa\u5de5\u7a0b", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5de5\u7a0b\u7269\u8d44", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u56fa\u5b9a\u8d44\u4ea7\u51cf\u503c\u51c6\u5907", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5176\u4ed6\u8d27\u5e01\u8d44\u91d1", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5176\u4ed6\u5e94\u6536\u6b3e", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u9500\u552e\u8d39\u7528", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u8d22\u52a1\u8d39\u7528", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u7ba1\u7406\u8d39\u7528", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u751f\u4ea7\u6210\u672c", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u9884\u6536\u8d26\u6b3e", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5e94\u4ed8\u7968\u636e", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5e94\u4ed8\u8d26\u6b3e", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u4e3b\u8425\u4e1a\u52a1\u6536\u5165", 
+    "root_type": "Income"
+   }, 
+   {
+    "name": "\u6301\u6709\u81f3\u5230\u671f\u6295\u8d44", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u53ef\u4f9b\u51fa\u552e\u91d1\u878d\u8d44\u4ea7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u6301\u6709\u81f3\u5230\u671f\u6295\u8d44\u51cf\u503c\u51c6\u5907", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u52b3\u52a1\u6210\u672c", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u6295\u8d44\u6027\u623f\u5730\u4ea7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "\u8fdb\u9879\u7a0e\u989d\u8f6c\u51fa", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u51fa\u53e3\u9000\u7a0e", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u9500\u9879\u7a0e\u989d", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u51cf\u514d\u7a0e\u6b3e", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u8f6c\u51fa\u672a\u4ea4\u589e\u503c\u7a0e", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u5df2\u4ea4\u7a0e\u91d1", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u8fdb\u9879\u7a0e\u989d", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u8f6c\u51fa\u591a\u4ea4\u589e\u503c\u7a0e", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u51fa\u53e3\u62b5\u51cf\u5185\u9500\u4ea7\u54c1\u5e94\u7eb3\u7a0e\u989d", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "\u672a\u4ea4\u589e\u503c\u7a0e", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "\u5e94\u4ea4\u589e\u503c\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u8425\u4e1a\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u6d88\u8d39\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u8d44\u6e90\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u6240\u5f97\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u571f\u5730\u589e\u503c\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u57ce\u5e02\u7ef4\u62a4\u5efa\u8bbe\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u623f\u4ea7\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u571f\u5730\u4f7f\u7528\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u4e2a\u4eba\u6240\u5f97\u7a0e", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "\u5e94\u4ea4\u8f66\u8239\u4f7f\u7528\u7a0e", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "\u5e94\u4ea4\u7a0e\u8d39", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u884d\u751f\u5de5\u5177", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5957\u671f\u5de5\u5177", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5f85\u644a\u8d39\u7528", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u9884\u63d0\u8d39\u7528", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5546\u8a89", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u672a\u5b9e\u73b0\u878d\u8d44\u6536\u76ca", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u9012\u5ef6\u6240\u5f97\u7a0e\u8d44\u4ea7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u8d44\u4ea7\u51cf\u503c\u635f\u5931", 
+    "root_type": "Expense"
+   }, 
+   {
+    "name": "\u6295\u8d44\u6536\u76ca", 
+    "root_type": "Income"
+   }, 
+   {
+    "name": "\u5e94\u6536\u5229\u606f", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5e94\u6536\u80a1\u5229", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u672a\u786e\u8ba4\u878d\u8d44\u8d39\u7528", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u957f\u671f\u5e94\u4ed8\u6b3e", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u4ee5\u524d\u5e74\u5ea6\u635f\u76ca\u8c03\u6574", 
+    "root_type": "Income"
+   }, 
+   {
+    "name": "\u5b58\u8d27\u8dcc\u4ef7\u51c6\u5907", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u4ee3\u7406\u4e1a\u52a1\u8d44\u4ea7", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5e93\u5b58\u80a1", 
+    "root_type": "Liability"
+   }, 
+   {
+    "name": "\u5e93\u5b58\u5546\u54c1", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u53d1\u51fa\u5546\u54c1", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u6750\u6599\u6210\u672c\u5dee\u5f02", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u5728\u9014\u7269\u8d44", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u539f\u6750\u6599", 
+    "root_type": "Asset"
+   }, 
+   {
+    "name": "\u6750\u6599\u91c7\u8d2d", 
+    "root_type": "Asset"
+   }
+  ], 
+  "name": "\u4f1a\u8ba1\u79d1\u76ee"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/de_l10n_chart_de_skr04.json b/setup/doctype/company/charts/de_l10n_chart_de_skr04.json
new file mode 100644
index 0000000..ca935f5
--- /dev/null
+++ b/setup/doctype/company/charts/de_l10n_chart_de_skr04.json
@@ -0,0 +1,7240 @@
+{
+ "name": "Deutscher Kontenplan SKR04", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Bank Bewertungsertrag", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Rundungsdifferenzen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Kassendifferenzen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen steuerfrei \u00a7 4 Nr. 1b UStG (bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen (bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Kursdifferenzen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Bewertung Finanzmittelfonds", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen steuerfrei \u00a7 4 Nr. 1a UStG (bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen 19% USt (bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen 16% USt (bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Finanzanlagen 100% / 50% steuerfrei (inlandische Kap.Ges.)(bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verkauf immaterieller Verm\u00f6gensgegenst\u00e4nde (bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verkauen von Wirtschaftsg\u00fctern des Umlaufverm\u00f6gens- umsatzsteuerfrei \u00a7 4 Nr. 8 ff UStG i. V. m. \u00a7 4 Abs. 3 Satz 4 EStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl. a. Verk. v. Wirtschaftsg. d. Umlaufv.- umsatzsteuerf. \u00a7 4 Nr. 8 ff UStG i. V. m. \u00a7 4 Abs. 3 Satz 4 EStG- 100%/50% steuerf.(inlandische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "steuerfreie Ertr\u00e4ge aus der Aufl\u00f6sung von Sonderposten mit R\u00fccklageanteil", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Investitionszulagen (steuerfrei)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige steuerfreie Betriebseinnahmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen von Wirtschaftsg\u00fctern des Umlaufverm\u00f6gens nach \u00a7 4 Abs. 3 Satz 4 EStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Periodenfremde Ertr\u00e4ge (soweit nicht au\u00dferordentlich)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sachbez\u00fcge 7% USt (Waren)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechnete sonstige Sachbez\u00fcge (keine Waren)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sachbez\u00fcge 19% USt (Waren)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sachbez\u00fcge 16% USt (Waren)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechnete sonstige Sachbez\u00fcge 19 % USt ( z.B. Kfz-Gestellung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechnete sonstige Sachbez\u00fcge ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechnete sonstige Sachbez\u00fcge ohne Umsatzsteuer", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechnete sonstige Sachbez\u00fcge 16 % USt ( z.B. Kfz-Gestellung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus abgeschriebenen Forderungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Herabsetzung der Einzelwertberichtigung zu Forderungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Herabsetzung der Pauschalwertberichtigung zu Forderungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus dem abgang von Gegenst\u00e4nden des Umlaufverm\u00f6gens au\u00dfer Vorr\u00e4te", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus dem abgang von Gegenst\u00e4nden des Umlaufverm\u00f6gens (au\u00dfer Vorr\u00e4te) 100% / 50%steuerfrei (inlandische Kap.Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Ver\u00e4u\u00dferung vo Anteilen an Kapitalgesellschaften 100% / 50% steuerfrei (inlandische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus dem Abgang von Gegenst\u00e4nden des Anlageverm\u00f6gens", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verkauen von Wirtschaftsg\u00fctern des Umlaufverm\u00f6gens 19% USt f\u00fcr \u00a7 4 Abs. 3 Satz 4 EStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Grundst\u00fccksertr\u00e4ge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von Sonderposten mit R\u00fccklageanteil (aus der W\u00e4hrungsumstellung auf den Euro)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von Sonderposten mit R\u00fccklageanteil nach \u00a7 52 Abs. 16 EStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Finanzanlagen (bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Anlagenabg\u00e4nge Sachanlagen (Restbuchwert bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Nicht realisierbare Waehrungsdifferenzen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produkt Rechnung Preisdifferenz", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Realisierte Waehrungsdifferenzen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertraege a. Waehrungsumstellung auf Euro", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Realisierte Waehrungsdifferenzen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Bank Waehrungsverlust (Konto)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Nicht realisierbare Waehrungsdifferenzen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Waehrungsdifferenz zum Kontenausgleich", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Anlagenabg\u00e4nge Finanzanlagen 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)(Restbuchwert bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Ertr\u00e4ge unregelm\u00dfig", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Ertr\u00e4ge betrieblich und regelm\u00e4\u00dfig ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Ertr\u00e4ge betrieblich und regelm\u00e4\u00dfig 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Ertr\u00e4ge betriebsfremd und regelm\u00e4\u00dfig", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Ertr\u00e4ge betrieblich und regelm\u00e4\u00dfig 19% USt ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige betriebliche Ertr\u00e4ge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Anlagenabg\u00e4nge Finanzanlagen (Restbuchwert bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Anlagenabg\u00e4nge immaterielle Verm\u00f6gensgegenst\u00e4nde (Restbuchwert bei Buchgewinn)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Versicherungsentsch\u00e4digungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Investitionszusch\u00fcsse (steuerpflichtig)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von Sonderposten mit R\u00fccklageanteil (Existenzgr\u00fcnderr\u00fccklage)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von Sonderposten mit R\u00fccklageanteil (steuerfreie R\u00fccklage)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von Sonderposten mit R\u00fccklageanteil (Ansparabschreibungen)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von Sonderposten mit R\u00fccklageanteil (Sonderabschreibungen)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von R\u00fcckstellungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der steuerlich niedrigeren Bewertung von R\u00fcckstellungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der steuerlich niedrigeren Bewertung von Verbindlichkeiten", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Zuschreibungen des Finanzanlageverm\u00f6gens", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Zuschreibungen des Finanzanlageverm\u00f6gens 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Zuschreibungen des Sachanlageverm\u00f6gens", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Zuschreibungen des immateriellen Anlageverm\u00f6gens", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Zuschreibungen des Umlaufverm\u00f6gens 100% / 50% steuerfrei (inlandische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Zuschreibungen des anderen Anlageverm\u00f6gens 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Zuschreibungen des Umlaufverm\u00f6gens au\u00dfer Vorr\u00e4ten", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Sonstige betriebliche Ertr\u00e4ge"
+           }
+          ], 
+          "name": "Sonstige betriebliche Ertr\u00e4ge"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Andere aktivierte Eigenleistungen", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Andere aktivierte Eigenleistungen"
+           }
+          ], 
+          "name": "Andere aktivierte Eigenleistungen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Bestandsver\u00e4nderungen - fertige Erzeugnisse", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Bestandsver\u00e4nderungen - unfertige Leistungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Bestandsver\u00e4nderungen - unfertige Erzeugnisse", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Erh\u00f6hung des Bestands an fertigen und unfertigen Erzeugnissen oder Verminderung des Bestands an fertigen und unfertigen Erzeugnissen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bestandsver\u00e4nderungen in Arbeit befindlicher Auftr\u00e4ge", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Erh\u00f6hung des Bestands in Arbeit befindlicher Auftr\u00e4ge oder Verminderung des Bestands in Arbeit befindlicher Auftr\u00e4ge"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bestandsver\u00e4nderungen in Ausf\u00fchrung befindliche Bauauftr\u00e4ge", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Erh\u00f6hung des Bestands in Ausf\u00fchrung befindlicher Bauaftr\u00e4ge oder Verminderung des Bestands in Ausf\u00fchrung befindlicher Bauauftr\u00e4ge"
+           }
+          ], 
+          "name": "Erh\u00f6hung oder Verminderung des Bestands an fertigen und unfertige Erzeugnissen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Unentgeltliche Zuwendung von Gegenst\u00e4nden 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Zuwendung von Gegenst\u00e4nden 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Zuwendung von Gegenst\u00e4nden ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Erbringung einer sostigen Leistung 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens 16% USt (Telefon-Nutzung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens 19% USt (Kfz-Nutzung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Erbringung einer sostigen Leistung 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens 16% USt (Kfz-Nutzung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens 19% USt (Telefon-Nutzung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Erbringung einer sonstigen Leistung 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Erbringung einer sostigen Leistung ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens ohne USt (Kfz-Nutzung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden f\u00fcr Zwecke au\u00dferhalb des Unternehmens ohne USt (Telefon-Nutzung)", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Sonstige betriebliche Ertr\u00e4ge"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Erl\u00f6sschm\u00e4lerungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerungen aus steuerfreien Ums\u00e4tzen \u00a7 4 Nr. 1a UStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerungen 16 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerung aus im Inland steuerpflichtigen EG-lieferungen 7 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerungen aus steuerfreien innergemeinschaftlichen Lieferungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerung aus im anderen EG-lieferungen steuerpflichtigen Lieferungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerung aus im Inland steuerpflichtigen EG-lieferungen 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 19 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 7 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti aus steuerfreien innergemeinschaftlichen Lieferungen \u00a7 4 Nr. 1b UStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti aus Leistungen- f\u00fcr die der Leistungsempf\u00e4nger die umsatzsteuer nach \u00a7 13b UStG schuldet", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Boni 19 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Boni ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Rabatte 7 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti 19 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti 16 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Zuwendung von Waren 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Zuwendung von Waren 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerung aus im Inland steuerpflichtigen EG-lieferungen 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Entnahme durch den Unternehmer f\u00fcr Zwecke au\u00dferhalb des Unternehmens (Waren) 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Entnahme durch den Unternehmer f\u00fcr Zwecke au\u00dferhalb des Unternehmens (Waren) 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Wertabgaben", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Entnahme von Gegens\u00e4nden ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti 7 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti aus im Inland steuerpflichtigen EG-Lieferungen 16 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Skonti aus im Inland steuerpflichtigen EG-Lieferungen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerungen 7 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Boni 7 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Rabatte", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Rabatte 19 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Rabatte 16 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gew\u00e4hrte Boni 16 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Umsatzsteuerverg\u00fctung", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Nicht steuerbare ums\u00e4tze (Innenums\u00e4tze)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Zuwendung von Waren ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltliche Zuwendung von Waren 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Statistisches Konto Erl\u00f6se zum allgemeinen Umsatzsteuersatz (E\u00fcR)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Entnahme durch Unternehmer f\u00fcr Zwecke au\u00dferhalb des Unternehmens (Waren) ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Entnahme durh Unternehmer f\u00fcr Zwecke au\u00dferhalb des Unternehmens (Waren) 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6sschm\u00e4lerungen 19 % USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gegenkonto 4580-4582 bei Aufteilung der Erl\u00f6se nach Steuers\u00e4tzen (E\u00fcR)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Statistisches Konto Erl\u00f6se zum erm\u00e4\u00dfigten Umsatzsteuersatz (E\u00fcR)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Statistisches konto Erl\u00f6se steuerfrei und nicht steuerbar (E\u00fcR)", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Umsatzerl\u00f6se"
+           }
+          ], 
+          "name": "Statistische Konten E\u00fcR"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Provision- sonstige Ertr\u00e4ge 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision- sonstige Ertr\u00e4ge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision- sonstige Ertr\u00e4ge 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision- sonstige Ertr\u00e4ge steuerfrei (\u00a7 4 Nr. 8 ff. UStG)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision- sonstige Ertr\u00e4ge steuerfrei (\u00a7 4 Nr. 5 UStG)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision- sonstige Ertr\u00e4ge 16% USt", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Sotige betriebliche Ertr\u00e4ge"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Erl\u00f6se aus im Inland steuerpflichtigen EG-Lieferungen 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se Leergut", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provisionsums\u00e4tze 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provisionsums\u00e4tze- steuerfrei (\u00a74 Nr. 5 UStG)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provisionsums\u00e4tze- steuerfrei (\u00a74 Nr. 8 ff. UStG)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provisionsums\u00e4tze", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provisionsums\u00e4tze 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provisionsums\u00e4tze 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Umsatzerl\u00f6se (zur fr. Verf\u00fcgung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Nicht abgerechnete Einnahmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Steuerfreie Ums\u00e4tze ohne Vorsteuerabzug zum Gesamtumsatz geh\u00f6rend", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Steuerfreie Ums\u00e4tze offshore etc.", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus im Inland steuerpflichtigen EG-Lieferungen 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus im Inland steuerpflichtigen EG-Lieferungen 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Steuerfreie innergemeinschaftliche Lieferungen \u00a74 Nr. 1b UStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Steuerfreie Ums\u00e4tze \u00a74 Nr. 1a UStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus im Drittland steuerbaren Leistungen- im Inland ncht steuerbare Ums\u00e4tze", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus im anderen EG-Land steuerbaren Leistungen- im Inland nicht steuerbare Ums\u00e4tze", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Steuerfreie Ums\u00e4tze nach \u00a7 4 Nr. 12 UStG (Vermietung und Verpackung)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Steuerfreie Ums\u00e4tze \u00a74 Nr. 8 ff. UStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se Abfallverwertung", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se als Kleinunternehmer i.S.d. \u00a7 19 Abs. 1 UStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Geldspielautomaten 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Geldspielautomaten 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se. Die mit den Durchschnittss\u00e4tzen des \u00a7 24 UStG versteuert werden", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Leistungen- f\u00fcr die der Leistungsempf\u00e4nger die Umsatzsteuer nach \u00a7 13b UStG schuldet", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se 16% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige steuerfreie Ums\u00e4tze (z.B. \u00a7 4 Nr. 2-7 UStG)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "* Vorausberechnete Einnahmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "* Sonstige Einnahmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "* Konto Kasse Ertrag", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Steuerfreie innergemeinschaftliche Lieferungen von Neufahrzeugen an Abnehmer ohne Umsatzsteuer-Identifikationsnummer", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Lieferungen des ersten Abnehmers bei innergemeinschaftlichen Dreiecksgesch\u00e4ften \u00a7 25b abs. UStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige steuerfreie Ums\u00e4tze Inland", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se aus im anderen EG-Land steuerpflichtigen Lieferungen", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Umsatzerl\u00f6se"
+           }
+          ], 
+          "name": "Umsatzerl\u00f6se"
+         }
+        ], 
+        "name": "Betriebliche Ertr\u00e4ge"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Kfz-Steuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Grundsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuernachzahkungen Vorjahre f\u00fcr sonstige Steuern ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuererstattungen Vorjahre f\u00fcr sonstige Steuern ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von R\u00fcckstellungen f\u00fcr sonstige Steuern", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Steuern ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "\u00f6kosteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verbrauchsteuer", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Sonstige Steuern "
+           }
+          ], 
+          "name": "Sonstige Steuern "
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Etr\u00e4ge aus anderen Wertpapieren und Ausleihungen des Finanzanlageverm\u00f6gens aus verbundenen Unternehmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus anderen Wertpapieren und Ausleihungen des Finanzanlageverm\u00f6gens", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Laufende Ertr\u00e4ge aus Anteilen an Kapitalgesellschaften (Finanzanlageverm\u00f6gen) 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Laufende Ertr\u00e4ge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ertr\u00e4ge aus anderen Wertpapieren und Ausleihungen des Finanzanlageverm\u00f6gens"
+           }
+          ], 
+          "name": "Ertr\u00e4ge aus anderen Wertpapieren und Ausleihungen des Finanzanlageverm\u00f6gens"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Au\u00dferordentliche Ertr\u00e4ge nicht finanzwirksam", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Au\u00dferordentliche Ertr\u00e4ge finanzwirksam", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Au\u00dferordentliche Ertr\u00e4ge", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Au\u00dferordentliche Ertr\u00e4ge"
+           }
+          ], 
+          "name": "Au\u00dferordentliche Ertr\u00e4ge"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ertr\u00e4ge aus Kapitalherabsetzung", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ertr\u00e4ge aus Kapitalherabsetzung"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Entnahme aus Gewinnr\u00fccklagen aus anderen Gewinnr\u00fccklagen", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Entnahme aus Gewinnr\u00fccklagen aus anderen Gewinnr\u00fccklagen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Einstellungen in die Kapitalr\u00fccklage nach den Vorschriften \u00fcber die Vereinfachte Kapitalherabsetzung", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Einstellungen in die Kapitalr\u00fccklage nach den Vorschriften \u00fcber die Vereinfachte Kapitalherabsetzung"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Entnahme aus Gewinnr\u00fccklagen aus der gesetzlichen R\u00fccklage", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Entnahme aus Gewinnr\u00fccklagen aus der gesetzlichen R\u00fccklage"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Entnahme aus Gewinnr\u00fccklagen aus satzungsm\u00e4\u00dfigen R\u00fccklage ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Entnahme aus Gewinnr\u00fccklagen aus satzungsm\u00e4\u00dfigen R\u00fccklage "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Entnahme aus Gewinnr\u00fccklagen aus der R\u00fccklage f\u00fcr eigene Anteile ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Entnahme aus Gewinnr\u00fccklagen aus der R\u00fccklage f\u00fcr eigene Anteile "
+           }
+          ], 
+          "name": "Entnahme aus Gewinnr\u00fccklagen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ertr\u00e4ge aus Beteiligungen an verbundenen Unternehmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gewinnanteile aus Mitunternehmerschaften \u00a7 9 GewStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Laufende Ertr\u00e4ge aus Anteilen an Kapitalgesellschaften (Beteiligung) 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gewinne aus Anteilen an nicht steuerbefreiten inl\u00e4ndischen Kapitalgesellschaften \u00a7 9 Nr. 2a GewStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Laufende Ertr\u00e4ge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Beteiligungen", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ertr\u00e4ge aus Beteiligungen"
+           }
+          ], 
+          "name": "Ertr\u00e4ge aus Beteiligungen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ertr\u00e4ge aus Verlust\u00fcbernahme", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ertr\u00e4ge aus Verlust\u00fcbernahme "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Erhaltene Gewinne auf Grund eines Gewinn- oder Teilgewinnabf\u00fchrungsvertrags", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erhaltene Gewinne auf Grund einer Gewinngemeinschaft", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Auf Grund einer Gewinngemeinschaft- eines Gewinn- oder Teilgewinnabf\u00fchrungsvertrags erhaltene "
+           }
+          ], 
+          "name": "Ertr\u00e4ge aus Verlust\u00fcbernahme und auf Grund einer Gewinngemeinschaft- eines Gewinn- oder Teilgewinnabf\u00fchrungsvertrags erhaltene Gewinne"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gewinnvortrag nach Verwendung", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Gewinnvortrag"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Entnahme aus der Kapitalr\u00fccklage", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Entnahme aus der Kapitalr\u00fccklage"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Sonstige Zinsertr\u00e4ge aus verbundenen Unternehmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Zinsertr\u00e4ge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Diskontertr\u00e4ge aus verbundenen Unternehmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Diskontertr\u00e4ge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Laufende Ertr\u00e4ge aus Anteilen an Kapitalgesellschaften (verbundene Unternehmen) 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Zinsertr\u00e4ge \u00a7 233a AO Sonderfall anlage A KSt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Zinsen und \u00e4hnliche Ertr\u00e4ge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Steuerfreie Aufzinsung des K\u00f6rperschaftsteuerguthabens nach \u00a737 KStG", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Laufende Ertr\u00e4ge aus Anteilen an Kapitalgesellschaften (Umlaufverm\u00f6gen) 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonstige Zinsen und \u00e4hnliche Ertr\u00e4ge aus verbundenen Unternehmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Zins\u00e4hnliche Ertr\u00e4ge aus verbundenen Unternehmen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Zins\u00e4hnliche Ertr\u00e4ge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Zinsertr\u00e4ge \u00a7 233a AO", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Sonstige Zinsen und \u00e4hnliche Ertr\u00e4ge"
+           }
+          ], 
+          "name": "Sonstige Zinsen und \u00e4hnliche Ertr\u00e4ge"
+         }
+        ], 
+        "name": "Weitere Ertr\u00e4ge"
+       }
+      ], 
+      "name": "Gewinn u. Verlust - Ertr\u00e4ge"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Bauleistungen eines im Inland ans\u00e4ssigen Unternehmers ohne Vorsteuer und 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leistungen eines im Ausland ans\u00e4ssigen Unternehmers ohne Vorsteuer und 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bauleistungen eines im Inland ans\u00e4ssigen Unternehmers 7% Vorsteuer und 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leistungen eines im Ausland ans\u00e4ssigen Unternehmers 7% Vorsteuer und 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti aus Leistungen- f\u00fcr die als Leistungsempf\u00e4nger die Steuer nach \u00a7 13b UStG geschuldet wird 19% Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti aus Leistungen- f\u00fcr die als Leistungsempf\u00e4nger die Steuer nach \u00a7 13b UStG geschuldet wird ohne Vorsteuer aber mit Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti aus Leistungen- f\u00fcr die als Leistungsempf\u00e4nger die Steuer nach \u00a7 13b UStG geschuldet wird 16% Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti aus Leistungen- f\u00fcr die als Leistungsempf\u00e4nger die Steuer nach \u00a7 13b UStG geschuldet wird", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bauleistungen eines im Inland ans\u00e4ssigen Unternehmers 19% Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bauleistungen eines im Inland ans\u00e4ssigen Unternehmers 16% Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leistungen eines im Ausland ans\u00e4ssigen Unternehmers 19% Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leistungen eines im Ausland ans\u00e4ssigen Unternehmers 16% Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bauleistungen eines im Inland ans\u00e4ssigen Unternehmers ohne Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bauleistungen eines im Inland ans\u00e4ssigen Unternehmers ohne Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leistungen eines im Ausland ans\u00e4ssigen Unternehmers ohne Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leistungen eines im Ausland ans\u00e4ssigen Unternehmers ohne Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Aufwendungen f\u00fcr bezogene Leistungen"
+           }
+          ], 
+          "name": "Ums\u00e4tze- f\u00fcr die als Leistungsempf\u00e4nger die Steuer nach \u00a7 13b Abs. 2 UStG geschuldet wird"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Nicht abziehbare Vorsteuer 7%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verrechnete Stoffkosten (Gegenkonto 5000-99)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bezugsnebenkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer 16%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leergut", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Rabatte 19% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuerfreier innergemeinschaftlicher Erwerb", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuerfreie Einfuhren", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bestandsver\u00e4nderungen Roh- Hilfs- und Betriebsstoffe/Waren", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse 15 % Vorsteuer ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wareneingang 9 % Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse aus innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse aus innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse aus innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 7% Vorsteuer und 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 16% Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Boni ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Boni 19% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Boni 16% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti aus steuerpflichtigem innergemeinschaftlichem Erwerb 19% Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "* Konto Kasse Aufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "* Produkt Vertriebsausgaben", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "* Produkt Ausgaben", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wareneingang 19 % Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Innergemeinschaftlicher Erwerb 7% Vorsteuer und 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Innergemeinschaftlicher Erwerb 19% Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Energiestoffe (Fertigung)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer 19%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wareneingang 16 % Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Innergemeinschaftlicher Erwerb 16% Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Waren aus einem Umsatzsteuerlager- \u00a7 13a UStG 7% Vorsteuer und 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Waren aus einem Umsatzsteuerlager- \u00a7 13a UStG 19% Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Waren aus einem Umsatzsteuerlager- \u00a7 13a UStG 16% Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Einkauf von Roh- Hilfs- und Betriebsstoffen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Rabatte 7% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Rabatte 16% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wareneingang 10-7 % Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wareneingang 5 % Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wareneingang 5-5 % Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wareneingang 7 % Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti 7% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti 16% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Skonti 19% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wareneingang", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Boni 7% Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erhaltene Rabatte", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 16% Vorsteuer und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Innergemeinschaftlicher Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer 19% Vorsteuer und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug und 16% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug und 19% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Innergemeinschaftlicher Erwerb ohne Vorsteuerabzug- 7% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse aus innergemeinschaftlichem Erwerb 15% Vorsteuer und 15% Umsatzsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse 16 % Vorsteuer ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse 19 % Vorsteuer ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nachl\u00e4sse 7 % Vorsteuer ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Z\u00f6lle und Einfuhrabgaben", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Aufwendungen f\u00fcr Roh- Hilfs- und Betriebsstoffe und f\u00fcr bezogene Waren"
+           }
+          ], 
+          "name": "Materialaufwand"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Fremdleistungen", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Aufwendungen f\u00fcr bezogene Leistungen"
+           }
+          ], 
+          "name": "Aufwendungen f\u00fcr bezogene Leistungen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Aufwendungen f\u00fcr Roh- Hilfs- und Betriebsstoffe und f\u00fcr bezogene Waren", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Aufwendungen f\u00fcr Roh- Hilfs- und Betriebsstoffe und f\u00fcr bezogene Waren"
+           }
+          ], 
+          "name": "Material- und Stoffverbrauch"
+         }
+        ], 
+        "name": "Betriebliche Aufwendungen"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Aufwendungen f\u00fcr Altersversorgung", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Aufwendungen f\u00fcr Altersversorgung f\u00fcr Mitunternehmer \u00a7 15 EStG", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Gesetzliche soziale Aufwendungen", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Freiwillige soziale Aufwendungen- lohnsteuerfrei", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Sonstige soziale Abgaben", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Versorgungskassen", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Gesetzliche soziale Aufwendungen f\u00fcr Mitunternehmer \u00a7 15 EStG", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Beitr\u00e4ge zur Berufsgenossenschaft", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Pauschale Steuer auf sonstige Bez\u00fcge (z.B. Direktversicherungen)", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Aufwendungen f\u00fcr Unterst\u00fctzung", 
+                "root_type": "Expense"
+               }
+              ], 
+              "name": "Soziale Abgaben und Aufwendungen f\u00fcr Altersversorgung und f\u00fcr Unterst\u00fctzung", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Soziale Abgaben und Aufwendungen f\u00fcr Altersversorgung und f\u00fcr Unterst\u00fctzung"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Krankengeldzusch\u00fcsse", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zusch\u00fcsse der Agenturen f\u00fcr Arbeit (Haben)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ehegattengehalt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "L\u00f6hne ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pauschale Steuer auf sonstige Bez\u00fcge (z.B. Fahrkosten Zusch\u00fcsse)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Freiwillige soziale Aufwendungen- lohnsteuerpflichtig", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bedienungsgelder", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pauschale Steuer f\u00fcr Aushilfen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verg\u00fctungen an angestellte Mitunternehmer \u00a7 15 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gesch\u00e4ftsf\u00fchrergeh\u00e4lter der GmbH-Gesellschafter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Tantiemen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gesch\u00e4ftsf\u00fchrergeh\u00e4lter ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Geh\u00e4lter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "L\u00f6hne und Geh\u00e4lter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aushilfsl\u00f6hne", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrkostenerstattung Wohnung/Arbeitsst\u00e4tte", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verm\u00f6genswirksame Leistungen", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "L\u00f6hne und Geh\u00e4lter"
+           }
+          ], 
+          "name": "Personalaufwand"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Forderungsverluste (soweit un\u00fcblich hoch)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 7% USt (soweit un\u00fcblich hoch)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 16% USt (soweit un\u00fcblich hoch)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 19% USt (soweit un\u00fcblich hoch)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 15% USt (soweit un\u00fcblich hoch)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Vorwegnahme k\u00fcnftiger Wertschwankungen im Umlaufverm\u00f6gen (soweit un\u00fcblich hoch)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Verm\u00f6gensgegenst\u00e4nde des Umlaufverm\u00f6gens (soweit un\u00fcblich hoch)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Umlaufverm\u00f6gen- steuerrechtlich bedingt (soweit un\u00fcblich hoch)", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Abschreibungen a. Verm\u00f6gensgeg. d. Umlaufverm\u00f6gens- soweit diese die in der Kapitalgesellschaft \u00fcblichen Abschreibungen \u00fcberschreiten"
+           }
+          ], 
+          "name": "Abschreibungen a. Verm\u00f6gensgeg.  d. Umlaufverm\u00f6gens- soweit diese die in der Kapitalgesellschaft \u00fcblichen Abschreibungen \u00fcberschreiten"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Abschreibungen auf Sachanlagen (ohne AfA auf Kfz und Geb\u00e4ude)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Kfz", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Geb\u00e4udeteil des h\u00e4uslischen Arbeitszimmers", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Geb\u00e4ude", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Sachanlagen auf Grund steuerlicher Sondervorschriften ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonderabschreibungen nach \u00a7 7g Abs. 1 u. 2 EStG (ohne Kfz)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonderabschreibungen nach \u00a7 7g Abs. 1 u. 2 EStG (f\u00fcr Kfz)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sofortabschreibungen geringwertiger Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Au\u00dferplanma\u00dfige Abschreibungen auf aktivierte- geringwertige Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Aufwendungen f\u00fcr die Ingangsetzung und Erweiterung des Gesch\u00e4ftsbetriebs", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Aufwendungen f\u00fcr die W\u00e4hrungsumstellung auf den Euro", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Au\u00dferplanm\u00e4\u00dfige Abschreibungen auf Sachanlagen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf immaterielle Verm\u00f6gensgegenst\u00e4nde", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf den Gesch\u00e4fts- oder Firmenwert", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf aktivierte- geringwertige Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Absetzung f\u00fcr Au\u00dfergew\u00f6hnliche technische und wirtschaftliche Abnutzung der Geb\u00e4ude", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Absetzung f\u00fcr Au\u00dfergew\u00f6hnliche technische und wirtschaftliche Abnutzung sonstiger Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Absetzung f\u00fcr Au\u00dfergew\u00f6hnliche technische und wirtschaftliche Abnutzung des Kfz", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kaufleasing", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Au\u00dferplanm\u00e4\u00dfige Abschreibungen auf immaterielle Verm\u00f6gensgegenst\u00e4nde", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Abschreibungen auf immaterielle Verm\u00f6gensgegenst\u00e4nde des Anlageverm\u00f6gens und Sachanlagen sowie auf aktivierte Aufwendungen f\u00fcr die Ingangsetzung und Erweiterung des Gesch\u00e4ftsbetriebs"
+           }
+          ], 
+          "name": "Abschreibungen auf immaterielle Verm\u00f6gensgegenst\u00e4nde des Anlageverm\u00f6gens und Sachanlagen sowie auf aktivierte Aufwendungen f\u00fcr die Ingangsetzung und Erweiterung des Gesch\u00e4ftsbetriebs"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Kalkulatorische Miete/Pacht", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorischer Unternehmerlohn", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorische Abschreibungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorische Zinsen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorische Wagnisse", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorischer Lohn f\u00fcr unentgeltliche Mitarbeiter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verrechnete kalkulatorische Miete/Pacht", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verrechnete kalkulatorische Abschreibungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verrechneter kalkulatorischer Lohn f\u00fcr unentgeltliche Mitarbeiter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verrechnete kalkulatorische Wagnisse", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verrechneter kalkulatorischer Unternehmerlohn", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verrechnete kalkulatorische Zinsen", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Sonstige betriebliche Aufwendungen"
+           }
+          ], 
+          "name": "Kalkulatorische Kosten"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Sonstige eingeschr\u00e4nkt abziehbare Betriebsausgaben (nicht abziehbarer Anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht Abzugsf\u00e4hige Bewirtungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht Abzugsf\u00e4hige Betriebsausgaben aus Werbe- und Repr\u00e4sentationskosten (nicht abziehbarer Anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden an Stiftungen f\u00fcr wissenschaftliche- mitdt\u00e4tige- kulturelle Zwecke", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden an Stiftungen f\u00fcr Kirchliche- religi\u00f6se und gemeinn\u00fctzige Zwecke", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden an politische Parteien", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden an Stiftungen f\u00fcr gemeinn\u00fctzige Zwecke i. S. d. \u00a7 52 Abs. 2 Nr. 1-3 AO", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden f\u00fcr mildt\u00e4tige Zwecke", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden f\u00fcr kirchliche- religi\u00f6se und gemeinn\u00fctzige Zwecke", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden- steuerlich nicht abziehbar", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden f\u00fcr wissenschaftliche und kulturelle Zwecke", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reinigung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kilometergelderstattung Arbeitnehmer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Arbeitnehmer Verpflegungsmehraufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Arbeitnehmer Fahrkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibung auf Umlaufverm\u00f6gen au\u00dfer Vorr\u00e4te und Wertpapieren des UV (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ausgleichsabgabe i. S. d. Schwerbehindertengesetzes", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Vorwegnahme k\u00fcnftiger Wertschwankungen im Umlaufverm\u00f6gen au\u00dfer Vorr\u00e4te und Wertpapiere", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen aus der Zuschreibung von steuertlich niedriger bewerteten Verbindlichkeiten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen aus der Zuschreibung von steuertlich niedriger bewerteten R\u00fcckstellungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bewirtungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige eingeschr\u00e4nkt abziehbare Betriebsausgaben (abziehbarer Anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufmerksamkeiten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reparaturen und Instandhaltung von technischen Anlagen und Maschinen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 19% USt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 15% USt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 16% USt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste aus steuerfreien EG-Lieferungen (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 7% USt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 7 % USt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 19% USt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste aus im Inland steuerpflichtigen EG-Lieferungen 15% USt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Geschenke ausschlie\u00dflich betrieblich genutzt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reparaturen und Instandhaltung von anderen Anlagen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "kfz-Reparaturen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fremdarbeiten (Vertrieb)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leasingfahrzeugkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "steuerlich nicht abzugsf\u00e4hige Versp\u00e4tungszuschl\u00e4ge und Zwangsgelder", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuerlich abzugsf\u00e4hige Versp\u00e4tungszuschl\u00e4ge und Zwangsgelder", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Transportversicherungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrzeugkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschluss- und Pr\u00fcfungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Werbekosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ausgangsfrachten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Arbeitnehmer \u00fcbernachtungsaufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Anlagenabg\u00e4nge Sachanlagen (Restbuchwert bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Anlagenabg\u00e4nge Finanzanlagen (Restbuchwert bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Anlagenabg\u00e4nge immaterielle Verm\u00f6gensgegenst\u00e4nde (Restbuchwert bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Finanzanlagen (bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen immaterieller Verm\u00f6gensgegenst\u00e4nde (bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Finanzanlagen 100% / 50% steuerfrei (inlandische Kap.Ges.)(bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Anlagenabg\u00e4nge Finanzanlagen 100% / 50% steuerfrei (inl\u00e4ndische Kap. Ges.)(Restbuchwert bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibung auf Umlaufverm\u00f6gen au\u00dfer Vorr\u00e4te und Wertpapieren des UV- steuerlich bedingt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer 19% ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer 16% ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kosten der Warenabgabe", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare H\u00e4lfte der Aufsichtsratsverg\u00fctungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gewerbesteuerlich zu ber\u00fccksichtigende Miete f\u00fcr Einrichtungen \u00a7 8 GewStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstiger Betriebsbedarf", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nebenkosten des Geldverkehrs", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen aus der Ver\u00e4u\u00dferung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsf\u00e4hig (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen aus Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsf\u00e4hig (inlandische Kap. Ges.)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen f\u00fcr Abraum- und Abfallbeseitigung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Beitr\u00e4ge ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mautgeb\u00fchren", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gas- Strom- Wasser", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mieten f\u00fcr Einrichtungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Buchf\u00fchrungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Unternehmer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fremdleistungen / Fremdarbeiten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Raumkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Aufwendungen betrieblich und Regelm\u00e4\u00dfig", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verluste aus dem Abgang von Gegenst\u00e4nden des Anlageverm\u00f6gens", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abgang von Wirtschaftsg\u00fctern des Umlaufverm\u00f6gens nach \u00a7 4 Abs. 3 Satz 4 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reparaturen und Instandhaltung von Bauten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verluste aus dem Abgang von Gegenst\u00e4nden des Umlaufverm\u00f6gens au\u00dfer Vorr\u00e4te", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige betriebliche Aufwendungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "B\u00fcrobedarf", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Telefax und Internetkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Geschenke abzugsf\u00e4hig", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrten zwischen Wohnung und Arbeitsst\u00e4tte (Haben)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Abgaben", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen f\u00fcr ein h\u00e4usliches Arbeitszimmer (nicht abziehbarer Anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Heizung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Netto-Pr\u00e4mie f\u00fcr R\u00fcckdeckung k\u00fcnftiger Versorgungsleistungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 16% USt (\u00fcbliche H\u00f6he)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Arbeitnehmer (nicht abziehbarer Anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reparaturen und Instandhaltung von Betriebs- und Gesch\u00e4ftsausstattung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Unternehmer Fahrkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Unternehmer (nicht abziehbarer anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Unternehmer Verpflegungsmehraufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abgang von Wirtschaftsg\u00fctern des Umlaufverm\u00f6gens 100% / 50% nicht abzugsf\u00e4hig (inlandische Kap. Ges.) nach \u00a7 4 Abs. 3 Satz 4 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kfz-Versicherungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Einstellungen in Sonderposten mit R\u00fccklageanteil (\u00a7 52 Abs. 16 EStG)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Einstellungen in Sonderposten mit R\u00fccklageanteil (Existenzgr\u00fcnderr\u00fccklage)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Einstellungen in die Pauschalwertberichtigung zu Forderungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Einstellungen in die Einzelwertberichtigung zu Forderungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Einstellungen in Sonderposten mit R\u00fccklageanteil (Steuerfreie R\u00fccklagen)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Einstellungen in Sonderposten mit R\u00fccklageanteil (Sonderabschreibungen)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Garagenmiete", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Reparaturen und Instandhaltung ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wartungskosten f\u00fcr Hard- und Software", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gewerbesteuerlich zu ber\u00fccksichtigendes Mietleasing \u00a7 8 GewStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mietleasing", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwand f\u00fcr Gew\u00e4hrleistung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Kfz-kosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Aufwendungen betrieblich und regelm\u00e4\u00dfig", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Periodenfremde Aufwendungen soweit nicht au\u00dferordentlich", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Aufwendungen unregelm\u00e4\u00dfig", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verkaufsprovisionen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Geschenke nicht abzugsf\u00e4hig", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Laufende Kfz-Betriebskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen- Spenden an Stiftungen f\u00fcr gemeinn\u00fctzige Zwecke i. S. d. \u00a7 52 Abs. 2 Nr. 4 AO", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen aus Bewertung Finanzmittelfonds", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen aus Kursdifferenzen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen 16% USt (bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen steuerfrei \u00a7 4 Nr. 1a UStG (bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen 19% USt (bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen steuerfrei \u00a7 4 Nr. 1b UStG (bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erl\u00f6se aus Verk\u00e4ufen Sachanlageverm\u00f6gen (bei Buchverlust)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Raumkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abgaben f\u00fcr betrieblich genutzten Grundbesitz", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen f\u00fcr ein h\u00e4usliches Arbeitszimmer (abziehbarer Anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Arbeitnehmer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verpackungsmaterial", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer 7% ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Grundst\u00fcckaufwendungen- sonstige neutrale", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Repr\u00e4sentationskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gewerbesteuerlich zu ber\u00fccksichtigendes Mietleasing \u00a7 8 GewStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Werkzeuge und Kleinger\u00e4te", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mietleasing", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fremdfahrzeugkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kfz-Kosten f\u00fcr betrieblich genutzte zum Privatverm\u00f6gen geh\u00f6rende Kraftfahrzeuge", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Instandhaltung betrieblicher R\u00e4ume", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Haftungsverg\u00fctung an Mitunternehmer \u00a7 15 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Rechts- und Beratungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zeitschriften und B\u00fccher", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fortbildungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Freiwillige Sozialleistungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verg\u00fctungen an Mitunternehmer \u00a7 15 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verg\u00fctungen an Mitunternehmer f\u00fcr die mietweise \u00fcberlassung ihrer Wirtschaftsg\u00fcter \u00a7 15 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pacht", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gewerbesteuerlich zu ber\u00fccksichtigende Miete \u00a7 8 GewStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mietekosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gewerbesteuerlich zu ber\u00fccksichtigende Pacht \u00a7 8 GewStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verg\u00fctungen an Mitunternehmer f\u00fcr die Pachtweise \u00fcberlassung ihrer Wirtschaftsg\u00fcter \u00a7 15 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abziehbare Aufsichtsratsverg\u00fctungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Porto", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Telefon", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrten zwischen Wohnung und Arbeitsst\u00e4tte (abziehbarer Anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrten zwischen Wohnung und Arbeitsst\u00e4tte (nicht abziehbarer Anteil)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Unternehmer \u00fcbernachtungsaufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Grundst\u00fcckaufwendungen- betrieblich", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Einstellungen in Sonderposten mit R\u00fccklageanteil (Ansparabschreibungen)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Versicherungen f\u00fcr Geb\u00e4ude", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Versicherungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verluste aus der Ver\u00e4u\u00dferung von Anteilen an Kapitalgesellschaften 100% / 50% nicht abzugsf\u00e4hig (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verluste aus dem Abgang von Gegenst\u00e4nden des Umlaufverm\u00f6gens (au\u00dfer Vorr\u00e4te) 100% / 50% nicht anzugsf\u00e4hig (inlandische Kap. Ges.)", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Sonstige betriebliche Aufwendungen"
+           }
+          ], 
+          "name": "Sonstige betriebliche Aufwendungen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Gegenkonto 6990-6998", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Herstellungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verwaltungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Vertriebskosten", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Sonstige betriebliche Aufwendungen"
+           }
+          ], 
+          "name": "Kosten bei Anwendung des Umsatzkostenverfahrens"
+         }
+        ], 
+        "name": "Betriebliche Aufwendungen"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Einstellung in die gesetzliche R\u00fccklage ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Einstellung in Gewinnr\u00fccklagen in die gesetzliche R\u00fccklage "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Einstellung in satzungm\u00e4\u00dfige R\u00fccklage ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Einstellung in Gewinnr\u00fccklagen in satzungm\u00e4\u00dfige R\u00fccklage "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Einstellung in die R\u00fccklage f\u00fcr eigene Anteile", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Einstellung in Gewinnr\u00fccklagen in die R\u00fccklage f\u00fcr eigene Anteile"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Vorabaussch\u00fcttung", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Aussch\u00fcttung"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Einstellung in andere Gewinnr\u00fccklagen ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Einstellung in Gewinnr\u00fccklagen in andere Gewinnr\u00fccklagen "
+           }, 
+           {
+            "children": [
+             {
+              "name": "(zu freien Verf\u00fcgung)", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Sonstige betriebliche Aufwendungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Vortrag auf neue Rechnung (GuV)", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Vortrag auf neue Rechnung"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Aufwendungen/Ertr\u00e4ge aus Umrechnungsdifferenzen", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Sonstige betriebliche Ertr\u00e4ge oder sonstige betriebliche Aufwendungen"
+           }
+          ], 
+          "name": "Einstellung in Gewinnr\u00fccklagen "
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Au\u00dferordentliche Aufwendungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Au\u00dferordentliche Aufwendungen finanzwirksam", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Au\u00dferordentliche Aufwendungen nicht finanzwirksam", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Au\u00dferordentliche Aufwendungen"
+           }
+          ], 
+          "name": "Au\u00dferordentliche Aufwendungen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Solidarit\u00e4tszuschlag f\u00fcr Vorjahre", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Solidarit\u00e4tszuschlag", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "K\u00f6rperschaftssteuer f\u00fcr Vorjahr", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "K\u00f6rperschaftssteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Solidarit\u00e4tszuschlagerstattungen f\u00fcr Vorjahre", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "K\u00f6rperschaftssteuererstattung f\u00fcr Vorjahre nach \u00a737 KStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "K\u00f6rperschaftssteuererstattungen f\u00fcr Vorjahre", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus der Aufl\u00f6sung von R\u00fcckstellungen f\u00fcr Steuern vom Einkommen und Ertrag", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuererstattungen Vorjahre f\u00fcr Steuern vom Einkommen und Ertrag", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuernachzahlungen Vorjahre f\u00fcr Steuern vom Einkommen und Ertrag", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gewerbesteuer ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Anrechenbarer Solidarit\u00e4tszuschlag auf Zinsabschlagsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kapitalertragsteuer 25%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsabschlagsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Anzurechnende ausl\u00e4ndische Quellensteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Anrechenbarer Solidarit\u00e4tszuschlag auf Kapitalertragsteuer 20%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kapitalertragsteuer 20%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Anrechenbarer Solidarit\u00e4tszuschlag auf Kapitalertragsteuer 25%", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Steuern vom Einkommen und Ertrag"
+           }
+          ], 
+          "name": "Steuern vom Einkommen und Ertrag"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Verlustvortrag nach Verwendung", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Verlustvortrag"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Finanzanlagen auf Grund steuerlicher Sondervorschriften 100% / 50% nicht abzugsf\u00e4hig (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Wertpapiere des Umlaufverm\u00f6gens 100% / 50% nicht abzugsf\u00e4hig (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Wertpapiere des Umlaufverm\u00f6gens", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Vorwegnahme k\u00fcnftiger Wertschwankungen bei Wertpapieren des Umlaufverm\u00f6gens", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Grund von Verlustanteilen an Mitunternehmerschaften \u00a7 8 GewStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Finanzanlagen 100% / 50% nicht abzugsf\u00e4hig (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Finanzanlagen ", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufverm\u00f6gens"
+           }
+          ], 
+          "name": "Abschreibungen auf Finanzanlagen und auf Wertpapiere des Umlaufverm\u00f6gens"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Zinsaufwendungen f\u00fcr langfristige Verbindlichkeiten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsaufwendungen f\u00fcr Geb\u00e4ude- die zum Betriebsverm\u00f6gen geh\u00f6ren", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsen zur Finanzierung des Anlageverm\u00f6gens", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Renten und dauernde Lasten aus Gr\u00fcndung/Erwerb \u00a78 GewStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsaufwendungen an Mitunternehmer f\u00fcr die Hingabe von Kapital \u00a7 15 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsaufwendungen f\u00fcr langfristige Verbindlichkeiten an verbundene Unternehmen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsaufwendungen \u00a7\u00a7 233a bis 237 AO Personensteuern", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuerlich nicht abzugsf\u00e4hige- andere Nebenleistungen zu steuern ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsaufwendungen \u00a7\u00a7 233a AO betriebliche Steuern", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuerlich abzugsf\u00e4hige- andere Nebenleistungen zu steuern ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsen und \u00e4hnliche Aufwendungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsen und \u00e4hnliche Aufwendungen an verbundene Unternehmen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "In Dauerschuldzinsen unqualifizierte Zinsen auf kurzfristige Verbindlichkeiten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Diskontaufwendungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Diskontaufwendungen an verbundene Unternehmen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zins\u00e4hnliche Aufwendungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zins\u00e4hnliche Aufwendungen an verbundene Unternehmen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsaufwendungen f\u00fcr kurzfristige Verbindlichkeiten an verbundene Unternehmen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsaufwendungen f\u00fcr kurzfristige Verbindlichkeiten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abzugsf\u00e4hige Schuldzinsen gem\u00e4\u00df \u00a7 4 Abs. 4a EStG (Hinzurechnungsbetrag)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsen und \u00e4hnliche Aufwendungen an verbundene Unternehmen 100% / 50% nicht abzugsf\u00e4hig (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zinsen und \u00e4hnliche Aufwendungen 100% / 50% nicht abzugsf\u00e4hig (inl\u00e4ndische Kap. Ges.)", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Zinsen und \u00e4hnliche Aufwendungen"
+           }
+          ], 
+          "name": "Zinsen und \u00e4hnliche Aufwendungen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Aufwendungen aus Verlust\u00fcbernahme", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Aufwendungen aus Verlust\u00fcbernahme"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Abgef\u00fchrte Gewinne auf Grund einer Gewinngemeinschaft", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abgef\u00fchrte Gewinne auf Grund eines Gewinn- oder Teilgewinnabf\u00fchrungsvertrags", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abgef\u00fchrte Gewinnanteile an stille Gesellschafter \u00a7 8 GewStG", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Auf Grund einer Gewinngemeinschaft- eines Gewinn- oder Teilgewinnabf\u00fchrungsvertrags abgef\u00fchrte Gewinne"
+           }
+          ], 
+          "name": "Aufwendungen aus Verlust\u00fcbernahme und auf Grund einer Gewinngemeinschaft- eines Gewinn- oder Teilgewinnabf\u00fchrungsvertrags abgef\u00fchrte Gewinne"
+         }
+        ], 
+        "name": "Weitere Aufwendungen"
+       }
+      ], 
+      "name": "Gewinn u. Verlust - Aufwendungen"
+     }
+    ], 
+    "name": "Gewinn u. Verlust"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "R\u00fcckstellungen zur Erf\u00fcllung der Aufbewahrungspflichten", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellungen f\u00fcr Abschluss- und Pr\u00fcfungskosten", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellungen f\u00fcr drohende Verluste aus schwebenden Gesch\u00e4ften", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellungen f\u00fcr Gew\u00e4hrleistungen (Gegenkonto 6790)", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Aufwandsr\u00fcckstellungen gem\u00e4\u00df \u00a7 249 Abs. 2 HGB", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellungen f\u00fcr Umweltschutz", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellungen f\u00fcr Personelkosten", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellungen f\u00fcr unterlassene Aufwendungenn f\u00fcr Instandhaltung- Nachholung in den ersten drei Monaten", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellungen f\u00fcr unterlassene Aufwendungenn f\u00fcr Instandhaltung- Nachholung innerhalb des 4. bis 12. Monats", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellungen f\u00fcr Abraum- und Abfallbeseitigung", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Sonstige R\u00fcckstellungen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Sonstige R\u00fcckstellungen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Gewerbesteuerr\u00fcckstellung", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "R\u00fcckstellung f\u00fcr latente Steuern ", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "K\u00f6rperschaftsteuerr\u00fcckstellung", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Steuerr\u00fcckstellungen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Steuerr\u00fcckstellungen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "R\u00fcckstellungen f\u00fcr Pensions\u00e4hnliche Verpflichtungen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Pensionsr\u00fcckstellungen", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "R\u00fcckstellungen f\u00fcr Pensionen und \u00e4hnliche Verpflichtungen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "R\u00fcckstellungen f\u00fcr Pensionen und \u00e4hnliche Verpflichtungen"
+           }
+          ], 
+          "name": "R\u00fcckstellungen "
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Abgrenzungen zur unterj\u00e4hrigen Kostenverrechnung f\u00fcr BWA", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Sonstige Passiva oder sontige Aktiva"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Passive Rechnungsabgrenzung", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Rechnungsabgrenzungsposten"
+           }
+          ], 
+          "name": "Rechnungsabgrenzungsposten"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Verbindlichkeiten aus Verm\u00f6gensbildung - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Verm\u00f6gensbildung - Restlaufzeit 1 bis 5 Jahre", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Lohn und Gehalt", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten f\u00fcr Einbehaltungen von Arbeitnehmern", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten an das Finanzamt aus abzuf\u00fchrendem Bauabzugsbetrag", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten im Rahmen der sozialen Sicherheit - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Betriebssteuern und -abgaben - Restlaufzeit bis 1 Jahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Einbehaltungen (KapESt und Solz auf KapESt)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten f\u00fcr Verbrauchsteuern", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten im Rahmen der sozialen Sicherheit", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus im anderen EG-Land steuerpflichtigen Lieferungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus im anderen EG-Land steuerpflichtigen sonstigen Leistungen/Werlieferungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten im Rahmen der sozialen Sicherheit (f\u00fcr \u00a7 4/3 EStG)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Steuerzahlungen an andere EG-L\u00e4nder", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten im Rahmen der sozialen Sicherheit - Restlaufzeit bis 1 Jahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Betriebssteuern und -abgaben", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Betriebssteuern und -abgaben - Restlaufzeit 1 bis 5 Jahre", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Betriebssteuern und -abgaben - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+              "root_type": "Liability"
+             }, 
+             {
+              "children": [
+               {
+                "name": "Kreditkartenabrechnung", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Gesellschaftern - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Gesellschaftern - Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Gesellschaftern ", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Agenturwarenabrechnungen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Kautionen - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Kautionen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Kautionen - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Kautionen - Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Gesellschaftern f\u00fcr offene Aussch\u00fcttungen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Gesellschaftern - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen atypisch stiller Gesellschaftler - Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen atypisch stiller Gesellschaftler - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen atypisch stiller Gesellschaftler - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen atypisch stiller Gesellschaftler ", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Gegenkonto 3500-3569 bei Aufteilung der Konten 3570-3598", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen typisch stiller Gesellschaftler - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Partiarische Darlehen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Partiarische Darlehen - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Partiarische Darlehen - Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Partiarische Darlehen - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen - Restlaufzeit gr\u00f6\u00dfer 5 jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen - Restlaufzeit 1 bis 5 jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen - Restlaufzeit bis 1 jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Sonstige Verbindlichkeiten z.B. nach \u00a7 11 Abs. 2 Satz 2 EStG f\u00fcr \u00a7 4/3 EStG", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Sonstige Verbindlichkeiten - Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Sonstige Verbindlichkeiten - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen typisch stiller Gesellschaftler", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen typisch stiller Gesellschaftler - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Darlehen typisch stiller Gesellschaftler - Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "(frei- in Bilanz kein Restlaufzeit vermerkt)", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Sonstige Verbindlichkeiten - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Sonstige Verbindlichkeiten", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Verm\u00f6gensbildung - Restlaufzeit bis 1 Jahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Verm\u00f6gensbildung ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Voraussichtliche Beitragsschuld gegen\u00fcber den Sozialversicherungstr\u00e4gern", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten im Rahmen der sozialen Sicherheit - Restlaufzeit 1 bis 5 Jahre", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Sonstige Verbindlichkeiten "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Umsatzsteuer nicht f\u00e4llig 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nicht f\u00e4llig aus im Inland steuerpflichtigen EG-Lieferungen 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nicht f\u00e4llig aus im Inland steuerpflichtigen EG-Lieferungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nicht f\u00e4llig aus im Inland steuerpflichtigen EG-Lieferungen 16%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nicht f\u00e4llig", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nicht f\u00e4llig 7%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nicht f\u00e4llig 16%", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Steuerr\u00fcckstellungen oder sonstige Verm\u00f6gensgegenst\u00e4nde "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Umsatzsteuer- Vorauszahlungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus innergemeinschaftlichem Erwerb 16%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus innergemeinschaftlichem Erwerb ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer 16%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus innergemeinschaftlichem Erwerb 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus im Inland steuerpflichtigen EG-Lieferungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer fr\u00fchere Jahre", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonstige Verrechnungskonten (Interimskonto)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "In Rechnung unrichtig oder unberechtigt ausgewiesene Steuerbetr\u00e4ge- UStVA Kz. 69", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Gewinnverf\u00fcgungskonto stille Gesellschafter", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer Vorjahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer laufendes Jahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer- Vorauszahlungen 1/11", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Nachsteuer- UStVA Kz. 65", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Umsatzsteuer-Identifikationsnummer", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nach \u00a713b UStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nach \u00a713b UStG 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus der Auslagerung von Gegenst\u00e4nden aus einem Umsatzsteuerlager", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nach \u00a713b UStG 16%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "children": [
+               {
+                "name": "Lohn- und Gehaltsverrechnung \u00a7 11 Abs. 2 EStG f\u00fcr \u00a7 a Abs. 3 EStG", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Lohn- und Gehaltsverrechnungskonto", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Einfuhrumsatzsteuer aufgeschoben bis", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Lohn- und Kirchensteuer", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus innergemeinschaftlichem Erwerb ohne Vorsteuerabzug", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer 7%", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde oder sonstige Verbindlichkeiten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verrechnungskonto geleistete Anzahlungen bei Buchung \u00fcber Kreditorenkonto", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde H-Saldo"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber verbundenen Unternehmen Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber verbundenen Unternehmen Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber verbundenen Unternehmen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber verbundenen Unternehmen Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen oder Forderungen gegen verbundene Unternehmen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Anleihen- konvertibel Restlaufzeit gr\u00f6\u00dfer 5 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Anleihen- nicht konvertibel Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Anleihen- nicht konvertibel Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Anleihen- konvertibel Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Anleihen- konvertibel", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Anleihen- konvertibel Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Anleihen- nicht konvertibel Restlaufzeit gr\u00f6\u00dfer 5 Jahre ", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Anleihen- nicht konvertibel", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Anleihen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "(frei- in Bilanz kein Restlaufzeit vermerkt)", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten aus Teilzahlungsvertr\u00e4gen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten aus Teilzahlungsvertr\u00e4gen Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten aus Teilzahlungsvertr\u00e4gen Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten aus Teilzahlungsvertr\u00e4gen Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten ", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten oder Kassenbestand- Bundesbankguthaben- Guthaben bei Kreditinstituten und Schecks"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Gegenkonto 3159-3209 bei Aufteilung der Konten 3210-3248", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten "
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Erhaltene- versteuerte Anzahlungen 19% Ust (Verbindlichkeiten)", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Anzahlungen 16% USt", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Anzahlungen 15% USt", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Anzahlungen 7% USt", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Anzahlungen Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Anzahlungen Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Erhaltene Anzahlungen Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Erhaltene Anzahlungen auf Bestellungen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Erhaltene Anzahlungen auf Bestellungen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen f\u00fcr Investitionen f\u00fcr \u00a7 4/3 EStG", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen ohne Kontokorrent ", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber Gesellschaftern Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber Gesellschaftern Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber Gesellschaftern ", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber Gesellschaftern Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Gegenkonto 3305-3307 bei Aufteilung der Verbindlichkeiten nach Steuers\u00e4tzen (E\u00fcR)", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Lieferanten Verbindlichkeiten Dienstleistungen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen zum erm\u00e4\u00dfigten Umsatzsteuersatz (E\u00fcR)", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen ohne Vorsteuer (E\u00fcR)", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz (E\u00fcR)", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Verbindlichkeiten aus Lieferungen und Leistungen ", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Verbindlichkeiten aus Lieferungen und Leistungen oder sonstige Verm\u00f6gensgegenst\u00e4nde"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Gegenkonto 3335-3348- 3420-3449- 3470-3499 bei Aufteilung Kreditorenkonto", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Verbindlichkeiten aus Lieferungen und Leistungen S-Saldo oder sonstige Verm\u00f6gensgegenst\u00e4nde H-Saldo"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Verbindlichkeiten aus der Annahme gezogener Wechsel und aus der Ausstellung eigener Wechsel"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten aus Lieferungen und Leistungen gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht Restlaufzeit 1 bis 5 Jahre", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht Restlaufzeit bis 1 Jahr", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Verbindlichkeiten gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht Restlaufzeit gr\u00f6\u00dfer 5 Jahre", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Verbindlichkeiten gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht ", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Verbindlichkeiten gegen\u00fcber Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht oder Forderungen gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht"
+           }
+          ], 
+          "name": "Verbindlichkeiten "
+         }
+        ], 
+        "name": "Fremdkapital"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Eingefordertes Nachschusskapital (Gegenkonto 1299)", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Kapitalr\u00fccklage durch Ausgabe von Anteilen \u00fcber Nennbetrag", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Kapitalr\u00fccklage durch Zuzahlungen gegen Gew\u00e4hrung eines Vorzugs f\u00fcr Anteile", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Kapitalr\u00fccklage durch Ausgabe von Schuldverschreibungen f\u00fcr Wandlungsrechte und Optionsrechte zum Erwerb von Anteilen", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "Andere Zuzahlungen in das Eigenkapital ", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Kapitalr\u00fccklage", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Kapitalr\u00fccklage"
+           }
+          ], 
+          "name": "Kapitalr\u00fccklage"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 7g Abs. 3 u. 7 EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 14 BerlinFG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil f\u00fcr F\u00f6rderung nach \u00a7 3 ZonenRFG / \u00a74-6 F\u00f6rdergebietsG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 4d EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 7g Abs. 1 EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil- Sonderabschreibung", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 82a EStDV", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 82d EStDV", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 82e EStDV", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 52 Abs. 16 EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 80 EStDV", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 79 EStDV", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 7d EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 1 EntwLStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 6d EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach Abschnitt 35 EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil nach \u00a7 6b EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonderposten mit R\u00fccklageanteil steuerfreie R\u00fccklagen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Sonderposten mit R\u00fccklageanteil"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sonderposten aus der W\u00e4hrungsumstellung auf den Euro", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Sonderposten aus der W\u00e4hrungsumstellung auf den Euro"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sonderposten f\u00fcr Zusch\u00fcsse und Zulagen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Sonderposten f\u00fcr Zusch\u00fcsse und Zulagen"
+           }
+          ], 
+          "name": "Sonderposten mit R\u00fccklageanteil"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Kommandit-Kapital", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "(zur freien Verf\u00fcgung )", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verlustausgleichskonto", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Gesellschafter-Darlehen", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Kapital Teilhaber"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Grundst\u00fccksertrag ( Umsatzsteuerschl\u00fcssel m\u00f6glich)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksertrag", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privatsteuern", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Ausgew\u00f6hnliche Belastungen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Unentgeltliche Wertabgaben", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonderausgaben beschr\u00e4nkt abzugsf\u00e4hig", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksaufwand (Umsatzsteuerschl\u00fcssel m\u00f6glich)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksaufwand", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privatentnahmen allgemein", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Zuwendungen- Spenden", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privateinlagen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonderausgaben unbeschr\u00e4nkt abzugsf\u00e4hig ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Privat Vollhafter/ Einzelunternehmer"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variables Kapital", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "(zur freien Verf\u00fcgung )", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Gesellschafter-Darlehen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Festkapital", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Kapital Vollhafter / Einzelunternehmer"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Eigenkapitalanteil von Wertaufholungen", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "Andere Gewinnr\u00fccklagen ", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Andere Gewinnr\u00fccklagen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00fccklage f\u00fcr Eigene Anteile", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "R\u00fccklage f\u00fcr Eigene Anteile"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Satzungsm\u00e4\u00dfige R\u00fccklagen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Satzungsm\u00e4\u00dfige R\u00fccklagen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Gesetzliche R\u00fccklagen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Gesetzliche R\u00fccklagen"
+           }
+          ], 
+          "name": "Gewinnr\u00fccklagen"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Privateinlagen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Zuwendungen- Spenden", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privatentnahmen allgemein", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksertrag", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonderausgaben unbeschr\u00e4nkt abzugsf\u00e4hig ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonderausgaben beschr\u00e4nkt abzugsf\u00e4hig", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Ausgew\u00f6hnliche Belastungen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Unentgeltliche Wertabgaben", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksaufwand", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privatsteuern", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Privat Teilhafter"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Gezeichnetes Kapital", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Gezeichnetes Kapital"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ausstehende Einlagen auf das gezeichnete Kapital- nicht eingefordert (Passivausweis- von gezeichnetem Kapital offen abgesetzt eingeforderte ausstehende Einlagen s. Konto 1298)", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Nicht eingeforderte ausstehende Einlagen"
+           }
+          ], 
+          "name": "Gezeichnetes Kapital"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Vortrag auf neue Rechnung (Bilanz)", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Vortrag auf neue Rechnung "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verlustvortrag vor Verwendung", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Gewinnvortrag vor Verwendung", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Gewinnvortrag / Verlustvortrag"
+           }
+          ], 
+          "name": "Gewinnvortrag / Verlustvortrag vor Verwendung"
+         }
+        ], 
+        "name": "Eigenkapital"
+       }
+      ], 
+      "name": "Bilanz - Passiva"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Ausleihungen an Gesellschafter", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Darlehen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Ausleihungen an nahe stehende Personen", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Sonstige Ausleihungen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Sonstige Ausleihungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00fcckdeckungsanspr\u00fcche aus Lebensversicherungen zum langfristigen Verbleib", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "R\u00fcckdeckungsanspr\u00fcche aus Lebensversicherungen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Atypisch stille Beteiligungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Andere Beteiligungen an Kapitalgesellschaften", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Andere Beteilgungen an Personengesellschaften", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Typisch stille Beteiligungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Beteiligungen einer GmbH Co. KG an einer Komplement\u00e4r GmbH", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Beteiligungen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Beteiligungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ausleihungen an verbundene Unternehmen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ausleihungen an verbundene Unternehmen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Anteile an verbundenen Unternehmen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Anteile an verbundenen Unternehmen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Genossenschaftsanteile zum langfristigen Verbleib", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Genossenschaftsanteile"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Festverzinsliche Wertpapiere", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wertpapiere mit Gewinnbeteiligungsanspr\u00fcchen- die dem Halbeink\u00fcnfteverfahren unterliegen", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Wertpapiere des Anlageverm\u00f6gens", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Wertpapiere des Anlageverm\u00f6gens"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ausleihungen an Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ausleihungen an Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht"
+           }
+          ], 
+          "name": "Finanzanlagen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Wohnbauten im Bau", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Anzahlungen auf Gesch\u00e4fts- Fabrik- und andere Bauten auf fremden Grundst\u00fccken", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Gesch\u00e4fts- Fabrik- und andere Bauten im Bau auf eingenen Grundst\u00fccken", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Anzahlungen auf Wohnbauten auf eigenen Grundst\u00fccken und grundst\u00fccksgleichen Rechten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Anzahlungen auf andere Anlagen- Betriebs und Gesch\u00e4ftsausstattung", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Gesch\u00e4fts- Fabrik- und andere Bauten im Bau auf fremden Grundst\u00fccken", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Anzahlungen auf Wohnbauten auf fremden Grundst\u00fccken ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Anzahlungen auf Grundst\u00fccke und grundst\u00fccksgleiche Rechte ohne Bauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Anzahlungen auf Gesch\u00e4fts- Fabrik-und andere Bauten auf eigenen Grundst\u00fccken und grundst\u00fccksgleichen Rechten ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wohnbauten im Bau", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Anzahlungen auf technische Anlagen und Maschinen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Andere Anlagen- Betriebs- und Gesch\u00e4ftsaustattung im Bau", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Technische Anlagen und Maschinen im Bau ", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Geleistete Anzahlungen und Anlagen im Bau", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Geleistete Anzahlungen und Anlagen im Bau"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Andere Bauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Gesch\u00e4ftsbauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Grundst\u00fccksgleiche Rechte (Erbbaurecht- Dauerwohnrecht)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Grundst\u00fccke mit Substanzverzehr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Grundst\u00fccksanteil des h\u00e4uslichen Arbeitszimmers", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Hof- und Wegebefestigungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Garagen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Einrichtungen f\u00fcr Wohnbauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Garagen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wohnbauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Fabrikbauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Geb\u00e4udeteile des h\u00e4uslischen Arbeitszimmers", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Gesch\u00e4ftsbauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wohnbauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Garagen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Au\u00dfenanlagen f\u00fcr Gesch\u00e4fts- Fabrik- und andere Bauten ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Bauten auf eigenen Grundst\u00fccken und grundst\u00fccksgleichen Rechten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Grundst\u00fcckswerte eigener bebauter Grundst\u00fccke", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Grundst\u00fccke und grundst\u00fccksgleiche Rechte ohne Bauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Unbebaute Grundst\u00fccke", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Einrichtungen f\u00fcr Gesch\u00e4fts-Fabrik und andere Bauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Hof- und Wegebefestigungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Au\u00dfenanlagen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Einrichtungen f\u00fcr Gesch\u00e4fts-Fabrik und andere Bauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Hof- und Wegebefestigungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Au\u00dfenanlagen ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Bauten auf fremden Grundst\u00fccken", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Fabrikbauten", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Andere Bauten", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Grundst\u00fccke- grundst\u00fccksgleiche Rechte und Bauten einschlie\u00dflich der Bauten auf fremden Grundst\u00fccken", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Grundst\u00fccke- grundst\u00fccksgleiche Rechte und Bauten einschlie\u00dflich der Bauten auf fremden Grundst\u00fccken"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Maschinen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Betriebsvorrichtungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Maschinen gebundene Werkzeuge", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Technische Anlagen ", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Technische Anlagen und Maschinen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Technische Anlagen und Maschinen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Geringwertige Wirtschaftsg\u00fcter bis 410 Euro", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "B\u00fcroeinrichtungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Sonstige Betriebs- und Gesch\u00e4ftsausstattung", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Andere Anlagen ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Werkzeuge", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Ger\u00fcst- und Schalungsmaterial", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Ladeneinrichtungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Einbauten in fremde Grundst\u00fccke", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Sonstige Transportmittel", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Lkw", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Pkw", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Andere Anlagen- Betriebs- und Gesch\u00e4ftsaustattung", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Andere Anlagen- Betriebs- und Gesch\u00e4ftsaustattung"
+           }
+          ], 
+          "name": "Sachanlagen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Geleistete Anzahlungen auf immaterielle Verm\u00f6gensgegenst\u00e4nde", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anzahlungen auf Gesch\u00e4fts- oder Firmenwert", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Geleistete Anzahlungen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "EDV-Software", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "\u00e4hnliche Rechte und Werte ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Konzessionen ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Gewerbliche Schutzrechte", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Lizenzen an gewerblichen Schutzrechten und \u00e4hnlichen Rechten und Werten ", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Konzessionen- gewerbliche Schutzrechte und \u00e4hnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Konzessionen- gewerbliche Schutzrechte und \u00e4hnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verschmelzungsmehrwert", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Verschmelzungsmehrwert"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Gesch\u00e4fts- oder Firmenwert", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Gesch\u00e4fts- oder Firmenwert"
+           }
+          ], 
+          "name": "Anlageverm\u00f6gen Immaterielle Verm\u00f6gensgegenst\u00e4nde"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Aufwendungen f\u00fcr die W\u00e4hrungsumstellung auf den Euro", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Aufwendungen f\u00fcr die W\u00e4hrungsumstellung auf den Euro"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Aufwendungen f\u00fcr die Ingangsetzung und Erweiterung des Gesch\u00e4ftsbetriebs", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Aufwendungen f\u00fcr die Ingangsetzung und Erweiterung des Gesch\u00e4ftsbetriebs"
+           }
+          ], 
+          "name": "Aufwendungen f\u00fcr die Ingangsetzung und Erweiterung des Gesch\u00e4ftsbetriebs"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Komplement\u00e4r-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das Kommandit-Kapital- nicht eingefordert", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Sonstige Aktiva oder sonstige Passiva"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ausstehende Einlagen auf das gezeichnete Kapital- nichteingefordert (Aktivausweis)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausstehende Einlagen auf das gezeichnete Kapital- eingefordert (Aktivausweis)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ausstehende Einlagen auf das gezeichnete Kapital"
+           }
+          ], 
+          "name": "Ausstehende Einlagen auf das gezeichnete Kapital"
+         }
+        ], 
+        "name": "Anlageverm\u00f6gen"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Nebenkasse 2", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Nebenkasse 1", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Kasse ", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Schecks", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Kassenbestand- Bundesbankguthaben- Guthaben bei Kreditinstituten und Schecks"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Postbank", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Postbank 2", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bank 1", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bank 3", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bank 5", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten (nicht im Finanzmittelfonds enthalten)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Finanzmittelanlagen im Rahmen der Kurzfristigen Finanzdisposition", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bundesbankguthaben", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Postbank 3", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Postbank 1", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bank", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bank 2", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bank 4", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "LZB-Guthaben", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Kassenbestand - Bundesbankguthaben - Guthaben b. Kreditinstit. u. Schecks o. Verbindlichk. geg. Kreditinstituten"
+           }
+          ], 
+          "name": "Kassenbestand- Bundesbankguthaben- Guthaben bei Kreditinstituten und Schecks"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Abgrenzung aktive latente Steuern ", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Abgrenzung latenter Steuern"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Damnum/Disagio", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Als Aufwand ber\u00fccksichtigte Umstazsteuer auf Anzahlungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Als Aufwand ber\u00fccksichtigte Z\u00f6lle und Verbrauchsteuern auf Vorr\u00e4te", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Aktive Rechnungsabgrenzung", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Rechnungsabgrenzungsposten"
+           }
+          ], 
+          "name": "Abgrenzungsposten"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Geleistete Anzahlungen 7% Vorsteuer", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Geleistete Anzahlungen 19% Vorsteuer", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Geleistete Anzahlungen 16% Vorsteuer", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Geleistete Anzahlungen 15% Vorsteuer", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Geleistete Anzahlungen auf Vorr\u00e4te", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Geleistete Anzahlungen "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Erhaltene Anzahlungen auf Bestellungen (", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Erhaltene Anzahlungen auf Bestellungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "In Arbeit befindliche Auftr\u00e4ge ", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "In Arbeit befindliche Auftr\u00e4ge ", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "In Arbeit befindliche Auftr\u00e4ge ", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "In Arbeit befindliche Auftr\u00e4ge ", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "In Arbeit befindliche Auftr\u00e4ge ", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "In Arbeit befindliche Auftr\u00e4ge "
+           }, 
+           {
+            "children": [
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "* Lager Bestand Zwischenkonto", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "* Lager Differenzkorrektur Gewinn / Verlust", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "* Lager Differenzkorrektur Marktwert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "* Lager Bestandswert Korrektur", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Waren (Bestand)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fertige Erzeugnisse und Waren"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse- unfertige Leistungen (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Unfertige Erzeugnisse- unfertige Leistungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "In Ausf\u00fchrung befindliche Bauauftr\u00e4ge", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "In Ausf\u00fchrung befindliche Bauauftr\u00e4ge", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "In Ausf\u00fchrung befindliche Bauauftr\u00e4ge", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "In Ausf\u00fchrung befindliche Bauauftr\u00e4ge", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "In Ausf\u00fchrung befindliche Bauauftr\u00e4ge", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "In Ausf\u00fchrung befindliche Bauauftr\u00e4ge"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Roh- Hilfs- und Betriebsstoffe (Bestand)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Roh- Hilfs- und Betriebsstoffe"
+           }
+          ], 
+          "name": "Vorr\u00e4te"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Wertberichtigungen zu Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen Unternhemen- mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wertberichtigungen zu Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen Unternhemen- mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht H-Saldo"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verrechnungskonto erhaltene Anzahlungen bei Buchungen \u00fcber Debitorenkonto", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Sonstige Verbindlichkeiten S-Saldo"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verrechnungskonto Ist-Versteuerung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "\u00fcberleitungskonto Kostenstellen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer 7%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer aus der Auslagerung von Gegenst\u00e4nden aus einem Unsatzsteuerlager", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geldtransit", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer nach \u00a7 13b UStG 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer nach \u00a7 13b UStG ", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer nach \u00a7 13b UStG 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer 7%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Umsatzsteuerforderungen laufendes Jahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wirtschaftsg\u00fcter des Umlaufverm\u00f6gens gem\u00e4\u00df \u00a74 Abs. 3 Satz 4 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Verrechnungskonto Gewinnermittlung \u00a7 4/3 EStG- nicht ergebniswirksam", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Verrechnungskonto Gewinnermittlung \u00a7 4/3 EStG- ergebniswirksam", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Vorsteuer nach allgemeinen Durchschnittss\u00e4tzen UStVA Kz. 63", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gegenkonto f\u00fcr Vorsteuer nach Durchschnittss\u00e4tzen f\u00fcr \u00a7 4 Abs. 3 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Vorsteuer aus Investitionen \u00a7 4/3 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufl\u00f6sung Vorsteuer aus Vorjahr \u00a7 4/3 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gegenkonto Vorsteuer \u00a7 4/3 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Zur\u00fcckzuzahlende Vorsteuer- \u00a7 15a Abs. 1 UStG- bewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fremdgeld", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Zur\u00fcckzuzahlende Vorsteuer- \u00a7 15a Abs. 2 UStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Nachtr\u00e4glich abziehbare Vorsteuer- \u00a7 15a Abs. 2 UStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Durchlaufende Posten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Zur\u00fcckzahlende Vorsteuer- \u00a7 15a Abs. 1 UStG- unbewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Nat\u00fcrlich abziehbare Vorsteuer- \u00a7 15a Abs. 1 UStG- unbewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Nachtr\u00e4glich abziehbare Vorsteuer- \u00a7 15a Abs. 1 UStG- bewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer nach \u00a7\u00a7 13a/13b UStG 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer nach \u00a7\u00a7 13a/13b UStG 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer nach \u00a7\u00a7 13a/13b UStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer aus innergemeinschaftlichem Erwerb 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer aus innergemeinschaftlichem Erwerb von Neufahrzeugen von Lieferanten ohne Ust-Identifikationsnummer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bezahlte Einfuhrumsatzsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Vorsteuer im Folgejahr abziehbar", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde oder sonstige Verbindlichkeiten"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderung gegen Aufsichtsrats- und Beirats- Mitglieder", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderung gegen Aufsichtsrats- und Beirats- Mitglieder - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Personal aus Lohn- und Gehaltsabrechnung - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Darlehen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Darlehen - Restlaufzeit bis 1 jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Darlehen - Restlaufzeit gr\u00f6\u00dfer 1 jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Vorstandsmitglieder und Gesch\u00e4ftsf\u00fchrer - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Vorstandsmitglieder und Gesch\u00e4ftsf\u00fchrer", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Vorstandsmitglieder und Gesch\u00e4ftsf\u00fchrer - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Gesellschafter - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Gesellschafter", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Gesellschafter - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Kautionen - Restlaufzeit gr\u00f6\u00dfer 1 Jar", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Kautionen - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Kautionen ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderung gegen Aufsichtsrats- und Beirats- Mitglieder - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Steuererstattungsanspruch gegen\u00fcber andere EG-L\u00e4ndern", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Umsatzsteuerforderungen fr\u00fchere Jahre", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus einrichteten Verbrauchsteuern", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Umsatzsteuerforderung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Umsatzsteuerforderungen Vorjahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "GmbH-Anteile zum kurzfristigen Verbleib", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Agenturwarenabrechnung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anspr\u00fcche aus R\u00fcckdeckungsversicherungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Genossenschaftsanteile zum kurzfristigen Verbleib", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "K\u00f6rperschaftsteuerr\u00fcckforderung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "K\u00f6rperschaftsteuerguthaben nach \u00a7 37 KStG - Restlaufzeit bis 1 Jahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "K\u00f6rperschaftsteuerguthaben nach \u00a7 37 KStG - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen an das Finanzamt aus abgef\u00fchrtem Bauabzugsbetrag", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Steuer\u00fcberzahlungen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Wertberichtigungen zu Forderungen mit einer Restlaufzeit bis zu 1 Jahr gegen verbundene Unternehmen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wertberichtigungen zu Forderungen mit einer Restlaufzeit von mehr als 1 Jahr gegen verbundene Unternehmen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen gegen verbundene Unternehmen H-Saldo"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Wechsel aus Lieferungen und Leistungen Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen ohne Kontokorent - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen nach \u00a711 Abs. 1 Satz 2 EStG f\u00fcr \u00a7 4/3 EStG", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen ohne Kontokorent - Restlaufzeit gr\u00f6\u00dfer 1 Jahr.", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Dienstleistungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Zweifelhafte Forderungen - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Zweifelhafte Forderungen - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Zweifelhafte Forderungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wechsel aus Lieferungen und Leistungen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wechsel aus Lieferungen und Leistungen Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wechsel aus Lieferungen und Leistungen- bundesbankf\u00e4hig.", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen zum erm\u00e4\u00dfigten Umsatzsteuersatz (E\u00fcR)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen zum allgemeinen Umsatzsteuersatz oder eines Kleinunternehmers (E\u00fcR)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen ohne Kontokorent", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen ohne Kontokorent", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen nach Durchschnittss\u00e4tzen gem\u00e4\u00df \u00a724 UStG (E\u00fcR)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Gegenkonto 1215-1218 bei Aufteilung der Forderungen nach Steuers\u00e4tzen (E\u00fcR)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen ohne Kontokorent", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus steuerfreien oder nicht steuerbaren Lieferungen und Leistungen (E\u00fcR)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen ohne Kontokorent", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen ohne Kontokorent", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Forderungen aus Lieferungen und Leistungen ", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus Lieferungen und Leistungen gegen Gesellschafter", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus Lieferungen und Leistungen gegen Gesellschafter - Restlaufzeit bis 1 Jahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus Lieferungen und Leistungen gegen Gesellschafter - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen aus Lieferungen und Leistungen oder sonstige Verbindlichkeiten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Eingeforderte Nachsch\u00fcsse (gegenkonto 2929)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Eingeforderte Nachsch\u00fcsse"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ausstehende Einlagen auf das gezeichnete Kapital- eingefordert (Forderungen- nicht eingeforderte ausstehende Einlagen s. Konto 2910)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Eingeforderte- noch ausstehende Kapitaleinlagen"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Besitzwechsel gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Besitzwechsel gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Besitzwechsel gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Besitzwechsel gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht- bundesbankf\u00e4hig", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Forderungen gegen Unternehmen- mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen geg. Untern.- m. d. e. Beteiligungsverh\u00e4ltnis besteht od. Verbindl. gegen Untern. - mit denen ein Beteiligungsverh\u00e4ltnis besteht"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Besitzwechsel gegen verbundene Unternehmen - Restlaufzeit gr\u00f6\u00dfer Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Besitzwechsel gegen verbundene Unternehmen - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Besitzwechsel gegen verbundene Unternehmen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen verbundene Unternehmen - Restlaufzeit gr\u00f6\u00dfer 1 Jahr. ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Besitzwechsel gegen verbundene Unternehmen- bundesbankf\u00e4hig", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen verbundene Unternehmen - Restlaufzeit bis 1 Jahr. ", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen gegen verbundenen Unternehmen - Restlaufzeit gr\u00f6\u00dfer 1 Jahr", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen gegen verbundenen Unternehmen", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus Lieferungen und Leistungen gegen verbundenen Unternehmen - Restlaufzeit bis 1 Jahr", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Forderungen gegen verbundene Unternehmen ", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen gegen verbundene Unternehmen oder Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Gegenkonto 1221-1229- 1240-1245- 1250-1257- 1270-1279- 1290-1297 bei Aufteilung Debitorenkonto", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen aus Lieferungen und Leistungen H-Saldo oder sonstige Verbindlichkeiten S-Saldo"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Einzelwertberechtigungen zu Forderungen mit einer Restlaufzeit von mehr als 1 Jahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Einzelwertberechtigungen zu Forderungen mit einer Restlaufzeit bis zu 1 Jahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Pauschalwertberichtigung zu Forderung mit einer Restlaufzeit von mehr als 1 Jahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Pauschalwertberichtigung zu Forderung mit einer Restlaufzeit bis zu 1 Jahr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gegenkonto zu sonstigen Verm\u00f6gensgegenst\u00e4nden bei Buchungen \u00fcber Debitorenkonto", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen aus Lieferungen und Leistungen H-Saldo"
+           }
+          ], 
+          "name": "Forderungen und sonstige Verm\u00f6gensgegenst\u00e4nde"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Anteile an herrschender oder mit Mehrheit beteiligter Gesellschaft", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anteile an verbundenen Unternehmen (Umlaufverm\u00f6gen)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Anteile an verbundenen Unternehmen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Eigene Anteile ", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Eigene Anteile "
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Finanzwechsel", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Andere Wertpapiere mit unwesentlichen Wertschwankungen im Sinne Textziffer 18 DRS 2", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wertpapieranlagen im Rahmen der Kurzfristigen Finanzdisposition ", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Sonstige Wertpapiere", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Sonstige Wertpapiere"
+           }
+          ], 
+          "name": "Wertpapiere"
+         }
+        ], 
+        "name": "Umlaufverm\u00f6gen"
+       }
+      ], 
+      "name": "Bilanz - Aktiva"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Privateinlagen"
+         }, 
+         {
+          "name": "Grundst\u00fccksaufwand"
+         }, 
+         {
+          "name": "Privatsteuern"
+         }, 
+         {
+          "name": "Sonderausgaben unbeschr\u00e4nkt abzugsf\u00e4hig"
+         }, 
+         {
+          "name": "Sonderausgaben beschr\u00e4nkt abzugsf\u00e4hig"
+         }, 
+         {
+          "name": "Unentgeltliche Wertabgaben"
+         }, 
+         {
+          "name": "Privatentnahmen allgemein"
+         }, 
+         {
+          "name": "Au\u00dfergew\u00f6hnliche Belastungen"
+         }, 
+         {
+          "name": "Zuwendungen- Spenden"
+         }, 
+         {
+          "name": "Grundst\u00fccksertrag"
+         }
+        ], 
+        "name": "Privat Teilhafter (f\u00fcr Verrechnung Gesellschafterdarlehen mit Eigenkapitalcharakter- Konto 9840-9849)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2011"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2010"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2013"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2012"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2015"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2014"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2017"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2016"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2018"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2019"
+         }, 
+         {
+          "name": "Name des Gesellschafters Teillhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2077"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2076"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2075"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2074"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2073"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2072"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2071"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2070 "
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2079"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2078"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9827"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9829"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2059"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2055"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2054"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2057"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2056"
+         }, 
+         {
+          "name": "L\u00f6sch- und Korrekturschl\u00fcssel"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0083"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0084"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto 9840-49 Teilhafter"
+         }, 
+         {
+          "name": "Gebrauchs\u00fcberlassung Vollhafter"
+         }, 
+         {
+          "name": "Tantieme Vollhafter"
+         }, 
+         {
+          "name": "Name des Gesellschafters Vollhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2051"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2050"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0069"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9826"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9824"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9825"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9822"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9823"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9820 "
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9821"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9828"
+         }, 
+         {
+          "name": "Tantieme Teillhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9816"
+         }, 
+         {
+          "name": "T\u00e4tigkeitsverg\u00fctung Vollhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0082"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2058"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2053"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2052"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2028"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2020"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2021"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2024"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2026"
+         }, 
+         {
+          "name": "L\u00f6sch- und Korrekturschl\u00fcssel"
+         }, 
+         {
+          "name": "Sonstige Verg\u00fctungen Teillhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2008"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2009"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2006"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2007"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2004"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2005"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2002"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2003"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2000"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2001"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2064"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2065"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2066"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2067"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2060"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2061"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2062"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2063"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2068"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 2069"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9811"
+         }, 
+         {
+          "name": "T\u00e4tigkeitsverg\u00fctung Teillhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0068"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0062"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0063"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0060"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0061"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0066"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0067"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0064"
+         }, 
+         {
+          "name": "Darlehensverzinsung Teillhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9814"
+         }, 
+         {
+          "name": "Sonstige Verg\u00fctungen Vollhafter"
+         }, 
+         {
+          "name": "Restanteil Teillhafter"
+         }, 
+         {
+          "name": "Darlehensverzinsung Vollhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2029"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2023"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9813"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9812"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9810"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9817"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9815"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 0065"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0089"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0088"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0081"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0080 "
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0085"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0087"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Teilhafter 0086"
+         }, 
+         {
+          "name": "Restanteil Vollhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2022"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2025"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 2027"
+         }, 
+         {
+          "name": "Gebrauchs\u00fcberlassung Teillhafter"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9819"
+         }, 
+         {
+          "name": "Anteil f\u00fcr Konto Vollhafter 9818"
+         }
+        ], 
+        "name": "Statistische Konten f\u00fcr die Kapitalkontenentwicklung"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Verlust-/ Vortragskonto"
+         }, 
+         {
+          "name": "Gesellschafter-Darlehen"
+         }, 
+         {
+          "name": "Verrechnungskonto f\u00fcr Einzahlungsverpflichtungen"
+         }
+        ], 
+        "name": "Kapital Personenhandelsgesellschaft Vollhafter"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Verrechnungskonto f\u00fcr Einzahlungsverpflichtungen"
+         }, 
+         {
+          "name": "Gesellschafter-Darlehen"
+         }
+        ], 
+        "name": "Kapital Personenhandelsgesellschaft Teilhafter"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Steueraufwand der Gesellschafter "
+         }, 
+         {
+          "name": "Gegenkonto zu 9887"
+         }
+        ], 
+        "name": "Steueraufwand der Gesellschafter"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Statistische Konten f\u00fcr den Gewinnzuschlag nach \u00a7\u00a7 6b- 6c und 7g EStG (Haben-Buchung)"
+         }, 
+         {
+          "name": "Statistische Konten f\u00fcr den Gewinnzuschlag- Gegenkonto zu 9890"
+         }
+        ], 
+        "name": "Statistische Konten f\u00fcr Gewinnzuschlag"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen pers\u00f6nlich haftender Gesellschafter"
+         }, 
+         {
+          "name": "Nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen Kommanditisten"
+         }
+        ], 
+        "name": "Nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Verrechnungskonto f\u00fcr nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen Kommanditisten"
+         }, 
+         {
+          "name": "Verrechnungskonto f\u00fcr nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen pers\u00f6nlich haftender Gesellschafter"
+         }
+        ], 
+        "name": "Verrechnungskonto f\u00fcr nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anteil f\u00fcr Verbindlichkeitskonten"
+         }, 
+         {
+          "name": "Verrechnungskonto f\u00fcr Anteil Verbindlichkeitskonten"
+         }
+        ], 
+        "name": "Statistische Konten f\u00fcr den GuV-Ausweis in \"Gutschrift bzw. Belastung auf Verbindlichkeitskonten\" bei den Zuordnungstabellen f\u00fcr PersHG nach KapCoRiLiG"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (E\u00fcR)"
+         }, 
+         {
+          "name": "Umsatzsteuer in den Forderungen zum erm\u00e4\u00dfigten Umsatzsteuersatz (E\u00fcR)"
+         }, 
+         {
+          "name": "Gegenkonto 9893-9894 f\u00fcr die Aufteilung der Umsatzsteuersatz (E\u00fcR)"
+         }, 
+         {
+          "name": "Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (E\u00fcR)"
+         }, 
+         {
+          "name": "Vorsteuer in den Verbindlichkeiten zum erm\u00e4\u00dfigten Umsatzsteuersatz (E\u00fcR)"
+         }, 
+         {
+          "name": "Gegenkonto 9896-9897 f\u00fcr die Aufteilung der Vorsteuer (E\u00fcR)"
+         }, 
+         {
+          "name": "SO Commitment"
+         }
+        ], 
+        "name": "Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/ Verbindlichkeiten (E\u00fcR)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Minderung der Entnahmen \u00a74 (4a) EStG (Haben)"
+         }, 
+         {
+          "name": "Gegenkonto zur Minderung der Entnahmen \u00a74 (4a) EStG"
+         }, 
+         {
+          "name": "Gegenkonto zur Erh\u00f6hung der Entnahmen \u00a74 (4a) EStG (Haben)"
+         }, 
+         {
+          "name": "Erh\u00f6hung der Entnahmen \u00a74 (4a) EStG"
+         }
+        ], 
+        "name": "Statistische Konten zu \u00a7 4 (4a) EStG"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Auftragsbestand"
+         }, 
+         {
+          "name": "Erweiterungsinvestitionen"
+         }, 
+         {
+          "name": "Anzahl der Barkunden"
+         }, 
+         {
+          "name": "Besch\u00e4ftigte Personen"
+         }, 
+         {
+          "name": "Verkaufsraum m2"
+         }, 
+         {
+          "name": "Unbezahlte Personen"
+         }, 
+         {
+          "name": "Verkaufskr\u00e4fte"
+         }, 
+         {
+          "name": "Gegenkonto f\u00fcr statistische Mengeneinheiten Konten 9101-9107 und Konten 9116-9118"
+         }, 
+         {
+          "name": "Gegenkonto zu Konten 9120- 9135-9140"
+         }, 
+         {
+          "name": "Anzahl Kreditkunden monatlich"
+         }, 
+         {
+          "name": "Anzahl Rechnungen"
+         }, 
+         {
+          "name": "Auftragseingang im Gesch\u00e4ftsjahr"
+         }, 
+         {
+          "name": "Verkaufstage"
+         }, 
+         {
+          "name": "Gesch\u00e4ftsraum m2"
+         }, 
+         {
+          "name": "Anzahl Kreditkunden aufgelaufen"
+         }
+        ], 
+        "name": "Statistische Konten f\u00fcr Betriebswirtschaftliche Auswertungen (BWA)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gegenkonto zu 9210"
+         }, 
+         {
+          "name": "Produktive L\u00f6hne"
+         }, 
+         {
+          "name": "Besch\u00e4ftigte Personen"
+         }, 
+         {
+          "name": "Gegenkonto zu 9200"
+         }
+        ], 
+        "name": "Statistische Konten f\u00fcr den Kennziffernteil der Bilanz"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Offene Posten aus 2002"
+         }, 
+         {
+          "name": "Offene Posten aus 2003"
+         }, 
+         {
+          "name": "Offene Posten aus 2009"
+         }, 
+         {
+          "name": "Offene Posten aus 2008"
+         }, 
+         {
+          "name": "Summenvortragskonto"
+         }, 
+         {
+          "name": "Offene Posten aus 2000"
+         }, 
+         {
+          "name": "Offene Posten aus 2001"
+         }, 
+         {
+          "name": "Offene Posten aus 2006"
+         }, 
+         {
+          "name": "Offene Posten aus 2007"
+         }, 
+         {
+          "name": "Offene Posten aus 2004"
+         }, 
+         {
+          "name": "Offene Posten aus 2005"
+         }, 
+         {
+          "name": "Offene Posten aus 1998"
+         }, 
+         {
+          "name": "Offene Posten aus 1991"
+         }, 
+         {
+          "name": "Offene Posten aus 1992"
+         }, 
+         {
+          "name": "Offene Posten aus 1993"
+         }, 
+         {
+          "name": "Offene Posten aus 1994"
+         }, 
+         {
+          "name": "Offene Posten aus 1995"
+         }, 
+         {
+          "name": "Offene Posten aus 1996"
+         }, 
+         {
+          "name": "Offene Posten aus 1997"
+         }, 
+         {
+          "name": "Saldenvortr\u00e4ge"
+         }, 
+         {
+          "name": "Saldenvortr\u00e4ge- Sachkonten"
+         }, 
+         {
+          "name": "Saldenvortr\u00e4ge Kreditoren"
+         }, 
+         {
+          "name": "Saldenvortr\u00e4ge Debitoren"
+         }, 
+         {
+          "name": "Offene Posten aus 1990"
+         }, 
+         {
+          "name": "Offene Posten aus 1999"
+         }
+        ], 
+        "name": "Vortragskonten"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Eigenkapitalersetzende Gesellschafterdarlehen "
+         }, 
+         {
+          "name": "Gegenkonto zu 9250 und 9255"
+         }, 
+         {
+          "name": "Ungesicherte Gesellschafterdarlehen mit Restlaufzeit gr\u00f6\u00dfer 5 Jahre"
+         }
+        ], 
+        "name": "Eigenkapitalersetzende Gesellschafterdarlehen "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Kurzfristige R\u00fcckstellungen"
+         }, 
+         {
+          "name": "Langfristige R\u00fcckstellungen- au\u00dfer Pensionen"
+         }, 
+         {
+          "name": "Mittelfristige R\u00fcckstellungen"
+         }, 
+         {
+          "name": "Gegenkonto zu Konto 9260 - 9268"
+         }
+        ], 
+        "name": "Aufgliederung der R\u00fcckstellungen"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gegenkonto zu 9220-9221"
+           }, 
+           {
+            "name": "Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)"
+           }
+          ], 
+          "name": "Gezeichnetes Kapital in Euro"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)"
+           }
+          ], 
+          "name": "Gezeichnetes Kapital in DM"
+         }
+        ], 
+        "name": "Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer W\u00e4hrung"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Investitionszulagen "
+         }, 
+         {
+          "name": "Gegenkonto zu Konten 9230- 9238"
+         }, 
+         {
+          "name": "Baukostenzusch\u00fcsse"
+         }, 
+         {
+          "name": "Investitionszusch\u00fcsse "
+         }, 
+         {
+          "name": "Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten"
+         }, 
+         {
+          "name": "Gegenkonto zu Konto 9245-47"
+         }, 
+         {
+          "name": "Forderungen aus Sachanlagenverk\u00e4ufen bei sonstigen Verm\u00f6gensgegenst\u00e4nden"
+         }, 
+         {
+          "name": "Gegenkonto zu Konto 9240-43"
+         }, 
+         {
+          "name": "Forderungen aus Verk\u00e4ufen von Finanzanlagen bei sonstigen Verm\u00f6gensgegenst\u00e4nden"
+         }, 
+         {
+          "name": "Forderungen aus Verk\u00e4ufen immaterielle Verm\u00f6gensgegenst\u00e4nde bei sonstigen Verm\u00f6gensgegenst\u00e4nden"
+         }, 
+         {
+          "name": "Investitionsverbindlichkeiten aus Sachanlagenk\u00e4ufen bei Leistungsverbindlichkeiten"
+         }, 
+         {
+          "name": "Investitionsverbindlichkeiten aus K\u00e4ufen von Finanzanlagen bei Leistungsverbindlichkeiten"
+         }, 
+         {
+          "name": "Investitionsverbindlichkeiten aus K\u00e4ufen von immateriellen Verm\u00f6gensgegenst\u00e4nden bei Leistungsverbindlichkeiten"
+         }
+        ], 
+        "name": "Passive Rechnungsabgrenzung"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Verbindlichkeiten aus B\u00fcrgschaften- Wechsel- und Scheckb\u00fcrgschaften gegen\u00fcber verbundenen Unternehmen"
+         }, 
+         {
+          "name": "Verbindlichkeiten aus Gew\u00e4hrleistungsvertr\u00e4gen gegen\u00fcber verbundenen Unternehmen"
+         }, 
+         {
+          "name": "Haftung aus der Bestellung von Sicherheiten f\u00fcr fremde Verbindlichkeiten"
+         }, 
+         {
+          "name": "Verbindlichkeiten aus der Begebung und \u00fcbertragung von Wechseln"
+         }, 
+         {
+          "name": "Verbindlichkeiten aus der Begebung und \u00fcbertragung von Wechseln gegen\u00fcber verbundenen Unternehmen"
+         }, 
+         {
+          "name": "Verbindlichkeiten aus B\u00fcrgschaften- Wechsel- und Scheckb\u00fcrgschaften"
+         }, 
+         {
+          "name": "Verpflichtungen aus Treuhandverm\u00f6gen"
+         }, 
+         {
+          "name": "Verbindlichkeiten aus Gew\u00e4hrleistungsvertr\u00e4gen"
+         }, 
+         {
+          "name": "Gegenkonto zu 9271 - 9279 (Soll-Buchung)"
+         }, 
+         {
+          "name": "Haftung aus der Bestellung von Sicherheiten f\u00fcr fremde Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen"
+         }
+        ], 
+        "name": "Statistische Konten f\u00fcr in der Bilanz auszuweisende Haftungsverh\u00e4ltnisse"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Verpflichtungen aus Miet- und Leasingsvertr\u00e4gen"
+         }, 
+         {
+          "name": "Andere Verpflichtungen gem\u00e4\u00df \u00a7 285 Nr. 3 HGB gegen\u00fcber verbundenen Unternehmen"
+         }, 
+         {
+          "name": "Verpflichtungen aus Miet- und Leasingsvertr\u00e4gen gegen\u00fcber verbundenen Unternehmen"
+         }, 
+         {
+          "name": "Gegenkonto zu 9281-9284"
+         }, 
+         {
+          "name": "Andere Verpflichtungen gem\u00e4\u00df \u00a7 285 Nr. 3 HGB"
+         }
+        ], 
+        "name": "Statistische Konten f\u00fcr die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Steuerrechtlicher Ausgleichsposten"
+           }
+          ], 
+          "name": "Steuerrechtlicher Ausgleichsposten"
+         }, 
+         {
+          "name": "Statistisches Konto Fremdgeld"
+         }, 
+         {
+          "name": "Gegenkonto zu 9292"
+         }, 
+         {
+          "name": "Statistisches Konto steuerfreie Auslagen"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Einlagen stiller Gesellschafter"
+           }
+          ], 
+          "name": "Einlagen stiller Gesellschafter"
+         }, 
+         {
+          "name": "Gegenkonto zu 9290"
+         }, 
+         {
+          "name": "Mahngeb\u00fchren bei Buchungen \u00fcber Debitoren bei \u00a7 4 Abs. 3 EStG"
+         }, 
+         {
+          "name": "Gegenkonto zu 9287 und 9288"
+         }, 
+         {
+          "name": "Zinsen bei Buchungen \u00fcber Debitoren bei \u00a7 4 Abs. 3 EStG"
+         }
+        ], 
+        "name": "Statistische Konten f\u00fcr 4 Abs. 3 EStG"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Einzahlungsverpflichtungen pers\u00f6nlich haftender Gesellschafter"
+         }, 
+         {
+          "name": "Einzahlungsverpflichtungen Kommanditisten"
+         }
+        ], 
+        "name": "Einzahlungsverpflichtungen im Bereich der Forderungen"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ausgleichsposten f\u00fcr aktivierte Bilanzierungshilfen"
+         }, 
+         {
+          "name": "Ausgleichsposten f\u00fcr aktivierte eigene Anteile "
+         }
+        ], 
+        "name": "Ausgleichsposten f\u00fcr aktivierte eigene Anteile und Bilanzierungshilfen"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gegenkonto zu 9918 (Haben)"
+         }, 
+         {
+          "name": "Kinderbetreuungskosten (wie Betriebsausgaben steuerlich anzusetzender Betrag)"
+         }
+        ], 
+        "name": "Statistische konten f\u00fcr Kinderbetreuungskosten"
+       }
+      ], 
+      "name": "Vortrags- Kapital- und Statistische Konten"
+     }
+    ], 
+    "name": "Bilanz"
+   }
+  ], 
+  "name": "Deutscher Kontenplan SKR04"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/de_l10n_de_chart_template.json b/setup/doctype/company/charts/de_l10n_de_chart_template.json
new file mode 100644
index 0000000..405e781
--- /dev/null
+++ b/setup/doctype/company/charts/de_l10n_de_chart_template.json
@@ -0,0 +1,5627 @@
+{
+ "name": "Deutscher Kontenplan SKR03", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "GewSt-Nachzahlung Vorjahre", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "GewSt-Erstattung Vorjahre", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aufl\u00f6sung GewSt-R\u00fcckstellg. \u00a7 4/5b", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aufl\u00f6sung Gewerbesteuerr\u00fcckstellung", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Solidarit\u00e4tszuschlag", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Solidarit\u00e4tszuschlag f\u00fcr Vorjahre", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "K\u00f6rperschaftsteuer f\u00fcr Vorjahre", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "K\u00f6rperschaftsteuererstattung Vorjahre", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "K\u00f6rperschaftsteuererstattung VJ \u00a7 37", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "K\u00f6rperschaftsteuer-Erh\u00f6hung \u00a7 38 Abs. 5", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ertr\u00e4ge Zuf\u00fchrg/Aufl\u00f6sg latente Steuern", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aufw. Zuf\u00fchrg/Aufl\u00f6sung latente Steuern", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "K\u00f6rperschaftsteuer", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Anzurechn. ausl\u00e4ndische Quellensteuer", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Solidarit\u00e4tszuschl. auf Zinsabschlagst.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kapitalertragsteuer 25%", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kapitalertragsteuer 20%", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Solidarit\u00e4tszuschl.-Erstattung Vorjahre", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sol.z. auf Kapitalertragsteuer 25%", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Zinsabschlagsteuer", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sol. auf Kapitalertragsteuer 20%", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gewerbesteuer", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "GewSt-Nachzahlung/-Erstattung VJ \u00a74/5b", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Steuern Eink.u.Ertr"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Nicht abzugsf\u00e4h.and.Nebenleist.z.Steuern", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsaufwendungen an verb.Unternehmen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsaufwendungen f.kfr.Verbindlichkeit.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Nicht abzugsf. Schuldzinsen \u00a7 4/4a", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsen und \u00e4hnliche Aufw. z.T. nicht abz.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsen, Aufwendg. verb. UN z.T. n.abz.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsen auf Kontokorrentkonten", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsaufwend. f.kfr. Verb.an verbund. UN", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsaufw. \u00a7 233a AO,\u00a7 4 Abs. 5b EStG", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Diskontaufwendungen an verbundene UN", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Diskontaufwendungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zins\u00e4hnliche Aufwendungen an verb.UN", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zins\u00e4hnliche Aufwendungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abzugsf\u00e4h. and. Nebenleist. zu Steuern", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsen und \u00e4hnliche Aufwendungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsaufw. \u00a7 233a AO betriebliche Steuern", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abzinsung KSt-Erh\u00f6hungsbetrag \u00a7 38", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsaufwendungen \u00a7\u00a7 233a bis 237 AO", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsaufw. f\u00fcr lfr. Verbindlichk.verb.UN", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsen an Mitunternehmer \u00a7 15 EStG", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsaufwendungen f.lfr.Verbindlichkeit.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsen f\u00fcr Geb\u00e4ude im Betriebsverm\u00f6gen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Renten und dauernde Lasten", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zinsen zur Finanzierung Anlageverm\u00f6gen", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Zinsaufwand"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Abg\u00e4nge Finanzanlagen Restbuchwert (Verlust)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abgang Finanzanlagen z.T. n.abz., RBW (Verlust)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abg\u00e4nge Sachanlagen Restbuchwert", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abg\u00e4nge immat. Verm\u00f6gensgegenst. RBW (Verlust)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Nicht abziehbare Vorsteuer", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Nicht abziehbare Vorsteuer 7%", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Nicht abziehbare Vorsteuer 19%", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Sonst.Aufwendungen, betriebsfr.u.regelm.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Einstellung in die EWB zu Forderungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Einstellung in die PWB zu Forderungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendg. an Stiftg. kirchl./rel./gemein.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendg. an Stiftg. gem. \u00a7 52/2/4 AO", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendg.Spenden wissensch./kult. Zweck", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendungen,Spenden steuerl. n. abziehb.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendungen,Spenden kirchl./rel./gemein.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendungen,Spenden mildt\u00e4tige Zwecke", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Nicht abziehbare AR-Verg\u00fctungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendungen,Spenden an politische Partei", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendg. an Stiftg. gem. \u00a7 52/2/1-3 AO", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abziehbare Aufsichtsratsverg\u00fctung", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Periodenfremde Aufwendungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Au\u00dferordentliche Aufwendungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Ao. Aufwendungen finanzwirksam", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Ao. Aufwendungen nicht finanzwirksam", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Aufwend. Zuschreibung R\u00fcckstellungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Aufwend. Zuschreibung Verbindlichk.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Einstellungen SoPo mit R\u00fccklage-Anteil", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Einstellungen SoPo \u00a7 7g Abs.2 EStG n.F.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Einstellungen SoPo mit R\u00fccklage-Anteil", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abgang WG des UV \u00a7 4/3 z.T. nicht abz", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verlust Ver\u00e4u\u00df.Ant. KapGes z.T. n. abz.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verluste aus Anlagenabgang", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abgang WG des UV \u00a7 4 Abs. 3 EStG", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verluste aus Abgang UV z.T. n. abziehbar", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Aufwendungen aus Verlust\u00fcbernahme", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abgef. Gewinne stille Gesellschafter \u00a78", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abgef. Gewinne / Gewinngemeinschaft", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Abgef. Gewinne / Gewinn-/Teilgewinnabf.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Sonstige Aufwendungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Sonstige Aufwendungen unregelm\u00e4\u00dfig", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Zuwendg. an Stiftg. wiss./mildt./kultur.", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verluste aus Abgang von Umlaufverm\u00f6gen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Grundst\u00fccksaufwendungen, neutral", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Betriebsfremde Aufwendungen", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Sonst. neutr. Aufw"
+         }
+        ], 
+        "name": "Neutraler Aufwand"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Verrechneter kalk. Lohn, unentgeltl. AN", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verrechnete kalkul. Miete und Pacht", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verrechnete kalkul. Abschreibungen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verrechnete kalkulatorische Zinsen", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verrechnete kalkulatorische Wagnisse", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Verrechneter kalkul.Unternehmerlohn", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Verr. kalk. Kosten"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Abg\u00e4nge Finanzanlagen Restbuchwert (Gewinn)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Abg\u00e4nge Sachanlagen Restbuchwert", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Abgang Finanzanlagen z.T. stfrei, RBW", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Abg\u00e4nge immat. Verm\u00f6gensgegenst. RBW (Gewinn)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr. Aufl. SoPo m. R\u00fcckl.ant.\u00a752/16EStG", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Aufl. SoPo \u00a7 7g/3 a.F, 7g/2 n.F", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Aufl\u00f6sung von R\u00fcckstellungen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge steuerl. Bewertung R\u00fcckstellung", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus Herabsetzung PWB zu Ford.", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus Herabsetzung EWB zu Ford.", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus abgeschriebenen Forderg.", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ao. Ertr\u00e4ge nicht finanzwirksam", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Zuschreibg. Finanzanlageverm\u00f6gen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Zuschreibg. FAV z.T. steuerfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Zuschreibg. Sachanlageverm\u00f6gen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Zuschreibg. immat. Anlageverm\u00f6g.", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Zuschreibg. UV z.T. steuerfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Zuschreibg. anderes AV z.T. stfr", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Zuschreibung Umlaufverm\u00f6gen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Periodenfremde Ertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Grundst\u00fccksertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Gewinne auf Grund Gewinngemeinschaft", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus Verlust\u00fcbernahme", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Gewinne auf Grund Gewinn/Teilgewinnabf", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Aufl. SoPo Existenzgr\u00fcnderr\u00fcckl", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Aufw./Ertr\u00e4ge aus Umrechnungsdifferenz", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Bewertung Verbindlichkeiten", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Verkauf Finanzanl. z.T. n.abz.", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se a. Verk\u00e4ufen Finanzanlagen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Verk\u00e4ufe immat.Verm\u00f6gensgegenst", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ao. Ertr\u00e4ge finanzwirksam", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Au\u00dferordentliche Ertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Verk\u00e4ufe immat.Verm\u00f6gensgegenst", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Verkauf Finanzanl. z.T. stfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se a. Verk\u00e4ufen Finanzanlagen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Verkauf WG des UV \u00a7 4/3 EStG", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Verkauf WG UV \u00a7 4/3 ustfrei, z.T. stfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Verkauf WG des UV \u00a74/3, stfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Verkauf WG des UV \u00a74/3, 19% USt", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Betriebsfremde Ertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus Abgang UV z.T. steuerfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus Abgang von UV-Gegenst\u00e4nden", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Ver\u00e4u\u00df.Ant. KapGes z.T. stfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus Abgang von AV-Gegenst\u00e4nden", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sonstige betriebl. regelm. Ertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sonstige Ertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sonstige Ertr\u00e4ge unregelm\u00e4\u00dfig", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sonstige betriebsfr.regelm. Ertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Aufl\u00f6sung SoPo m. R\u00fccklageant.", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Investitionszusch\u00fcsse", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Versicherungsentsch\u00e4digungen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Investitionszulage", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sonstige steuerfr. Betriebseinnahmen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Steuerfreie Ertr\u00e4ge aus Aufl\u00f6sung SoPo", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Sachanlageverk\u00e4ufe \u00a7 4 Nr. 1b", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Sachanlageverk\u00e4ufe \u00a7 4 Nr. 1a", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Sachanlageverk\u00e4ufe", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Sachanlageverk\u00e4ufe 19% USt", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Sachanlageverk\u00e4ufe \u00a7 4 Nr. 1b", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Sachanlageverk\u00e4ufe", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Sachanlageverk\u00e4ufe 19% USt", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Sachanlageverk\u00e4ufe \u00a7 4 Nr. 1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Sonst. neutr. Ertr"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ertr\u00e4ge a.Beteilig. an verbundenen UN", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus Beteiligungen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Wertpapiere/Ausleihungen FAV", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge a.Beteilig. verb.UN z.T. stfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge a.Beteilig. FAV z.T. steuerfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Wertpapiere/FAV-Ausl.verb.UN", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl\u00f6se Zinsen und Diskontspesen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Zins\u00e4hnliche Ertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Zinsertr\u00e4ge R\u00fcckzahlung KSt-Erh\u00f6hg. \u00a738", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Zins\u00e4hnliche Ertr\u00e4ge verbundene UN", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Gewinnant. aus Mituntern.sch.\u00a79 GewStG", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sonst.GewStfreie Gewinne Anteile KapGes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge a.Beteilig. verb. UN z.T. stfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge aus Beteiligungen z.T. steuerfr", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Erl.Zinsen /Diskontspesen aus verb.UN", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Zinsertr\u00e4ge \u00a7 233a AO, \u00a7 4 Abs. 5b EStG", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Stfr. Aufzinsung K\u00f6rperschaftsteuerguth.", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sonstige Zinsen und \u00e4hnliche Ertr\u00e4ge", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Zinsertr\u00e4ge \u00a7 233a AO", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge a.Beteilig. verb. UN z.T. stfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge a.Beteilig. UV z.T. steuerfrei", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ertr\u00e4ge Wertpapiere/Ausleihungen UV", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sonst. Zinsen u.\u00e4. Ertr\u00e4ge aus verb.UN", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Zinsertr\u00e4ge \u00a7 233a AO, Anlage A KSt", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Diskontertr\u00e4ge verbundene Unternehmen", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Diskontertr\u00e4ge", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Zinsertr\u00e4ge"
+         }
+        ], 
+        "name": "Neutraler Ertrag"
+       }, 
+       {
+        "name": "Kontenkl. unbesetzt"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Sonstige Abgaben", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abzugsf.Versp\u00e4tungszuschlag/Zwangsgeld", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abzf.Versp\u00e4t.zuschlag/Zwangsgeld", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pr\u00e4mie R\u00fcckdeckung f. Versorgungsleistg", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Versicherungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Beitr\u00e4ge", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Versicherung f\u00fcr Geb\u00e4ude", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Versich./Beitr\u00e4ge"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fahrten Wohnung/Betriebsst\u00e4tte (Haben)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten AN Verpfleg.mehraufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten AN \u00dcbernachtungsaufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Arbeitnehmer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Arbeitnehmer, n.abz.Anteil", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Arbeitnehmer, Fahrtkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kilometergelderstattung Arbeitnehmer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Repr\u00e4sentationskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Werbekosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten UN \u00dcbernachtungsaufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten UN Verpfleg.mehraufwand", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Unternehmer, Fahrtkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Unternehmer, n.abz.Anteil", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reisekosten Unternehmer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrten Wohnung/Betrieb, n.abz. Anteil", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrten Wohnung/Betrieb, abz. Anteil", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abzugsf\u00e4hige Betriebsausgaben", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abzugsf\u00e4hige Bewirtungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Eingeschr. abziehb.BA, abz. Anteil", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bewirtungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufmerksamkeiten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Eingeschr. abziehb.BA, n. abz. Anteil", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Geschenke ausschl.betrieblich genutzt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pausch. Abgaben f\u00fcr Zuwendungen abzugsf.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen an Dritte abzugsf\u00e4hig", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Geschenke abzugsf\u00e4hig", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pausch. Abgaben f\u00fcr Zuwendungen n. abz.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zuwendungen an Dritte nicht abzugsf", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Geschenke nicht abzugsf\u00e4hig", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Werbe-/Reisekosten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verpackungsmaterial", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ausgangsfrachten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Transportversicherungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwand f\u00fcr Gew\u00e4hrleistungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kosten Warenabgabe", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verkaufsprovisionen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fremdarbeiten (Vertrieb)", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Kosten Warenabgabe"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Apl. Abschreibungen auf Sachanlagen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Au\u00dfergew\u00f6hnliche Abschreibung Geb\u00e4ude", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Au\u00dfergew\u00f6hnliche Abschreibung auf Kfz", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Au\u00dfergew\u00f6hnliche Abschreibung so. WG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibung Sammelposten GWG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf aktivierte GWG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Apl. Abschreibungen auf aktivierte GWG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Apl. Abschreibungen immaterielle VermG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibung immaterielle VermG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Vorwegnahme k\u00fcnftiger UV-Wertschwankg.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschr. Gesch\u00e4fts- oder Firmenwert", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreib.Finanzanlagen/stl.So-Vorsch.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sofortabschreibung GWG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "K\u00fcrzung AHK f\u00fcr Kfz \u00a7 7g Abs. 2 n.F.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "K\u00fcrzung AHK \u00a7 7g Abs. 2 EStG n.F.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonder-AfA Kfz \u00a7 7g/1,2 a.F., \u00a77g/5 n.F.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonder-AfA \u00a7 7g/1, 2 a.F., \u00a7 7g/5 n.F.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreib.Sachanlagen/stl. So-Vorschr.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Vorwegn.k\u00fcnft.Wertschwankg. b.Wertp.UV", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen Wertpapiere des UV", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen Wertpap. UV z.T. n.abz.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen Finanzanl. z.T. n.abz.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Finanzanlagen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen Finanzanl. z.T. n.abz.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschr.Verl.Ant.Mituntern.sch.\u00a78 GewStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kaufleasing", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Geb\u00e4ude", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Sachanlagen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibung Arbeitszimmer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Kfz", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorische Abschreibungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste EG-Lieferung 19% USt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste EG-Lieferung 15% USt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 19% USt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 15% USt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverlust EG-Lieferung 16% USt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 16% USt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forder.verlust aus stfr. EG-Lieferungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste EG-Lieferungen 7%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Forderungsverluste 7% USt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibung Ingangsetzung, Erweiterung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Umlaufverm\u00f6gen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf UV, steuerr. bedingt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Vorwegnahme k\u00fcnftiger UV-Wertschwankg.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf Umlaufverm\u00f6gen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschreibungen auf UV, steuerr. bedingt", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Abschreibungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Aufwendungen aus Kursdifferenzen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Betriebsbedarf", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Werkzeuge und Kleinger\u00e4te", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mietleasing bewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen f\u00fcr Lizenzen, Konzessionen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pacht (bewegliche Wirtschaftsg\u00fcter)", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mieten f\u00fcr Einrichtungen bewegliche WG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwand Abraum-/Abfallbeseitigung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Haftungsverg\u00fctung an Mitunternehmer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verg\u00fctungen an Mitunternehmer \u00a715 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fortbildungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Freiwillige Sozialleistungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zeitschriften, B\u00fccher", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Telefon", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Telefax und Internetkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige betriebliche Aufwendungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige betriebl.u.regelm.Aufwendungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fremdleistungen und Fremdarbeiten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mietleasing bewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendg. Bewertung Finanzmittelfonds", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Vertriebskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gegenkonto zu 4996 bis 4998", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Herstellungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verwaltungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorische Wagnisse", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorische Zinsen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendg. Anteile KapGes z.T. n. abz.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufw. Ver\u00e4u\u00df. Ant. KapG z.T. nicht abz.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nebenkosten des Geldverkehrs", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Rechts- und Beratungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abschluss- und Pr\u00fcfungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Buchf\u00fchrungskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ausgleichsabgabe SchwerbehindertenG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer 7%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Nicht abziehbare Vorsteuer 19%", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "B\u00fcrobedarf", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Porto", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Sonstige Kosten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Kalkulatorischer Lohn, unentgeltl. AN", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufw. Altersversorg. Mituntern. \u00a715 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Versorgungskassen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen f\u00fcr Altersversorgung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Freiwillige soziale Aufwendung. LSt-pfl.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Freiwillige soziale Aufwendung. LSt-frei", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pauschale Steuer f\u00fcr Zusch\u00fcsse", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendungen f\u00fcr Unterst\u00fctzung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pauschale Steuer f\u00fcr Versicherungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Geh\u00e4lter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gesch\u00e4ftsf\u00fchrergeh\u00e4lter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Tantiemen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ehegattengehalt", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gesch\u00e4ftsf\u00fchrergeh\u00e4lter GmbH-Gesells.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verg\u00fctg. angestellte Mituntern. \u00a715 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "L\u00f6hne und Geh\u00e4lter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Bedienungsgelder", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorischer Unternehmerlohn", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrtkostenerstatt. Whg./Arbeitsst\u00e4tte", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verm\u00f6genswirksame Leistungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sachzuwendungen und Dienstleistg. an AN", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Krankengeldzusch\u00fcsse", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Zusch\u00fcsse Agenturen f\u00fcr Arbeit", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gesetzliche Sozialaufwendungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Ges. soz. Aufwendg. Mituntern. \u00a715 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Beitr\u00e4ge zur Berufsgenossenschaft", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "L\u00f6hne", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aushilfsl\u00f6hne", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pausch. Abgaben f\u00fcr Zuwendungen an AN", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pauschale Steuer f\u00fcr Aushilfen", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Personalkosten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Heizung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verg\u00fctung Mituntern. Miete WG \u00a7 15 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Leasing, unbewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Miete, unbewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Abgaben betrieblich genutzt. Grundbesitz", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reinigung", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Raumkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendung. Arbeitszimmer, abz. Anteil", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufwendung. Arbeitszimmer n.abz. Anteil", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Pacht, unbewegliche Wirtschaftsg\u00fcter", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Miet- und Pachtnebenkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verg\u00fctung Mituntern. Pacht WG \u00a7 15 EStG", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Raumkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Instandhaltung betrieblicher R\u00e4ume", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Gas, Strom, Wasser", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kalkulatorische Miete und Pacht", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Grundst\u00fccksaufwendungen, betrieblich", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Raumkosten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sonstige Betriebssteuern", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Verbrauchsteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Steuernachzahlg. VJ sonstige Steuern", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Erstattung VJ f\u00fcr sonstige Steuern", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Aufl\u00f6sung R\u00fcckstellung s. Steuern", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "\u00d6kosteuer", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kfz-Steuern", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Grundsteuer", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Betriebl. Steuern"
+           }, 
+           {
+            "name": "Besondere Kosten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Kfz-Reparaturen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Garagenmieten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kfz-Kosten betriebl.Nutzung Kfz im PV", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fremdfahrzeugkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Laufende Kfz-Betriebskosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fahrzeugkosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Kfz-Versicherungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Sonstige Kfz-Kosten", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mietleasing Kfz", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mautgeb\u00fchren", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Kfz-Kosten (o. St.)"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sonst. Reparaturen und Instandhaltungen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reparatur/Instandh. Anlagen u. Maschinen", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Reparatur/Instandh. Betriebs- u. Gesch.", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Wartungskosten f\u00fcr Hard- und Software", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Reparatur/Instandh."
+           }
+          ], 
+          "name": "Gesamtkosten"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Unentgeltl. Erbringung Leist. ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltl. Erbringung Leist. 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst.(Kfz) ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst. (Tel) 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst. (Kfz) 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision, sonstige Ertr\u00e4ge 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision, sonst.Ertr\u00e4ge stfrei \u00a74Nr8ff", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision, sonst.Ertr\u00e4ge stfrei \u00a74 Nr.5", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision, sonstige Ertr\u00e4ge 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision, sonstige Ertr\u00e4ge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sachbez\u00fcge 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sachbez\u00fcge 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonst. Erl\u00f6se betr. u. regelm\u00e4\u00dfig stfr.", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonst. Erl\u00f6se betr. und regelm\u00e4\u00dfig 7%", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechn. sonstige Sachbez\u00fcge ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechn. sonstige Sachbez\u00fcge 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechnete sonstige Sachbez\u00fcge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge Bewertung Finanzmittelfonds", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Ertr\u00e4ge aus Kursdifferenzen", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltl. Zuwend. Gegenst\u00e4nde ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltl. Zuwend. Gegenst\u00e4nde 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst\u00e4nden 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltl. Erbringung Leist. 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Unentgeltl. Erbringung Leist. 7% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verwendung von Gegenst.(Tel) ohne USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se Leergut", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se Abfallverwertung", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Erl\u00f6se Geldspielautomaten 19% USt", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Verrechnete sonstige Sachbez\u00fcge", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonst. Erl\u00f6se betr. u. regelm\u00e4\u00dfig", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonst. Ertr\u00e4ge betriebl. und regelm.", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonst. Erl\u00f6se betr. u. regelm\u00e4\u00dfig stfrei", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonst. Erl\u00f6se betr. und regelm\u00e4\u00dfig 19%", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Sonst. Erl\u00f6se betr. und regelm\u00e4\u00dfig 16%", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Gegenkto Aufteilung Erl\u00f6se Steuersatz", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "So. betr. Erl\u00f6se"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "children": [
+                 {
+                  "name": "Andere aktivierte Eigenleistungen", 
+                  "root_type": "Income"
+                 }
+                ], 
+                "name": "Akt.Eigenleistungen"
+               }, 
+               {
+                "children": [
+                 {
+                  "name": "Gew\u00e4hrte Rabatte 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Stfr. Ums\u00e4tze aus V. \u00a7 4 Nr. 12 UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Provisionsums\u00e4tze 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Entnahme von Gegenst\u00e4nden ohne USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti EG-Lieferung 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti stpfl. EG-Lieferung", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti stfr. EG-Lieferung", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti Leistungen \u00a713b UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Boni", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Boni 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Boni 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Unentgeltl. Zuwend. von Waren ohne USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Unentgeltl. Zuwend. von Waren 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Unentgeltl. Zuwend. von Waren 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Unentgeltl. Zuwend. von Waren 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerungen 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerungen steuerfrei \u00a74 Nr. 1a", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerungen", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Provisionsums\u00e4tze 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Provisionsums\u00e4tze 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Provisionsums\u00e4tze, steuerfrei \u00a74 Nr.8ff", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Provisionsums\u00e4tze, steuerfrei \u00a7 4 Nr.5", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Provisionsums\u00e4tze", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerungen 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerung EG-Lieferung 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerung EG-Lieferung steuerfrei", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4l.i.and. EG-Land stpfl. Lief.", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerung EG-Lieferung 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerung EG-Lieferung 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Im anderen EG-Land stpfl. Lieferungen", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Entnahme Unternehmer (Waren) 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Steuerfreie Ums\u00e4tze ohne Vorsteuerabzug", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Steuerfreie EG-Lieferungen \u00a74, 1b UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Steuerfreie Ums\u00e4tze \u00a7 4 Nr. 1a UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Unentgeltliche Wertabgaben", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Steuerfreie Ums\u00e4tze Offshore usw.", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Rabatte 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Rabatte 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti EG-Lieferung 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti EG-Lieferung 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Entnahme Unternehmer (Waren) ohne USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Entnahme Unternehmer (Waren) 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Entnahme Unternehmer (Waren) 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Boni 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Rabatte", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Umsatzsteuer-Verg\u00fctungen", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Nicht steuerbare Ums\u00e4tze", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6sschm\u00e4lerungen 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Gew\u00e4hrte Skonti 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se gem\u00e4\u00df \u00a7 24 UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se Kleinunternehmer \u00a7 19 UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se EG-Lieferungen 19% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se EG-Lieferungen 7% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Nicht steuerbare Ums\u00e4tze Drittland", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Nicht steuerbare Ums\u00e4tze EG-Land", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se EG-Lieferungen 16% USt", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se aus Leistungen nach \u00a7 13b UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Steuerfr. EG-Lief.v.Neufahrzg.ohne UStID", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Innergemeinschaftl. Dreiecksgesch\u00e4ft", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Sonstige steuerfr. Ums\u00e4tze Inland", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Steuerfreie Ums\u00e4tze \u00a7 4 Nr. 2-7 UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Steuerfreie Ums\u00e4tze \u00a74 Nr. 8 ff UStG", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Erl\u00f6se 19% USt", 
+                  "root_type": "Income"
+                 }
+                ], 
+                "name": "Umsatzerl\u00f6se"
+               }, 
+               {
+                "children": [
+                 {
+                  "name": "Bestandsver\u00e4nd.unfertige Erzeugnisse", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Bestandsver\u00e4nderung fertige Erzeugnisse", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Bestandsver\u00e4nderung unfertige Leistung", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Bestandsver\u00e4nderung Bauauftr\u00e4ge", 
+                  "root_type": "Income"
+                 }, 
+                 {
+                  "name": "Bestandsver\u00e4nderung Auftr\u00e4ge in Arbeit", 
+                  "root_type": "Income"
+                 }
+                ], 
+                "name": "Best.Verdg. FE/UE"
+               }
+              ], 
+              "name": "Gesamtleistung"
+             }, 
+             {
+              "children": [
+               {
+                "name": "Bezugsnebenkosten", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse EG-Erwerb 7% Vorsteuer/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse EG-Erwerb 19% Vorsteuer/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse EG-Erwerb 16% Vorsteuer/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse 19% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse 16% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse 15% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erwerb 1. Abnehmer im Dreiecksgesch\u00e4ft", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Steuerfreier EG-Erwerb", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "EG-Erwerb ohne Vorsteuer und 7% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Boni", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Boni 19% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Boni 16% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhalt. Skonti EG-Erwerb 7% Vorst/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Skonti EG-Erwerb", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhalt. Skonti EG-Erwerb 19% Vorst/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhalt. Skonti EG-Erwerb 16% Vorst/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Bestandsver\u00e4nd.RHB-Stoffe/bezogene Ware", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Fremdleistungen", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nicht abziehbare Vorsteuer 19%", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Bauleistungen \u00a7 13b 19% Vorst., 19% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "EG-Erwerb ohne Vorsteuer und 19% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Leistungen ausl. UN 19% Vorst., 19% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nicht abziehbare Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Bauleistungen \u00a7 13b ohne Vorst., 19% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Leistungen ausl. UN ohne Vorst., 19% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Wareneingang 19% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Wareneingang", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Leergut", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Rabatte 16% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Rabatte 19% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Roh-, Hilfs- und Betriebsstoffe", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Z\u00f6lle und Einfuhrabgaben", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Wareneingang 10,7% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse EG-Erwerb 15% Vorsteuer/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Skonti 19% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Skonti 16% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Skonti 7% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Skonti", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Waren aus USt-Lager 19% Vorst., 19% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Wareneingang 5,5% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Rabatte", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Wareneingang, im anderen EG-Land stb.", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Boni 7% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Wareneingang, im Drittland steuerbar", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Steuerfreie Einfuhren", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Wareneingang 7% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Leistungen ausl. UN 7% Vorsteuer, 7% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "EG-Erw. Nfz o.UStID 19% Vorsteuer/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Bauleistungen \u00a7 13b 7% Vorsteuer, 7% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Waren aus USt-Lager 7% Vorsteuer, 7% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nicht abziehbare Vorsteuer 7%", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Leistungen ausl. UN ohne Vorst., 7% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Bauleistungen \u00a7 13b ohne Vorst., 7% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "EG-Erwerb 7% Vorsteuer und 7% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "EG-Erwerb 19% Vorsteuer und 19% USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Energiestoffe", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erh. Skonti Leistg. \u00a7 13b o.Vorst/m.USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erh. Skonti Leistg. \u00a7 13b 16% Vorst/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erh. Skonti Leistg. \u00a7 13b 19% Vorst/USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Skonti Leistungen \u00a713b UStG", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erh. Skonti Leistg. \u00a7 13b o.Vorst/16%USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erh. Skonti Leistg. \u00a7 13b o.Vorst/19%USt", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Nachl\u00e4sse 7% Vorsteuer", 
+                "root_type": "Expense"
+               }, 
+               {
+                "name": "Erhaltene Rabatte 7% Vorsteuer", 
+                "root_type": "Expense"
+               }
+              ], 
+              "name": "Mat./Wareneinkauf"
+             }
+            ], 
+            "name": "Rohertrag"
+           }
+          ], 
+          "name": "Betriebl. Rohertrag"
+         }
+        ], 
+        "name": "Betriebsergebnis"
+       }
+      ], 
+      "name": "Ergebnis vor Steuern"
+     }
+    ], 
+    "name": "Gewinn u. Verlust"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Gegenkonto zu 9271 - 9279 (Soll-Buchung)"
+       }, 
+       {
+        "name": "Verbindlichkeiten aus der Begebung und \u00fcbertragung von Wechseln"
+       }, 
+       {
+        "name": "Verbindlichkeiten aus der Begebung und \u00fcbertragung von Wechseln gegen\u00fcber verbundenen Unternehmen"
+       }, 
+       {
+        "name": "Verbindlichkeiten aus B\u00fcrgschaften- Wechsel- und Scheckb\u00fcrgschaften"
+       }, 
+       {
+        "name": "Verbindlichkeiten aus B\u00fcrgschaften- Wechsel- und Scheckb\u00fcrgschaften gegen\u00fcber verbundenen Unternehmen"
+       }, 
+       {
+        "name": "Verbindlichkeiten aus Gew\u00e4hrleistungsvertr\u00e4gen"
+       }, 
+       {
+        "name": "Verbindlichkeiten aus Gew\u00e4hrleistungsvertr\u00e4gen gegen\u00fcber verbundenen Unternehmen"
+       }, 
+       {
+        "name": "Haftung aus der Bestellung von Sicherheiten f\u00fcr fremde Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen"
+       }, 
+       {
+        "name": "Verpflichtungen aus Treuhandverm\u00f6gen"
+       }, 
+       {
+        "name": "Haftung aus der Bestellung von Sicherheiten f\u00fcr fremde Verbindlichkeiten"
+       }
+      ], 
+      "name": "Statistische Konten f\u00fcr in der Bilanz auszuweisende Haftungsverh\u00e4ltnisse"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Andere Verpflichtungen gem\u00e4\u00df \u00a7 285 Nr. 3 HGB"
+       }, 
+       {
+        "name": "Andere Verpflichtungen gem\u00e4\u00df \u00a7 285 Nr. 3 HGB gegen\u00fcber verbundenen Unternehmen"
+       }, 
+       {
+        "name": "Verpflichtungen aus Miet- und Leasingsvertr\u00e4gen"
+       }, 
+       {
+        "name": "Gegenkonto zu 9281-9284"
+       }, 
+       {
+        "name": "Verpflichtungen aus Miet- und Leasingsvertr\u00e4gen gegen\u00fcber verbundenen Unternehmen"
+       }
+      ], 
+      "name": "Statistische Konten f\u00fcr die im Anhang anzugebenden sonstigen finanziellen Verpflichtungen"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kurzfristige R\u00fcckstellungen"
+       }, 
+       {
+        "name": "Gegenkonto zu Konto 9260 - 9268"
+       }, 
+       {
+        "name": "Mittelfristige R\u00fcckstellungen"
+       }, 
+       {
+        "name": "Langfristige R\u00fcckstellungen- au\u00dfer Pensionen"
+       }
+      ], 
+      "name": "Aufgliederung der R\u00fcckstellungen"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gezeichnetes Kapital in Euro (Art. 42 Abs. 3 S. 2 EGHGB)"
+         }, 
+         {
+          "name": "Gegenkonto zu 9220-9221"
+         }
+        ], 
+        "name": "Gezeichnetes Kapital in Euro"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gezeichnetes Kapital in DM (Art. 42 Abs. 3 S. 1 EGHGB)"
+         }
+        ], 
+        "name": "Gezeichnetes Kapital in DM"
+       }
+      ], 
+      "name": "Statistische Konten zur informativen Angabe des gezeichneten Kapitals in anderer W\u00e4hrung"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gegenkonto f\u00fcr statistische Mengeneinheiten Konten 9101-9107 und Konten 9116-9118"
+       }, 
+       {
+        "name": "Gegenkonto zu Konten 9120- 9135-9140"
+       }, 
+       {
+        "name": "Auftragseingang im Gesch\u00e4ftsjahr"
+       }, 
+       {
+        "name": "Anzahl Kreditkunden monatlich"
+       }, 
+       {
+        "name": "Anzahl Kreditkunden aufgelaufen"
+       }, 
+       {
+        "name": "Auftragsbestand"
+       }, 
+       {
+        "name": "Erweiterungsinvestitionen"
+       }, 
+       {
+        "name": "Anzahl Rechnungen"
+       }, 
+       {
+        "name": "Gesch\u00e4ftsraum m2"
+       }, 
+       {
+        "name": "Verkaufsraum m2"
+       }, 
+       {
+        "name": "Unbezahlte Personen"
+       }, 
+       {
+        "name": "Verkaufskr\u00e4fte"
+       }, 
+       {
+        "name": "Anzahl der Barkunden"
+       }, 
+       {
+        "name": "Besch\u00e4ftigte Personen"
+       }, 
+       {
+        "name": "Verkaufstage"
+       }
+      ], 
+      "name": "Statistische Konten f\u00fcr Betriebswirtschaftliche Auswertungen (BWA)"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Produktive L\u00f6hne"
+       }, 
+       {
+        "name": "Gegenkonto zu 9210"
+       }, 
+       {
+        "name": "Gegenkonto zu 9200"
+       }, 
+       {
+        "name": "Besch\u00e4ftigte Personen"
+       }
+      ], 
+      "name": "Statistische Konten f\u00fcr den Kennziffernteil der Bilanz"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Offene Posten aus 2008"
+       }, 
+       {
+        "name": "Offene Posten aus 2009"
+       }, 
+       {
+        "name": "Offene Posten aus 2006"
+       }, 
+       {
+        "name": "Offene Posten aus 2007"
+       }, 
+       {
+        "name": "Offene Posten aus 2004"
+       }, 
+       {
+        "name": "Offene Posten aus 2005"
+       }, 
+       {
+        "name": "Offene Posten aus 2002"
+       }, 
+       {
+        "name": "Offene Posten aus 2003"
+       }, 
+       {
+        "name": "Offene Posten aus 2001"
+       }, 
+       {
+        "name": "Offene Posten aus 1994"
+       }, 
+       {
+        "name": "Offene Posten aus 1995"
+       }, 
+       {
+        "name": "Offene Posten aus 1996"
+       }, 
+       {
+        "name": "Summenvortragskonto"
+       }, 
+       {
+        "name": "Offene Posten aus 1991"
+       }, 
+       {
+        "name": "Offene Posten aus 1992"
+       }, 
+       {
+        "name": "Offene Posten aus 1993"
+       }, 
+       {
+        "name": "Offene Posten aus 1998"
+       }, 
+       {
+        "name": "Offene Posten aus 2000"
+       }, 
+       {
+        "name": "Offene Posten aus 1997"
+       }, 
+       {
+        "name": "Saldenvortr\u00e4ge Kreditoren"
+       }, 
+       {
+        "name": "Saldenvortr\u00e4ge Debitoren"
+       }, 
+       {
+        "name": "Saldenvortr\u00e4ge"
+       }, 
+       {
+        "name": "Saldenvortr\u00e4ge- Sachkonten"
+       }, 
+       {
+        "name": "Offene Posten aus 1999"
+       }, 
+       {
+        "name": "Offene Posten aus 1990"
+       }
+      ], 
+      "name": "Vortragskonten"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gegenkonto zu 9918 (Haben)"
+       }, 
+       {
+        "name": "Kinderbetreuungskosten (wie Betriebsausgaben steuerlich anzusetzender Betrag)"
+       }
+      ], 
+      "name": "Statistische konten f\u00fcr Kinderbetreuungskosten"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Anteil f\u00fcr Verbindlichkeitskonten"
+       }, 
+       {
+        "name": "Verrechnungskonto f\u00fcr Anteil Verbindlichkeitskonten"
+       }
+      ], 
+      "name": "Statistische Konten f\u00fcr den GuV-Ausweis in \"Gutschrift bzw. Belastung auf Verbindlichkeitskonten\" bei den Zuordnungstabellen f\u00fcr PersHG nach KapCoRiLiG"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Vorsteuer in den Verbindlichkeiten zum allgemeinen Umsatzsteuersatz (E\u00fcR)"
+       }, 
+       {
+        "name": "Gegenkonto 9896-9897 f\u00fcr die Aufteilung der Vorsteuer (E\u00fcR)"
+       }, 
+       {
+        "name": "Gegenkonto 9893-9894 f\u00fcr die Aufteilung der Umsatzsteuersatz (E\u00fcR)"
+       }, 
+       {
+        "name": "Umsatzsteuer in den Forderungen zum allgemeinen Umsatzsteuersatz (E\u00fcR)"
+       }, 
+       {
+        "name": "Umsatzsteuer in den Forderungen zum erm\u00e4\u00dfigten Umsatzsteuersatz (E\u00fcR)"
+       }, 
+       {
+        "name": "Vorsteuer in den Verbindlichkeiten zum erm\u00e4\u00dfigten Umsatzsteuersatz (E\u00fcR)"
+       }, 
+       {
+        "name": "SO Commitment"
+       }
+      ], 
+      "name": "Vorsteuer-/Umsatzsteuerkonten zur Korrektur der Forderungen/ Verbindlichkeiten (E\u00fcR)"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Minderung der Entnahmen \u00a74 (4a) EStG (Haben)"
+       }, 
+       {
+        "name": "Gegenkonto zur Minderung der Entnahmen \u00a74 (4a) EStG"
+       }, 
+       {
+        "name": "Gegenkonto zur Erh\u00f6hung der Entnahmen \u00a74 (4a) EStG (Haben)"
+       }, 
+       {
+        "name": "Erh\u00f6hung der Entnahmen \u00a74 (4a) EStG"
+       }
+      ], 
+      "name": "Statistische Konten zu \u00a7 4 (4a) EStG"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gegenkonto zu 9887"
+       }, 
+       {
+        "name": "Steueraufwand der Gesellschafter "
+       }
+      ], 
+      "name": "Steueraufwand der Gesellschafter"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Statistische Konten f\u00fcr den Gewinnzuschlag nach \u00a7\u00a7 6b- 6c und 7g EStG (Haben-Buchung)"
+       }, 
+       {
+        "name": "Statistische Konten f\u00fcr den Gewinnzuschlag- Gegenkonto zu 9890"
+       }
+      ], 
+      "name": "Statistische Konten f\u00fcr Gewinnzuschlag"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen Kommanditisten"
+       }, 
+       {
+        "name": "Nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen pers\u00f6nlich haftender Gesellschafter"
+       }
+      ], 
+      "name": "Nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Verrechnungskonto f\u00fcr nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen Kommanditisten"
+       }, 
+       {
+        "name": "Verrechnungskonto f\u00fcr nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen pers\u00f6nlich haftender Gesellschafter"
+       }
+      ], 
+      "name": "Verrechnungskonto f\u00fcr nicht durch Verm\u00f6genseinlagen gedeckte Entnahmen"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Einzahlungsverpflichtungen pers\u00f6nlich haftender Gesellschafter"
+       }, 
+       {
+        "name": "Einzahlungsverpflichtungen Kommanditisten"
+       }
+      ], 
+      "name": "Einzahlungsverpflichtungen im Bereich der Forderungen"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ausgleichsposten f\u00fcr aktivierte Bilanzierungshilfen"
+       }, 
+       {
+        "name": "Ausgleichsposten f\u00fcr aktivierte eigene Anteile "
+       }
+      ], 
+      "name": "Ausgleichsposten f\u00fcr aktivierte eigene Anteile und Bilanzierungshilfen"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gesellschafter-Darlehen"
+       }, 
+       {
+        "name": "Verrechnungskonto f\u00fcr Einzahlungsverpflichtungen"
+       }, 
+       {
+        "name": "Verlust-/ Vortragskonto"
+       }
+      ], 
+      "name": "Kapital Personenhandelsgesellschaft Vollhafter"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Verrechnungskonto f\u00fcr Einzahlungsverpflichtungen"
+       }, 
+       {
+        "name": "Gesellschafter-Darlehen"
+       }
+      ], 
+      "name": "Kapital Personenhandelsgesellschaft Teilhafter"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Grundst\u00fccksertrag"
+       }, 
+       {
+        "name": "Privatsteuern"
+       }, 
+       {
+        "name": "Sonderausgaben unbeschr\u00e4nkt abzugsf\u00e4hig"
+       }, 
+       {
+        "name": "Unentgeltliche Wertabgaben"
+       }, 
+       {
+        "name": "Zuwendungen- Spenden"
+       }, 
+       {
+        "name": "Grundst\u00fccksaufwand"
+       }, 
+       {
+        "name": "Privatentnahmen allgemein"
+       }, 
+       {
+        "name": "Sonderausgaben beschr\u00e4nkt abzugsf\u00e4hig"
+       }, 
+       {
+        "name": "Au\u00dfergew\u00f6hnliche Belastungen"
+       }, 
+       {
+        "name": "Privateinlagen"
+       }
+      ], 
+      "name": "Privat Teilhafter (f\u00fcr Verrechnung Gesellschafterdarlehen mit Eigenkapitalcharakter- Konto 9840-9849)"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Anteil f\u00fcr Konto 9840-49 Teilhafter"
+       }, 
+       {
+        "name": "Gebrauchs\u00fcberlassung Vollhafter"
+       }, 
+       {
+        "name": "Sonstige Verg\u00fctungen Vollhafter"
+       }, 
+       {
+        "name": "Tantieme Vollhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2019"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2014"
+       }, 
+       {
+        "name": "Name des Gesellschafters Vollhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9827"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9828"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9829"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9822"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9823"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9820 "
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9821"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9826"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9824"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9825"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2069"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0083"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2024"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2025"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2026"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2020"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2021"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2023"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2028"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2029"
+       }, 
+       {
+        "name": "Sonstige Verg\u00fctungen Teillhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2003"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2000"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2001"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2006"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2007"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2004"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2005"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2008"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2068"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2060"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2061"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2062"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2063"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2064"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2065"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2066"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2067"
+       }, 
+       {
+        "name": "T\u00e4tigkeitsverg\u00fctung Teillhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0066"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0067"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0064"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0065"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0062"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0063"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0060"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0061"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0068"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 0069"
+       }, 
+       {
+        "name": "Darlehensverzinsung Teillhafter"
+       }, 
+       {
+        "name": "Restanteil Teillhafter"
+       }, 
+       {
+        "name": "Darlehensverzinsung Vollhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2055"
+       }, 
+       {
+        "name": "T\u00e4tigkeitsverg\u00fctung Vollhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9816"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0085"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0084"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0087"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0086"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0081"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0080 "
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0082"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0089"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 0088"
+       }, 
+       {
+        "name": "Restanteil Vollhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2027"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2022"
+       }, 
+       {
+        "name": "Gebrauchs\u00fcberlassung Teillhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9819"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9818"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2018"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2015"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2017"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2016"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2011"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2010"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2013"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2012"
+       }, 
+       {
+        "name": "Name des Gesellschafters Teillhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9817"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2079"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2078"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2073"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2072"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2071"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2070 "
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2077"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2076"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2075"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2074"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9814"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9813"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9812"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9811"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9810"
+       }, 
+       {
+        "name": "Tantieme Teillhafter"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2051"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2050"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2053"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2052"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2054"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2057"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2056"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2059"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Teilhafter 2058"
+       }, 
+       {
+        "name": "L\u00f6sch- und Korrekturschl\u00fcssel"
+       }, 
+       {
+        "name": "L\u00f6sch- und Korrekturschl\u00fcssel"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 9815"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2002"
+       }, 
+       {
+        "name": "Anteil f\u00fcr Konto Vollhafter 2009"
+       }
+      ], 
+      "name": "Statistische Konten f\u00fcr die Kapitalkontenentwicklung"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Statistisches Konto Fremdgeld"
+       }, 
+       {
+        "name": "Gegenkonto zu 9292"
+       }, 
+       {
+        "name": "Statistisches Konto steuerfreie Auslagen"
+       }, 
+       {
+        "name": "Gegenkonto zu 9290"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Einlagen stiller Gesellschafter"
+         }
+        ], 
+        "name": "Einlagen stiller Gesellschafter"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Steuerrechtlicher Ausgleichsposten"
+         }
+        ], 
+        "name": "Steuerrechtlicher Ausgleichsposten"
+       }, 
+       {
+        "name": "Zinsen bei Buchungen \u00fcber Debitoren bei \u00a7 4 Abs. 3 EStG"
+       }, 
+       {
+        "name": "Gegenkonto zu 9287 und 9288"
+       }, 
+       {
+        "name": "Mahngeb\u00fchren bei Buchungen \u00fcber Debitoren bei \u00a7 4 Abs. 3 EStG"
+       }
+      ], 
+      "name": "Statistische Konten f\u00fcr 4 Abs. 3 EStG"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ungesicherte Gesellschafterdarlehen mit Restlaufzeit gr\u00f6\u00dfer 5 Jahre"
+       }, 
+       {
+        "name": "Eigenkapitalersetzende Gesellschafterdarlehen "
+       }, 
+       {
+        "name": "Gegenkonto zu 9250 und 9255"
+       }
+      ], 
+      "name": "Eigenkapitalersetzende Gesellschafterdarlehen "
+     }, 
+     {
+      "children": [
+       {
+        "name": "Investitionszusch\u00fcsse "
+       }, 
+       {
+        "name": "Baukostenzusch\u00fcsse"
+       }, 
+       {
+        "name": "Investitionszulagen "
+       }, 
+       {
+        "name": "Gegenkonto zu Konten 9230- 9238"
+       }, 
+       {
+        "name": "Investitionsverbindlichkeiten aus K\u00e4ufen von Finanzanlagen bei Leistungsverbindlichkeiten"
+       }, 
+       {
+        "name": "Investitionsverbindlichkeiten aus Sachanlagenk\u00e4ufen bei Leistungsverbindlichkeiten"
+       }, 
+       {
+        "name": "Investitionsverbindlichkeiten bei den Leistungsverbindlichkeiten"
+       }, 
+       {
+        "name": "Investitionsverbindlichkeiten aus K\u00e4ufen von immateriellen Verm\u00f6gensgegenst\u00e4nden bei Leistungsverbindlichkeiten"
+       }, 
+       {
+        "name": "Forderungen aus Sachanlagenverk\u00e4ufen bei sonstigen Verm\u00f6gensgegenst\u00e4nden"
+       }, 
+       {
+        "name": "Gegenkonto zu Konto 9240-43"
+       }, 
+       {
+        "name": "Forderungen aus Verk\u00e4ufen von Finanzanlagen bei sonstigen Verm\u00f6gensgegenst\u00e4nden"
+       }, 
+       {
+        "name": "Forderungen aus Verk\u00e4ufen immaterielle Verm\u00f6gensgegenst\u00e4nde bei sonstigen Verm\u00f6gensgegenst\u00e4nden"
+       }, 
+       {
+        "name": "Gegenkonto zu Konto 9245-47"
+       }
+      ], 
+      "name": "Passive Rechnungsabgrenzung"
+     }
+    ], 
+    "name": "Vortrags- Kapital- und Statistische Konten"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "davon eingefordert"
+         }
+        ], 
+        "name": "Ausstehende Einlagen"
+       }, 
+       {
+        "name": "Aufwendungen f\u00fcr die W\u00e4hrungsumstellung auf den Euro"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "LV-R\u00fcckdeckungsanspr\u00fcche z.lfr.Verbl.", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "R\u00fcckdeckungsanspr\u00fcche aus Lebensversicherungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ausleih. an UN mit Beteiligungsverh.", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ausleihungen an Unternehmen, mit denen ein Beteiligungsverh\u00e4ltnis besteht"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Anteile an verbundenen Unternehmen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anteile a.herrschender Gesellschaft", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Anteile an verbundenen Unternehmen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ausleihungen an nahe stehende Personen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Darlehen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ausleihungen an Gesellschafter", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sonstige Ausleihungen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "sonstige Ausleihungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Wertpapiere mit Gewinnbeteil.anspr\u00fcch.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Festverzinsliche Wertpapiere", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wertpapiere des Anlageverm\u00f6gens", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Wertpapiere des Anlageverm\u00f6gens"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Genossenschaftsanteile z.lfr.Verbleib", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Genossenschaftsanteile"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Atypische stille Beteiligungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Andere Beteiligungen an Kapitalges.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Typisch stille Beteiligungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Beteiligungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Andere Beteiligungen an Personenges.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Beteiligung GmbH Co.an Komplement\u00e4r GmbH", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Beteiligungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ausleihungen an verbundene Unternehmen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ausleihungen an verbundene Unternehmen"
+           }
+          ], 
+          "name": "Finanzanlagen"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Gesch\u00e4fts- oder Firmenwert", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Verschmelzungsmehrwert", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Gesch\u00e4fts- oder Firmenwert"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Konzessionen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Konzessionen und gewerbl.Schutzrechte", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Lizenzen an gewerblichen Schutzrechten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gewerbliche Schutzrechte", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "EDV-Software", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "\u00c4hnliche Rechte und Werte", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Konzessionen, gewerbliche Schutzrechte und \u00e4hnliche Rechte und Werte sowie Lizenzen an solchen Rechten und Werten"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Anzahlungen immaterielle VermG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anzahlungen auf Gesch\u00e4fts-, Firmenwert", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "geleistete Anzahlungen"
+           }
+          ], 
+          "name": "Immaterielle Verm\u00f6gensgegenst\u00e4nde"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Grundst\u00fccke,grndst.Rechte und Bauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Grundst\u00fccksanteil h\u00e4usl. Arbeitszimmer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Grundst\u00fccksgleiche Rechte", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Grundst\u00fccke mit Substanzverzehr", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gesch\u00e4ftsbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Hof- und Wegebefestigungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Einrichtung Fabrik- und Gesch\u00e4ftsbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Au\u00dfenanlagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Andere Bauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fabrikbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Au\u00dfenanlagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Hof- und Wegebefestigungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Einrichtung Fabrik- und Gesch\u00e4ftsbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Andere Bauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Au\u00dfenanlagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Hof- und Wegebefestigungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wohnbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Einrichtungen f\u00fcr Wohnbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unbebaute Grundst\u00fccke", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Grundst\u00fccke, grundst\u00fccksgl. Rechte", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Grundst\u00fcckswert bebauter Grundst\u00fccke", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bauten auf eigenen Grundst\u00fccken", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fabrikbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bauten auf fremden Grundst\u00fccken", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gesch\u00e4ftsbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geb\u00e4udeteil h\u00e4usliches Arbeitszimmer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Einrichtungen f\u00fcr Wohnbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wohnbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Hof- und Wegebefestigungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Au\u00dfenanlagen", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Grundst\u00fccke, grundst\u00fccksgleiche Rechte und Bauten einschlie\u00dflich der Bauten auf fremden Grundst\u00fccken"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ladeneinrichtung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sonstige Transportmittel", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Betriebs- und Gesch\u00e4ftsausstattung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geringwertige Wirtschaftsg\u00fcter", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geringwertige WG Sammelposten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Werkzeuge", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ger\u00fcst- und Schalungsmaterial", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Betriebsausstattung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "B\u00fcroeinrichtung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "PKW", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Andere Anlagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "LKW", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sonstige Betriebs-u.Gesch.ausstattung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Einbauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gesch\u00e4ftsausstattung", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "andere Anlagen, Betriebs- und Gesch\u00e4ftsausstattung"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Technische Anlagen und Maschinen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Betriebsvorrichtungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Maschinen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Transportanlagen und \u00c4hnliches", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Maschinelle Anlagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Maschinengebundene Werkzeuge", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "technische Anlagen und Maschinen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Anzahlungen a.Grundst\u00fccke ohne Bauten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anzahlg. auf Wohnbauten a.eig.Grundst", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wohnbauten im Bau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wohnbauten im Bau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anzahlungen a. Wohnbauten a. fremd. Gr.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Technische Anlagen und Maschinen im Bau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anzahlungen auf technische Anlagen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anzahlg. auf Bauten eigen. Grundst\u00fccken", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gesch\u00e4fts-,Fabrik-u.and. Bauten im Bau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anzahlung Betriebs- u. Gesch.ausstattung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Betriebs- u. Gesch.ausstattung im Bau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anzahlg. auf Bauten fremd. Grundst\u00fccken", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gesch\u00e4fts-,Fabrik-u.and. Bauten im Bau", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "geleistete Anzahlungen und Anlagen im Bau"
+           }
+          ], 
+          "name": "Sachanlagen"
+         }
+        ], 
+        "name": "Anlageverm\u00f6gen"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Geleistete Anzahlungen 16% Vorsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geleistete Anzahlungen 15% Vorsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geleistete Anzahlungen 7% Vorsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geleistete Anzahlungen auf Vorr\u00e4te", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geleistete Anzahlungen 19% Vorsteuer", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "geleistete Anzahlungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Waren", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse und Waren", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fertige Erzeugnisse", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Bestand Waren", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "fertige Erzeugnisse und Waren"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bestand Roh-,Hilfs- und Betriebsstoffe", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Roh-, Hilfs- und Betriebsstoffe"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Erhaltene Anzahlungen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "erhaltene Anzahlungen auf Bestellungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Unfertige Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse und Leistungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Unfertige Erzeugnisse", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "unfertige Erzeugnisse, unfertige Leistungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "In Ausf\u00fchrung befindl. Bauauftr\u00e4ge", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "in Ausf\u00fchrung befindliche Bauauftr\u00e4ge"
+           }, 
+           {
+            "children": [
+             {
+              "name": "In Arbeit befindliche Auftr\u00e4ge", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "in Arbeit befindliche Auftr\u00e4ge"
+           }
+          ], 
+          "name": "Vorr\u00e4te"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Eigene Anteile", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "eigene Anteile"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Anteile an verbundenen Unternehmen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anteile a.herrschender Gesellschaft", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Anteile an verbundenen Unternehmen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sonstige Wertpapiere", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wertpapieranlagen kurzfr. Disposition", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wertpap. mit geringen Wertschwankungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Finanzwechsel", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "sonstige Wertpapiere"
+           }
+          ], 
+          "name": "Wertpapiere"
+         }, 
+         {
+          "children": [
+           {
+            "name": "LZB-Guthaben", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bundesbankguthaben", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Nebenkasse 1", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bank 2", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bank", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bank 4", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Postbank 2", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Postbank", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Schecks", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bank 3", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Kasse", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bank 1", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Nebenkasse 2", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bank 5", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Finanzmittelanlagen kurzfr. Disposition", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Verbindlichkeiten gg. Kreditinstituten", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Postbank 3", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Postbank 1", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Kassenbestand, Bundesbankguthaben, Guthaben bei Kreditinstituten und Schecks"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Kautionen (g. 1 J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gg. Gesellschafter (g.1J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde (g.1 J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gg. Aufsichtsratsm. (g.1 J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gg. Gesch\u00e4ftsf.(g.1J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "K\u00f6rperschaftsteuerguthaben \u00a737 (g.1 J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gegen Personal (g. 1Jahr)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Darlehen g. 1 Jahr", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "davon mit einer Restlaufzeit von mehr als einem Jahr"
+             }, 
+             {
+              "name": "Nachtr\u00e4gl. abz. Vorsteuer \u00a7 15a Abs. 2", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Zur\u00fcckzuzahlende Vorsteuer \u00a715a Abs.2", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Kautionen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Kautionen (bis 1 J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Agenturwarenabrechnung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen gg. Gesch\u00e4ftsf.(b.1J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sonstige Verm\u00f6gensgegenst\u00e4nde (b.1 J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen gg. Gesellschafter (b.1J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen gg. Aufsichtsratsm. (b.1 J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Geldtransit", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer 7%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer aus EG-Erwerb", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteil. Vorsteuer aus EG-Erwerb 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteil. Vorsteuer \u00a7\u00a7 13a/13b UStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteil. Vorsteuer \u00a7\u00a713a/13b USt 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteil. Vorsteuer \u00a7\u00a713a/13b USt 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "\u00dcberleitung Kostenstellen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Vorsteuer im Folgejahr abziehbar", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "K\u00f6rperschaftsteuerr\u00fcckforderung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus Verbrauchsteuern", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "USt-Forderungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderg. an FA aus abgef\u00fchrtem Bauabzug", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Steuer\u00fcberzahlungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Vorsteuer aus Investitionen \u00a7 4/3 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gegenkto. Vorsteuer Durchschnittss\u00e4tze", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gegenkonto Vorsteuer \u00a7 4/3 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufl\u00f6sung Vorsteuer Vorjahr \u00a7 4/3 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Vorsteuer allgem. Durchschnittss\u00e4tze", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Vorsteuer EG-Erwerb neue Kfz ohne UStID", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer \u00a7 13a UStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Einfuhr-Umsatzsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Verrechnung geleistete Anzahlungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "GmbH-Anteile z.kurzfristigen Verbleib", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Anspr\u00fcche a. R\u00fcckdeckungsversicherung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Nachtr\u00e4gl. abz. Vorsteuer, bewegl. WG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Aufzuteilende Vorsteuer 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "K\u00f6rperschaftsteuerguthaben \u00a737 (b.1 J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen gegen Personal (bis 1Jahr)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderg. gg. Personal Lohn- u. Gehalt", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Genossenschaftsanteile z.kfr.Verbleib", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gewinnermittlung \u00a74/3 nicht ergebnisw.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gewinnermittlung \u00a74/3 ergebniswirksam", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wirtschaftsg\u00fcter Umlaufverm. \u00a7 4/3 EStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer aus EG-Erwerb 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer aus EG-Erwerb", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer 7%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer \u00a7 13b UStG 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer aus EG-Erwerb 19%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer \u00a7 13b UStG 16%", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Abziehbare Vorsteuer \u00a7 13b UStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Verrechnung Ist-Versteuerung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Zur\u00fcckzuzahl. Vorsteuer, unbewegl. WG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Nachtr\u00e4gl. abz. Vorsteuer, unbewegl. WG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Darlehen bis 1 Jahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Darlehen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Zur\u00fcckzuzahlende Vorsteuer, bewegl.WG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Steuererst.anspruch gegen ander. EG-Land", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Durchlaufende Posten", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fremdgeld", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "sonstige Verm\u00f6gensgegenst\u00e4nde"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Besitzwechsel gegen verbundene UN (g.1J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen gg. verbundene UN(g. 1 J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "WB Forderungen gg. verbundene UN (g.1J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderungen aus L+L gg. verbund. UN g.1J", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "davon mit einer Restlaufzeit von mehr als einem Jahr"
+             }, 
+             {
+              "name": "Besitzwechs.gg.verb.UN, bundesbankf\u00e4hig", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Besitzwechsel gegen verbundene UN (b.1J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Besitzwechsel gegen verbund. Unternehmen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen gg. verbundene UN(b. 1 J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen gegen verbund.Unternehmen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "WB Forderungen gg. verbundene UN (b.1J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus L+L gg. verbundenen UN", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus L+L gg. verbund. UN b.1J", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen gegen verbundene Unternehmen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Einzelwertberichtigung Forderung(b.1J)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gegenkto Aufteilung der Forderungen L+L", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus L+L gem\u00e4\u00df \u00a7 24 UStG", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderg. aus stfr., n. steuerbaren L+L", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus L+L erm\u00e4\u00dfigt. Steuersatz", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus L+L allgem. Steuersatz", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Zweifelhafte Forderungen (bis 1 Jahr)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Zweifelhafte Forderungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus Lieferungen u.Leistung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus Lieferungen u.Leistung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "children": [
+               {
+                "name": "Zweifelhafte Forderungen (g. 1 Jahr)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Einzelwertberichtigung Forderung(g.1J)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Pauschalwertberichtigung Forderg./g.1J", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderg.a. Lieferungen/Leistungen g.1 J", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderg. aus L+L gg.Gesellschafter g.1 J", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Wechsel a. Lieferungen/Leistungen g.1 J", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "davon mit einer Restlaufzeit von mehr als einem Jahr"
+             }, 
+             {
+              "name": "Pauschalwertberichtigung Forderg./b.1J", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen nach \u00a7 11 EStG f\u00fcr \u00a7 4/3", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderg.a. Lieferungen/Leistungen b.1 J", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus Lieferungen u.Leistung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gegenkonto sonst.VG bei Buchung Debitor", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Gegenkonto bei Aufteilung Debitoren", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen aus L+L gg. Gesellschafter", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderg. aus L+L gg.Gesellschafter b.1 J", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wechsel a. Lieferungen/Leistungen bbf.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wechsel aus Lieferung und Leistung", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Wechsel a. Lieferungen/Leistungen b.1 J", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen aus Lieferungen und Leistungen"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Forderg. L+L gg.UN m.Beteiligg.verh.b1J", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderg. L+L gg.UN m. Beteiligungsverh.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "WB Forderg.gg.UN m.Beteiligg.verh. b.1J", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderg. gg. UN mit Beteiligg.verh. b.1J", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Forderungen gg. UN m. Beteiligungsverh.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "children": [
+               {
+                "name": "WB Forderg.gg.UN m.Beteiligg.verh. g.1J", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderg. L+L gg.UN m.Beteiligg.verh.g1J", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Forderg. gg. UN mit Beteiligg.verh. g.1J", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Besitzwechsel gg.UN m.Beteiligg.verh.g1J", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "davon mit einer Restlaufzeit von mehr als einem Jahr"
+             }, 
+             {
+              "name": "Besitzwechsel gg.UN m. Beteiligungsverh.", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Besitzwechsel gg.UN m.Beteiligg.verh.b1J", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Besitzwechsel gg.UN m.Beteiligg.verh.bbf", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Forderungen gegen Unternehmen, mit denen ein Beteiligungsverh\u00e4ltnis besteht"
+           }
+          ], 
+          "name": "Forderungen und sonstige Verm\u00f6gensgegenst\u00e4nde"
+         }
+        ], 
+        "name": "Umlaufverm\u00f6gen"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aufwand Umsatzsteuer auf Anzahlungen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aufwand Z\u00f6lle und Verbrauchsteuern", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Damnum/Disagio", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aktive Rechnungsabgrenzung", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Rechnungsabgrenzungsposten"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Abgrenzung aktive latente Steuern", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Abgrenzung latenter Steuern"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingangsetzungs- und Erweiterungsaufwand", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aufwendungen f\u00fcr die Ingangsetzung und Erweiterung des Gesch\u00e4ftsbetriebs"
+       }
+      ], 
+      "name": "Aktiva"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Sonderposten aus der W\u00e4hrungsumstellung auf den Euro"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Erhaltene Anzahlungen (bis 1 Jahr)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Erhaltene Anzahlungen 19% USt", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Erhaltene Anzahlungen 7% USt", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Erhaltene Anzahlungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Erhaltene Anzahlungen 16% USt", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Erhaltene Anzahlungen 15% USt", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon mit einer Restlaufzeit bis zu einem Jahr"
+           }, 
+           {
+            "name": "Erhaltene Anzahlungen (1-5 Jahre)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Erhaltene Anzahlungen (g. 5 Jahre)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "erhaltene Anzahlungen auf Bestellungen"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Partiarische Darlehen(g. 5 Jahre)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Partiarische Darlehen(1-5 Jahre)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Partiarische Darlehen(bis 1 Jahr)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Partiarische Darlehen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonstige Verrechnung", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verb.gg.Gesellschaftern off.Aussch\u00fcttg.", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Darlehen atyp. stiller Gesellschafter", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Darlehen atyp. stiller Gesellsch.(b.1J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Lohn/Gehaltsverrechnung \u00a711 f. 4/3 EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Lohn- und Gehaltsverrechnungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeit.gg. Gesellschaftern", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeit.gg. Gesellschaftern b.1J", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Agenturwarenabrechnung", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Kreditkartenabrechnung", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Erhaltene Kautionen (bis 1 Jahr)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Erhaltene Kautionen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verrechnung erhaltene Anzahlungen", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Verbindlichkeiten aus Lohn und Gehalt", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. Einbehaltung Arbeitnehmer", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Darlehen typ. stiller Gesellschafter", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Gewinnverf\u00fcgung stille Gesellschaft.", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonstige Verbindlichkeiten", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sonstige Verbindlichkeiten (bis 1 J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Darlehen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Darlehen bis 1 Jahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Darlehen typ. stiller Gesellsch.(b.1J)", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon mit einer Restlaufzeit bis zu einem Jahr"
+           }, 
+           {
+            "name": "Verbindlichkeit.gg. Gesellschaftern g.5J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Darlehen atyp. stiller Gesellsch.(g.5J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Darlehen atyp. stiller Gesellsch.(1-5J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verbindl. soziale Sicherheit \u00a74/3 EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. Verm\u00f6gensbildung(g.5J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. Verm\u00f6gensbildung(1-5J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. Verm\u00f6gensbildung(b.1J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten a. Verm\u00f6gensbildung", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Voraus.Beitrag ggb. Sozialversich.tr\u00e4ger", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. soziale Sicherheit(1-5J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. soziale Sicherheit(g.5J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten soziale Sicherheit", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. soziale Sicherheit(b.1J)", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon im Rahmen der sozialen Sicherheit"
+           }, 
+           {
+            "children": [
+             {
+              "name": "USt im anderen EG-Land stpfl.Lieferung", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "USt im anderen EG-Land s.Leist./Werkl.", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nach \u00a7 13a UStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer fr\u00fchere Jahre", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer Vorjahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Steuerzahlungen an andere EG-L\u00e4nder", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "USt aus EG-Erwerb ohne Vorsteuerabzug", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer EG-Lieferungen 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer 16%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus EG-Erwerb 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer EG-Lieferungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer 7%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus EG-Erwerb 16%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer aus EG-Erwerb", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. Steuern und Abgaben (b. 1 J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. Steuern und Abgaben", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. Steuern und Abgaben (g. 5 J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. Steuern und Abgaben (1-5 J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "USt EG-Erwerb Neufahrzeuge ohne UStID", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuervorauszahlungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuervorauszahlungen 1/11", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Nachsteuer", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Unrichtig oder unberechtigt ausgew. USt", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nach \u00a7 13b UStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nach \u00a7 13b UStG 16%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer nach \u00a7 13b UStG 19%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Aufgeschobene Einfuhr-Umsatzsteuer", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Umsatzsteuer laufendes Jahr", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. a.Einbehaltung (KapESt)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten f\u00fcr Verbrauchsteuern", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. Lohn- und Kirchensteuer", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. an FA abzuf\u00fchrender Bauabzug", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon aus Steuern"
+           }, 
+           {
+            "name": "Erhaltene Kautionen (gr\u00f6\u00dfer 5 Jahre)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Erhaltene Kautionen (1-5 Jahre)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Gegenkonto bei Aufteilung Kto 0790-98", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Verbindlichkeit.gg. Gesellschaftern 1-5J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Darlehen typ. stiller Gesellsch.(1-5J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Darlehen typ. stiller Gesellsch.(g.5J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Darlehen g. 5 Jahre", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonstige Verbindlichkeiten (1-5 J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonstige Verbindlichkeiten (g. 5 J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonst. Verbindlichkeiten nach \u00a711 EStG", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Darlehen 1-5 Jahre", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "sonstige Verbindlichkeiten"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Anleihen konvertibel", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Anleihen konvertibel(bis 1 Jahr)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Anleihen konvertibel(gr\u00f6\u00dfer 5 Jahre)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Anleihen konvertibel(1-5 Jahre)", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon konvertibel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Anleihen, nicht konvertibel", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Anleihen, nicht konvertibel (b. 1 Jahr)", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon mit einer Restlaufzeit bis zu einem Jahr"
+           }, 
+           {
+            "name": "Anleihen, nicht konvertibel (g.5 Jahre)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Anleihen, nicht konvertibel (1-5 Jahre)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Anleihen"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Verbindlichkeit. gg.verbundene UN(g.5 J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindl.aus L+L gg.verbundenen UN g.5 J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verbindl.aus L+L gg.verbundenen UN b. 1J", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeit. gg.verbundene UN(b.1 J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk.gegen\u00fcber verbundenen UN", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon mit einer Restlaufzeit bis zu einem Jahr"
+           }, 
+           {
+            "name": "Verbindl.aus L+L gg.verbundenen UN 1-5 J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindlichkeit. gg.verbundene UN(1-5 J)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Verbindlichkeiten gegen\u00fcber verbundenen Unternehmen"
+         }, 
+         {
+          "children": [
+           {
+            "name": "TZ-Verbindlichkeit. Kreditinstitut,1-5 J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindlichkeiten Kreditinstitut(g.5J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Gegenkonto bei Aufteilung Kto 0690-98", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verbindlichkeiten Kreditinstitut(b.1J)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichkeiten gg. Kreditinstituten", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TZ-Verbindlichkeit. gg. Kreditinstituten", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TZ-Verbindlichkeit. Kreditinstitut,b.1 J", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon mit einer Restlaufzeit bis zu einem Jahr"
+           }, 
+           {
+            "name": "Verbindlichkeiten Kreditinstitut(1-5J)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "TZ-Verbindlichkeit. Kreditinstitut,g.5 J", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Verbindlichkeiten gegen\u00fcber Kreditinstituten"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Verbindl.a.Lieferungen/Leistungen g.5 J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindl.a.Lieferungen/Leistungen 1-5 J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindl. aus L+L gg. Gesellsch. 1-5 J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindl. aus L+L gg. Gesellsch. g. 5J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verbindl.aus L+L gg.UN m.Beteiligg.verh.", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl.a.Lieferungen/Leistungen b.1 J", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindlichk. Investitionen \u00a7 4/3 EStG", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus Lieferungen u. Leistungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus Lieferungen u. Leistungen", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus L+L allgem. Steuersatz", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus L+L ohne Vorsteuerabzug", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus L+L erm\u00e4\u00dfigt. Steuersatz", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Gegenkto Aufteilung Verbindlichk. L+L", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus L+L gg. Gesellschaftern", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus L+L gg. Gesellsch. b. 1J", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Gegenkonto bei Aufteilung Kreditoren", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus L+L gg. verbundenen UN", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. aus Lieferungen u. Leistungen", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon mit einer Restlaufzeit bis zu einem Jahr"
+           }
+          ], 
+          "name": "Verbindlichkeiten aus Lieferungen und Leistungen"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Verbindl.aus L+L gg.UN m. Bet.verh. g.5J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindl.aus L+L gg.UN m. Bet.verh. 1-5J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindl. gg.UN mit Beteiligg.verh. 1-5J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verbindl. gg.UN mit Beteiligg.verh. g.5J", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Verbindl.aus L+L gg.UN m. Bet.verh. b.1J", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. gg.UN mit Beteiligungsverh.", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Verbindl. gg.UN mit Beteiligg.verh. b.1J", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon mit einer Restlaufzeit bis zu einem Jahr"
+           }
+          ], 
+          "name": "Verbindlichkeiten gegen\u00fcber Unternehmen, mit denen ein Beteiligungsverh\u00e4ltnis besteht"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Schuldwechsel (gr\u00f6\u00dfer 5 Jahre)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Schuldwechsel (bis 1 Jahr)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Schuldwechsel", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "davon mit einer Restlaufzeit bis zu einem Jahr"
+           }, 
+           {
+            "name": "Schuldwechsel (1-5 Jahre)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Verbindlichkeiten aus der Annahme gezogener Wechsel und der Ausstellung eigener Wechsel"
+         }
+        ], 
+        "name": "Verbindlichkeiten"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pensions-und \u00e4hnliche R\u00fcckstellungen", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "R\u00fcckstellungen f\u00fcr Pensionen und \u00e4hnliche Verpflichtungen"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Aufwandsr\u00fcckstellungen \u00a7 249 II HGB", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonstige R\u00fcckstellungen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen Instandhaltung bis 3 Mon.", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen f\u00fcr Aufbewahrungspflicht", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen f\u00fcr Personalkosten", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen f\u00fcr Umweltschutz", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen Instandhaltung 4-12 Mon.", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen Abraum-/Abfallbeseit.", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen f. Gew\u00e4hrleistungen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen f. drohende Verluste", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00fcckstellungen f\u00fcr Abschluss u. Pr\u00fcfung", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "sonstige R\u00fcckstellungen"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00fcckstellungen f\u00fcr latente Steuern", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "K\u00f6rperschaftsteuerr\u00fcckstellung", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "USt nicht f\u00e4llig, EG-Lieferungen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "USt nicht f\u00e4llig, EG-Lieferungen 16%", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Umsatzsteuer nicht f\u00e4llig", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Umsatzsteuer nicht f\u00e4llig 7%", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Umsatzsteuer nicht f\u00e4llig 19%", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "USt nicht f\u00e4llig, EG-Lieferungen 19%", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Umsatzsteuer nicht f\u00e4llig 16%", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Gewerbesteuerr\u00fcckstellung \u00a7 4 Abs. 5b", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Gewerbesteuerr\u00fcckstellung", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Steuerr\u00fcckstellungen", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Steuerr\u00fcckstellungen"
+         }
+        ], 
+        "name": "R\u00fcckstellungen"
+       }, 
+       {
+        "name": "Einlagen stiller Gesellschafter"
+       }, 
+       {
+        "children": [
+         {
+          "name": "SoPo mit R\u00fccklageanteil \u00a7 7g Abs.2 n.F.", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "SoPo mit R\u00fccklageanteil, Sonder-AfA", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "SoPo mit R\u00fccklageanteil Sonder-AfA \u00a7 7g", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "SoPo mit R\u00fccklageanteil \u00a7 7g /3, 7 a.F.", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "SoPo mit R\u00fccklageanteil, stfr. R\u00fccklage", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "SoPo mit R\u00fccklageanteil \u00a7 6b EStG", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "SoPo mit R\u00fccklageanteil EStR R 6.6", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "SoPo mit R\u00fccklageanteil \u00a752 Abs.16 EStG", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Sonderposten mit R\u00fccklageanteil"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sonderposten f\u00fcr Zusch\u00fcsse u. Zulagen", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Sonderposten f\u00fcr Zusch\u00fcsse und Zulagen"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gesellschafter-Darlehen (FK)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Gesellschafter-Darlehen (FK)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Festkapital (EK)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Verlustausgleich (EK)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Kommandit-Kapital (EK)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Variables Kapital (EK)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Anfangskapital"
+         }, 
+         {
+          "name": "Einlagen"
+         }, 
+         {
+          "name": "Jahres\u00fcberschuss Jahresfehlbetrag"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Privatsteuern", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonderausgaben unbeschr\u00e4nkt abzugsf\u00e4hig", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksertrag", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksertrag", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privateinlagen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privateinlagen TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksertrag TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Au\u00dfergew\u00f6hnliche Belastungen TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonderausgaben unbeschr\u00e4nkt abzugsf. TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Au\u00dfergew\u00f6hnliche Belastungen", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privatsteuern TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privatentnahmen allgemein", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonderausgaben beschr\u00e4nkt abzugsf\u00e4hig", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Zuwendungen, Spenden", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksaufwand", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksaufwand", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Unentgeltliche Wertabgaben", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Unentgeltliche Wertabgaben TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Grundst\u00fccksaufwand TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Zuwendungen, Spenden TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sonderausgaben beschr\u00e4nkt abzugsf. TH", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Privatentnahmen allgemein TH", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Entnahmen"
+         }
+        ], 
+        "name": "Kapital"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Passive Rechnungsabgrenzung", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Verbindlichkeiten aus der Begebung und \u00dcbertragung von Wechseln, aus B\u00fcrgschaften, Wechsel- und Scheckb\u00fcrgschaften und aus Gew\u00e4hrleistungsvertr\u00e4gen sowie Haftung aus Bestellung von Sicherheiten f\u00fcr fremde Verbindlichkeiten"
+         }
+        ], 
+        "name": "Rechnungsabgrenzungsposten"
+       }
+      ], 
+      "name": "Passiva"
+     }
+    ], 
+    "name": "Bilanzkonten"
+   }
+  ], 
+  "name": "Deutscher Kontenplan SKR03"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/ec_ec_chart_template.json b/setup/doctype/company/charts/ec_ec_chart_template.json
new file mode 100644
index 0000000..5332b72
--- /dev/null
+++ b/setup/doctype/company/charts/ec_ec_chart_template.json
@@ -0,0 +1,11 @@
+{
+ "name": "Ecuador - Chart of Accounts", 
+ "root": {
+  "children": [
+   {
+    "name": "CUENTAS DE ORDEN"
+   }
+  ], 
+  "name": "PLAN DE CTAS. ECUADOR"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/es_l10nES_chart_template.json b/setup/doctype/company/charts/es_l10nES_chart_template.json
new file mode 100644
index 0000000..015bf93
--- /dev/null
+++ b/setup/doctype/company/charts/es_l10nES_chart_template.json
@@ -0,0 +1,8118 @@
+{
+ "name": "Plantilla PGCE completo 2008", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia por deterioro de ajustes valorativos negativos previos, empresas asociadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Transferencia por deterioro de ajustes valorativos negativos previos, empresas asociadas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Recuperaci\u00f3n de ajustes valorativos negativos previos, empresas asociadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Recuperaci\u00f3n de ajustes valorativos negativos previos, empresas asociadas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transferencia por deterioro de ajustes valorativos negativos previos, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Transferencia por deterioro de ajustes valorativos negativos previos, empresas del grupo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Recuperaci\u00f3n de ajustes valorativos negativos previos, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Recuperaci\u00f3n de ajustes valorativos negativos previos, empresas del grupo", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos de participaciones en empresas del grupo o asociadas con ajustes valorativos negativos previos", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ingresos de subvenciones oficiales de capital", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de subvenciones oficiales de capital", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos de donaciones y legados de capital", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de donaciones y legados de capital", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos de otras subvenciones, donaciones y legados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de otras subvenciones, donaciones y legados", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresoss por subvenciones, donaciones y legados", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ganancias actuariales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancias actuariales", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes positivos en activos por retribuciones a largo plazo de prestaci\u00f3n definida", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ajustes positivos en activos por retribuciones a largo plazo de prestaci\u00f3n definida", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos por ganancias actuariales y ajustes en los activos por retribuciones a largo plazo de prestaci\u00f3n definida", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia de p\u00e9rdidas en activos no corrientes y grupos enajenables de elementos mantenidos para la venta", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Transferencia de p\u00e9rdidas en activos no corrientes y grupos enajenables de elementos mantenidos para la venta", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios en activos no corrientes y grupos enajenables de elementos mantenidos para la venta", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios en activos no corrientes y grupos enajenables de elementos mantenidos para la venta", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos por activos no corrientes en venta", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia de p\u00e9rdidas en activos financieros disponibles para la venta", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Transferencia de p\u00e9rdidas en activos financieros disponibles para la venta", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios en activos financieros disponibles para la venta", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios en activos financieros disponibles para la venta", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos financieros por valoraci\u00f3n de activos y pasivos", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia de p\u00e9rdidas por coberturas de flujos de efectivo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Transferencia de p\u00e9rdidas por coberturas de flujos de efectivo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transferencia de p\u00e9rdidas por coberturas de inversiones netas en un negocio en el extranjero", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Transferencia de p\u00e9rdidas por coberturas de inversiones netas en un negocio en el extranjero", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios por coberturas de flujos de efectivo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios por coberturas de flujos de efectivo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios por coberturas de inversiones netas en un negocio en el extranjero", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios por coberturas de inversiones netas en un negocio en el extranjero", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos en operaciones de cobertura", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia de diferencias de conversi\u00f3n negativas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Transferencia de diferencias de conversi\u00f3n negativas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias de conversi\u00f3n positivas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Diferencias de conversi\u00f3n positivas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos por diferencias de conversi\u00f3n", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Ingresos imputados al patrimonio neto", 
+    "root_type": "Income"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda de partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de valores representativos de deuda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de terrenos y bienes naturales", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de maquinaria", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de maquinaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de otras instaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de otras instaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de mobiliario", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de mobiliario", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de construcciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de instalaciones t\u00e9cnicas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de utillaje", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de utillaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de otro inmovilizado material", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de otro inmovilizado material", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de elementos de transporte", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de elementos de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de equipos para proceso de informaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro del valor del inmovilizado material", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de aplicaciones inform\u00e1ticas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de derechos de traspaso", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de derechos de traspaso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de concesiones administrativas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de concesiones administrativas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de propiedad industrial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de investigaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de investigaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de desarrollo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor del inmovilizado intangible", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones en empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones en empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones en empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones en empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de participaciones en partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de los terrenos y bienes naturales", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de los terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de las inversiones inmobiliarias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deterioro de valor de activos no corrientes", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n acumulada de las inversiones inmobiliarias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada de las inversiones inmobiliarias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de derechos de traspaso", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de derechos de traspaso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de aplicaciones inform\u00e1ticas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de propiedad industrial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de investigaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de investigaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de concesiones administrativas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de concesiones administrativas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada del inmovilizado intangible", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de maquinaria", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de maquinaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de utillaje", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de utillaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de otras instalaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de otras instalaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de mobiliario", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de mobiliario", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de equipos para proceso de informaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de construcciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de instalaciones t\u00e9cnicas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de elementos de transporte", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de elementos de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de otro inmovilizado material", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de otro inmovilizado material", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada del inmovilizado material", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Amortizaci\u00f3n acumulada del inmovilizado", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Utillaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Utillaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Equipos para proceso de informaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otro inmovilizado material", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otro inmovilizado material", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Elementos de transporte", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Elementos de transporte", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras instalaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras instalaciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mobiliario", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mobiliario", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Construcciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Maquinaria", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Maquinaria", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Instalaciones t\u00e9cnicas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones materiales", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Anticipos para inmovilizaciones intangibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos para inmovilizaciones intangibles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concesiones administrativas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Concesiones administrativas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Propiedad industrial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Propiedad industrial", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Investigaci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Investigaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desarrollo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desarrollo", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aplicaciones inform\u00e1ticas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondo de comercio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fondo de comercio", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos de traspaso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Derechos de traspaso", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones intangibles", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Instalaciones t\u00e9cnicas en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Instalaciones t\u00e9cnicas en montaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos para inmovilizaciones materiales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos para inmovilizaciones materiales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Maquinaria en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Maquinaria en montaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Construcciones en curso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Construcciones en curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Adaptaci\u00f3n de terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Adaptaci\u00f3n de terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Equipos para procesos de informaci\u00f3n en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Equipos para procesos de informaci\u00f3n en montaje", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones materiales en curso", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones en terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones en terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones en construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones en construcciones", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inversiones inmobiliarias", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imposiciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Imposiciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores representativos de deuda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valores representativos de deuda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones financieras en instrumentos de patrimonio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones financieras en instrumentos de patrimonio", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos por enajenaci\u00f3n de inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos por enajenaci\u00f3n de inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos por derivados financieros, cartera de negociaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos por derivados financieros, cartera de negociaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos por derivados financieros, instrumentos de cobertura", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos por derivados financieros, instrumentos de cobertura", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos por derivados financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos al personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos de reembolso derivados de contratos de seguro relativos a retribuciones al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Derechos de reembolso derivados de contratos de seguro relativos a retribuciones al personal", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Otras inversiones financieras", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Participaciones en otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Participaciones en otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones en empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Participaciones en empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones en empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Participaciones en empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Participaciones en partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valores representativos de deuda de partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones en empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones en empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones en empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones en empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones en otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones en otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones en partes vinculadas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inversiones financieras en partes vinculadas", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos constituidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Dep\u00f3sitos constituidos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas constituidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fianzas constituidas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Fianzas y dep\u00f3sitos constituidos", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Activo no corriente", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de las materias primas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de las materias primas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de las mercader\u00edas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de las mercader\u00edas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de otros aprovisionamientos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de otros aprovisionamientos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos en curso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos en curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos semiterminados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos semiterminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos terminados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los subproductos, residuos y materiales recuperados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los subproductos, residuos y materiales recuperados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deterioro de valor de las existencias", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Material de oficina", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Material de oficina", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Combustibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Combustibles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Elementos y conjuntos incorporables", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Elementos y conjuntos incorporables", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Embalajes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Embalajes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Repuestos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Repuestos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales diversos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales diversos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Otros aprovisionamientos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos en curso B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en curso B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos en curso A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en curso A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos en curso", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Comerciales", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materias Primas A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias Primas A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materias Primas B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias Primas B", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materias Primas", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Residuos A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Residuos A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Residuos B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Residuos B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales recuperados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales recuperados B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales recuperados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales recuperados A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subproductos, residuos y materiales recuperados", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos semiterminados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos semiterminados B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos semiterminados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos semiterminados A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos semiterminados", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos terminados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos terminados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados B", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos terminados", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Existencias", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros desembolsos no exigidos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros desembolsos no exigidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desembolsos no exigidos por acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras aportaciones no dinerarias pendientes", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras aportaciones no dinerarias pendientes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aportaciones no dinerarias pendientes por acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas con caracter\u00edsticas especiales", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otras deudas, con otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, con otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras deudas con partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, empresas de grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, empresas de grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero, partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado, partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas con otras entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con otras entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas con entidades de cr\u00e9dito vinculadas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas con partes vinculadas", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deudas con entidades de cr\u00e9dito", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas con entidades de cr\u00e9dito", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores de inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones y bonos convertibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Obligaciones y bonos convertibles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas representadas en otros valores negociables", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas representadas en otros valores negociables", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas transformables en subvenciones, donaciones y legados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas transformables en subvenciones, donaciones y legados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores por arrendamiento financiero", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Efectos a pagar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Efectos a pagar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pasivos por derivados financieros, carter de negociaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Pasivos por derivados financieros, carter de negociaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pasivos por derivados financieros, instrumentos de cobertura", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Pasivos por derivados financieros, instrumentos de cobertura", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Pasivos por derivados financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones y bonos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Obligaciones y bonos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas por pr\u00e9stamos recibidos, empr\u00e9stitos y otros conceptos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos no exigidos, capital pendiente de inscripci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Socios por desembolsos no exigidos, capital pendiente de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos no exigidos, capital social", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Socios por desembolsos no exigidos, capital social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Socios por desembolsos no exigidos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondo social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fondo social", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Capital social", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Socios por aportaciones no dinerarias pendientes, capital pendiente de inscripci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Socios por aportaciones no dinerarias pendientes, capital pendiente de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios por aportaciones no dinerarias pendientes, capital social", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Socios por aportaciones no dinerarias pendientes, capital social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Socios por aportaciones no dinerarias pendientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones propias para reducci\u00f3n de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones propias para reducci\u00f3n de capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones propias en situaciones especiales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones propias en situaciones especiales", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Capital", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ajustes por valoraci\u00f3n en activos financieros disponibles para la venta", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Ajustes por valoraci\u00f3n en activos financieros disponibles para la venta", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes por valoraci\u00f3n de activos no corrientes y grupos enajenables de elementos, mantenidos para la venta", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Ajustes por valoraci\u00f3n de activos no corrientes y grupos enajenables de elementos, mantenidos para la venta", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos fiscales por diferencias permanentes a distribuir en varios ejercicios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ingresos fiscales por diferencias permanentes a distribuir en varios ejercicios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos fiscales por deducciones y bonificaciones a distribuir en varios ejercicios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ingresos fiscales por deducciones y bonificaciones a distribuir en varios ejercicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Ingresos fiscales a distribuir en varios ejercicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subvenciones oficiales de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subvenciones oficiales de capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Donaciones y legados de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Donaciones y legados de capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras subvenciones, donaciones y legados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras subvenciones, donaciones y legados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cobertura de una inversi\u00f3n neta en un negocio en el extranjero", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cobertura de una inversi\u00f3n neta en un negocio en el extranjero", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cobertura de flujos de efectivo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cobertura de flujos de efectivo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Operaciones de cobertura", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias de conversi\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Diferencias de conversi\u00f3n", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subvenciones, donaciones y ajustes por cambio de valor", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Garant\u00edas financieras", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Garant\u00edas financieras", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos recibidos por ventas o prestaciones de servicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos recibidos por ventas o prestaciones de servicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas recibidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fianzas recibidas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos recibidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Dep\u00f3sitos recibidos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Pasivos por fianzas, garant\u00edas y otros conceptos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Suscriptores de acciones consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Suscriptores de acciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital emitido pendiente de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Capital emitido pendiente de inscripci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suscriptores de acciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Suscriptores de acciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas consideradas como pasivos financieros pendientes de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas consideradas como pasivos financieros pendientes de inscripci\u00f3n", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Situaciones transitorias de financiaci\u00f3n", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para actuaciones medioambientales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para actuaciones medioambientales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n por transacciones con pagos basados en instrumentos de patrimonio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n por transacciones con pagos basados en instrumentos de patrimonio", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para reestructuraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para reestructuraciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para impuestos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para impuestos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n por retribuciones del personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n por retribuciones del personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para otras responsabilidades", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para otras responsabilidades", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Provisiones", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Aportaciones de socios o propietarios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aportaciones de socios o propietarios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias por ajuste del capital a euros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Diferencias por ajuste del capital a euros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reservas estatutarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas estatutarias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reservas para acciones o participaciones de la sociedad dominante", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas para acciones o participaciones de la sociedad dominante", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reservas por acciones propias aceptadas en garant\u00eda", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas por acciones propias aceptadas en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reserva por fondo de comercio", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reserva por fondo de comercio", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reserva por capital amortizado", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reserva por capital amortizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reservas especiales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reservas por p\u00e9rdidas y ganancias actuariales y otros ajustes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reservas por p\u00e9rdidas y ganancias actuariales y otros ajustes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserva Legal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reserva Legal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reservas voluntarias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reservas voluntarias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Prima de Emisi\u00f3n o asunci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Prima de Emisi\u00f3n o asunci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Patrimonio neto por emision de instrumentos financieros compuestos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio neto por emision de instrumentos financieros compuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Resto de instrumentos de patrimonio neto", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Resto de instrumentos de patrimonio neto", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros Instrumentos de patrimonio neto", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Reservas y otros instrumentos de patrimonio", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Remanente", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Remanente", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultado del ejercicio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Resultado del ejercicio", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados negativos de ejercicios anteriores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Resultados negativos de ejercicios anteriores", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Resultados pendientes de Aplicaci\u00f3n", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Financiaci\u00f3n B\u00e1sica", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida soportada (part\u00edcipe o asociado no gestor)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdida soportada (part\u00edcipe o asociado no gestor)", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficio transferido (gestor)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Beneficio transferido (gestor)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Resultados de operaciones en com\u00fan", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas de cr\u00e9ditos comerciales incobrables", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas de cr\u00e9ditos comerciales incobrables", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras p\u00e9rdidas en gesti\u00f3n corriente", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otras p\u00e9rdidas en gesti\u00f3n corriente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Otros gastos de gesti\u00f3n", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Retribuciones mediante sistemas de aportaci\u00f3n definida", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Retribuciones mediante sistemas de aportaci\u00f3n definida", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sueldos y salarios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Sueldos y salarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Seguridad Social a cargo de la empresa", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Seguridad Social a cargo de la empresa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Indemnizaciones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Indemnizaciones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros costes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Otros costes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contribuciones anuales", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Contribuciones anuales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Retribuciones mediante sistemas de prestaci\u00f3n definida", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Retribuciones al personal liquidados con instrumentos de patrimonio", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Retribuciones al personal liquidados con instrumentos de patrimonio", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Retribuciones al personal liquidados en efectivo basado en instrumentos de patrimonio", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Retribuciones al personal liquidados en efectivo basado en instrumentos de patrimonio", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Retribuciones al personal mediante instrumentos de patrimonio", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos sociales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros gastos sociales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de personal", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos excepcionales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos excepcionales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones en, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones en, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones, otras partes vinculadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes de participaciones en partes vinculadas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes del inmovilizado material", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes del inmovilizado material", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por operaciones con obligaciones propias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por operaciones con obligaciones propias", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "P\u00e9rdidas procedentes de activos no corrientes y gastos excepcionales", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cartera de negociaci\u00f3n", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cartera de negociaci\u00f3n", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de designados por la empresa", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de designados por la empresa", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de disponibles para la venta", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de disponibles para la venta", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de instrumentos de cobertura", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de instrumentos de cobertura", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por valoraci\u00f3n de instrumentos financieros por su valor razonable", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con otras entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con otras entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en otras entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en otras entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito asociadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Intereses por descuento de efectos y operaciones de \u201cfactoring\u201d", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias negativas de cambio", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Diferencias negativas de cambio", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos financieros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros gastos financieros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros por actualizaci\u00f3n de provisiones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros por actualizaci\u00f3n de provisiones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Intereses de obligaciones y bonos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas con entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas con entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Intereses de deudas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas en participaciones y valores representativos de deuda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas de cr\u00e9ditos no comerciales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos financieros", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de materias primas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de materias primas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de mercader\u00edas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de mercader\u00edas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de otros aprovisionamientos", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de mercader\u00edas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Devoluciones de compras y operaciones similares", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de mercader\u00edas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "\u201cRappels\u201d por compras", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de mercader\u00edas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Descuentos sobre compras por pronto pago", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados por otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Trabajos realizados por otras empresas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras de materias primas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de materias primas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de otros aprovisionamientos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras de mercader\u00edas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de mercader\u00edas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Compras", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ajustes positivos en la imposici\u00f3n sobre beneficios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes positivos en la imposici\u00f3n sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros tributos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros tributos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ajustes positivos en IVA de inversiones", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes positivos en IVA de inversiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustes positivos en IVA de activo corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes positivos en IVA de activo corriente", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes positivos en la imposici\u00f3n indirecta", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Devoluci\u00f3n de impuestos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Devoluci\u00f3n de impuestos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ajustes negativos en IVA de activo corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes negativos en IVA de activo corriente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustes negativos en IVA de inversiones", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes negativos en IVA de inversiones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes negativos en la imposici\u00f3n indirecta", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes negativos en la imposici\u00f3n sobre beneficios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes negativos en la imposici\u00f3n sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Impuesto corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Impuesto corriente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Impuesto diferido", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Impuesto diferido", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Impuesto sobre beneficios", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Tributos", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros servicios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros servicios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transportes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transportes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios bancarios y similares", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Servicios bancarios y similares", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Publicidad, propaganda y relaciones p\u00fablicas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Publicidad, propaganda y relaciones p\u00fablicas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos en investigaci\u00f3n y desarrollo del ejercicio", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos en investigaci\u00f3n y desarrollo del ejercicio", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Arrendamientos y c\u00e1nones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Arrendamientos y c\u00e1nones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reparaciones y conservaci\u00f3n", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Reparaciones y conservaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios de profesionales independientes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Servicios de profesionales independientes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suministros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Suministros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Primas de seguros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Primas de seguros", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Servicios Exteriores", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro del inmovilizado material", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro del inmovilizado material", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de mercader\u00edas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de existencias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotaci\u00f3n a la provisi\u00f3n por contratos onerosos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dotaci\u00f3n a la provisi\u00f3n por contratos onerosos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotaci\u00f3n a la provisi\u00f3n para otras operaciones comerciales", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dotaci\u00f3n a la provisi\u00f3n para otras operaciones comerciales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dotaci\u00f3n a la provisi\u00f3n por operaciones comerciales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos por operaciones comerciales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos por operaciones comerciales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de participaciones y valores representativos de deuda a corto plazo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de participaciones y valores representativos de deuda", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "P\u00e9rdidas por deterioro y otras dotaciones", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n del inmovilizado material", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n del inmovilizado material", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Dotaciones para amortizaciones", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Compras y Gastos", 
+    "root_type": "Expense"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ingresos por servicios diversos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por servicios diversos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida transferido (gestor)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "P\u00e9rdida transferido (gestor)", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficio atribuido (part\u00edcipe o asociado no gestor)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficio atribuido (part\u00edcipe o asociado no gestor)", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Resultados de operaciones en com\u00fan", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por arrendamientos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por arrendamientos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos de propiedad industrial cedida en explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de propiedad industrial cedida en explotaci\u00f3n", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por comisiones", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por comisiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por servicios al personal", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por servicios al personal", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Otros ingresos de gesti\u00f3n", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados en inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados en inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado material en curso", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado material en curso", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado material", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado material", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado intangible", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Trabajos realizados para la empresa", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes Exportaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de envases y embalajes", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de productos semiterminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de envases y embalajes", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de envases y embalajes", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "\"Rappels\" sobre ventas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de productos semiterminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de envases y embalajes", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de envases y embalajes", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Devoluciones de ventas y operaciones similares", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de productos semiterminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de productos terminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos sobre ventas por pronto pago", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios fuera de la UE", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios fuera de la UE", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios Intracomunitarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Prestaciones de servicios", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos Exportaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de subproductos y residuos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados Intracomunitarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de productos semiterminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados en Espa\u00f1a", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de productos terminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas Exportaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de mercader\u00edas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ventas de mercader\u00edas, de producci\u00f3n propia, de servicios, etc.", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas asociadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas del grupo", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a largo plazo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas del grupo", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas asociadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a corto plazo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de cr\u00e9ditos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos financieros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos financieros", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos de activos afectos y de derechos de reembolso relativos a retribuciones a largo plazo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de activos afectos y de derechos de reembolso relativos a retribuciones a largo plazo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios en participaciones y valores representativos de deuda", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Beneficios de disponibles para la venta", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios de disponibles para la venta", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios de instrumentos de cobertura", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios de instrumentos de cobertura", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios de designados por la empresa", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios de designados por la empresa", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios de cartera de negociaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios de cartera de negociaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios por valoraci\u00f3n de instrumentos financieros por su valor razonable", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de valores representativos de deuda", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas asociadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de participaciones en instrumentos de patrimonio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias positivas de cambio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Diferencias positivas de cambio", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos financieros", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes del inmovilizado material", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes del inmovilizado material", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes de las inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes de las inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo en, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo en, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes de participaciones a largo plazo en partes vinculadas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes del inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes del inmovilizado intangible", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencia negativa en combinaciones de negocios", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Diferencia negativa en combinaciones de negocios", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficos por operaciones con obligaciones propias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficos por operaciones con obligaciones propias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos excepcionales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos excepcionales", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Beneficios procedentes de activos no corrientes e ingresos excepcionales", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Subvenciones, donaciones y legados a la explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Subvenciones, donaciones y legados a la explotaci\u00f3n", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras subvenciones, donaciones y legados transferidos al resultado del ejercicio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otras subvenciones, donaciones y legados transferidos al resultado del ejercicio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subvenciones, donaciones y legados de capital transferidos al resultado del ejercicio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Subvenciones, donaciones y legados de capital transferidos al resultado del ejercicio", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Subvenciones, donaciones y legados", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos en curso", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos en curso", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos semiterminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos semiterminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos terminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos terminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de subproductos, residuos y materiales recuperados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de subproductos, residuos y materiales recuperados", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro de las inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de las inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de materias primas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de materias primas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de otros aprovisionamientos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de otros aprovisionamientos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de existencias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de participaciones y valores representativos de deuda a corto plazo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos por operaciones comerciales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos por operaciones comerciales", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para otras responsabilidades", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para otras responsabilidades", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para impuestos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para impuestos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para reestructuraciones", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para reestructuraciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Exceso de provisi\u00f3n por contratos onerosos", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Exceso de provisi\u00f3n por contratos onerosos", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Exceso de provisi\u00f3n para otras operaciones comerciales", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Exceso de provisi\u00f3n para otras operaciones comerciales", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n por operaciones comerciales", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para actuaciones medioambientales", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para actuaciones medioambientales", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n por retribuciones al personal", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n por retribuciones al personal", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n por transacciones con pagos basados en instrumentos de patrimonio", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n por transacciones con pagos basados en instrumentos de patrimonio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Exceso de provisiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de participaciones y valores representativos de deuda a largo plazo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro del inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro del inmovilizado intangible", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro del inmovilizado material", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro del inmovilizado material", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Excesos y aplicaciones de provisiones y de p\u00e9rdidas por deterioro", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Ventas e ingresos", 
+    "root_type": "Income"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ingresos anticipados", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Ingresos anticipados", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos anticipados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Gastos anticipados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Ajustes por periodificaci\u00f3n"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n por contratos onerosos"
+           }
+          ], 
+          "name": "Provisi\u00f3n por contratos onerosos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n para otras operaciones comerciales"
+           }
+          ], 
+          "name": "Provisi\u00f3n para otras operaciones comerciales"
+         }
+        ], 
+        "name": "Provisiones por operaciones comerciales"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas del grupo"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales"
+       }
+      ], 
+      "name": "Deterioro de valor de cr\u00e9ditos comerciales y provisiones a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Hacienda P\u00fablica, retenciones y pagos a cuenta"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, retenciones y pagos a cuenta"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Hacienda P\u00fablica. IVA soportado"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. IVA soportado"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, IVA soportado"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por subvenciones a reintegrar"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por subvenciones a reintegrar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por retenciones practicadas"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por retenciones practicadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por IVA"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por IVA"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por impuesto sobre sociedades"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por impuesto sobre sociedades"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, acreedora por conceptos fiscales"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Derechos por deducciones y bonificaciones pendientes de aplicar"
+           }
+          ], 
+          "name": "Derechos por deducciones y bonificaciones pendientes de aplicar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos por diferencias temporarias deducibles"
+           }
+          ], 
+          "name": "Activos por diferencias temporarias deducibles"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dito por p\u00e9rdidas a compensar del ejercicio"
+           }
+          ], 
+          "name": "Cr\u00e9dito por p\u00e9rdidas a compensar del ejercicio"
+         }
+        ], 
+        "name": "Activos por impuesto diferido"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Organismos de la Seguridad Social, deudores"
+         }
+        ], 
+        "name": "Organismos de la Seguridad Social, deudores"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por IVA"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por IVA"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por subvenciones concedidas"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por subvenciones concedidas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por devoluci\u00f3n de impuestos"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por devoluci\u00f3n de impuestos"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, deudora por diversos conceptos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivos por diferencias temporarias imponibles"
+         }
+        ], 
+        "name": "Pasivos por diferencias temporarias imponibles"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Hacienda P\u00fablica. IVA repercutido"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, IVA repercutido"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Organismos de la Seguridad Social, acreedores"
+         }
+        ], 
+        "name": "Organismos de la Seguridad Social, acreedores"
+       }
+      ], 
+      "name": "Administraciones p\u00fablicas"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Anticipos de remuneraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos de remuneraciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Remuneraciones mediante sistemas de aportaci\u00f3n definida pendientes de pago", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones mediante sistemas de aportaci\u00f3n definida pendientes de pago", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Remuneraciones pendientes de pago", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones pendientes de pago", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Personal"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudores (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores (moneda extranjera)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, facturas pendientes de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, facturas pendientes de formalizar", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores (euros)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales en gesti\u00f3n de cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales en gesti\u00f3n de cobro", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales en cartera", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales en cartera", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales descontados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales descontados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales impagados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales impagados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores, efectos comerciales a cobrar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudores de dudoso cobro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores de dudoso cobro", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudores por operaciones en com\u00fan", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores por operaciones en com\u00fan", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudores varios", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Clientes, otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, otras partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes, empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, empresas asociadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y embalajes a devolver por clientes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases y embalajes a devolver por clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos de clientes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos de clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales impagados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales impagados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales descontados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales descontados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales en cartera", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales en cartera", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales en gesti\u00f3n de cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales en gesti\u00f3n de cobro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, efectos comerciales a cobrar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Clientes (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes (euros)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes (moneda extranjera)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo, facturas pendientes de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo, facturas pendientes de formalizar", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo de dudoso cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo de dudoso cobro", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Envases y embalajes a devolver a clientes, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Envases y embalajes a devolver a clientes, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo (moneda extranjera)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo, operaciones de factoring", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo, operaciones de factoring", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales a cobrar, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales a cobrar, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo (euros)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, empresas del grupo", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes, operaciones de factoring", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, operaciones de factoring", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes de dudoso cobro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes de dudoso cobro", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Clientes", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios (euros)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios (moneda extranjera)", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores por prestaciones de servicios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores por operaciones en com\u00fan", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores por operaciones en com\u00fan", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores, efectos comerciales a pagar", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores, efectos comerciales a pagar", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Acreedores varios", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores (euros)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores (moneda extranjera)", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores, empresas asociadas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, empresas asociadas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores, otras partes vinculadas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, otras partes vinculadas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y embalajes a devolver a proveedores", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Envases y embalajes a devolver a proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos a proveedores", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Anticipos a proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores, efectos comerciales a pagar", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, efectos comerciales a pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo (euros)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales a pagar, empresas del grupo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Efectos comerciales a pagar, empresas del grupo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo (moneda extranjera)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Envases y embalajes a devolver a proveedores, empresas del grupo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Envases y embalajes a devolver a proveedores, empresas del grupo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, empresas del grupo", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Proveedores", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Acreedores y deudores por operaciones comerciales"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deudas representadas en otros valores negociables a corto plazo"
+         }
+        ], 
+        "name": "Deudas representadas en otros valores negociables a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones y bonos convertibles a corto plazo"
+         }
+        ], 
+        "name": "Obligaciones y bonos convertibles a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones y bonos a corto plazo"
+         }
+        ], 
+        "name": "Obligaciones y bonos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones a corto plazo consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Acciones o participaciones a corto plazo consideradas como pasivos financieros"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligaciones y bonos amortizados"
+           }
+          ], 
+          "name": "Obligaciones y bonos amortizados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones y bonos convertibles amortizados"
+           }
+          ], 
+          "name": "Obligaciones y bonos convertibles amortizados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros valores negociables amortizados"
+           }
+          ], 
+          "name": "Otros valores negociables amortizados"
+         }
+        ], 
+        "name": "Valores negociables amortizados"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de empr\u00e9stitos y otras emisiones an\u00e1logas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de empr\u00e9stitos y otras emisiones an\u00e1logas"
+       }
+      ], 
+      "name": "Empr\u00e9stitos, deudas con caracter\u00edsticas especiales y otras emisiones an\u00e1logas a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, otras partes vinculadas"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, empresas asociadas"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, empresas del grupo"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, empresas del grupo"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero a corto plazo, partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con empresas del grupo"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con empresas asociadas"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con otras partes vinculadas"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con otras partes vinculadas"
+         }
+        ], 
+        "name": "Otras deudas a corto plazo con partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con otras entidades de cr\u00e9dito vinculadas"
+           }
+          ], 
+          "name": "Deudas a corto plazo con otras entidades de cr\u00e9dito vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas asociadas"
+           }
+          ], 
+          "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas del grupo"
+           }
+          ], 
+          "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas del grupo"
+         }
+        ], 
+        "name": "Deudas a corto plazo con entidades de cr\u00e9dito vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, empresas asociadas"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, otras partes vinculadas"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, empresas del grupo"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, empresas del grupo"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado a corto plazo, partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con empresas asociadas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas con partes vinculadas"
+       }
+      ], 
+      "name": "Deudas a corto plazo con partes vinculadas"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de deudas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas a corto plazo transformables en subvenciones, donaciones y legados"
+         }
+        ], 
+        "name": "Deudas a corto plazo transformables en subvenciones, donaciones y legados"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo por transacciones con pagos basados en instrumentos"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo por transacciones con pagos basados en instrumentos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para reestructuraciones de patrimonio"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para reestructuraciones de patrimonio"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para otras responsabilidades"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para otras responsabilidades"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para impuestos"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para impuestos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo por retribuciones al personal"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo por retribuciones al personal"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para actuaciones medioambientales"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para actuaciones medioambientales"
+         }
+        ], 
+        "name": "Provisiones a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores de inmovilizado a corto plazo"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas a corto plazo"
+         }
+        ], 
+        "name": "Deudas a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas por efectos descontados"
+           }
+          ], 
+          "name": "Deudas por efectos descontados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas por operaciones de \u201cfactoring\u201d"
+           }
+          ], 
+          "name": "Deudas por operaciones de \u201cfactoring\u201d"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9stamos a corto plazo de entidades de cr\u00e9dito"
+           }
+          ], 
+          "name": "Pr\u00e9stamos a corto plazo de entidades de cr\u00e9dito"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo por cr\u00e9dito dispuesto"
+           }
+          ], 
+          "name": "Deudas a corto plazo por cr\u00e9dito dispuesto"
+         }
+        ], 
+        "name": "Deudas a corto plazo con entidades de cr\u00e9dito"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de deudas con entidades de cr\u00e9dito"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas con entidades de cr\u00e9dito"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo activo a pagar"
+         }
+        ], 
+        "name": "Dividendo activo a pagar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Efectos a pagar a corto plazo"
+         }
+        ], 
+        "name": "Efectos a pagar a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores por arrendamiento financiero a corto plazo"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero a corto plazo"
+       }
+      ], 
+      "name": "Deudas a corto plazo por pr\u00e9stamos recibidos y otros conceptos"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en otras partes vinculadas"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en otras partes vinculadas"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones a corto plazo en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en otras partes vinculadas"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en empresas asociadas"
+         }
+        ], 
+        "name": "Participaciones a corto plazo en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a otras partes vinculadas"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a empresas asociadas"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a empresas del grupo"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a empresas del grupo"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de empresas del grupo"
+         }
+        ], 
+        "name": "Intereses a corto plazo de valores representativos de deuda de partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a empresas asociadas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de cr\u00e9ditos a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en empresas asociadas"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en otras partes vinculadas"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en empresas del grupo"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en empresas del grupo"
+         }
+        ], 
+        "name": "Dividendo a cobrar de inversiones financieras en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de empresas del grupo"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de empresas asociadas"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de otras partes vinculadas"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de otras partes vinculadas"
+         }
+        ], 
+        "name": "Valores representativos de deuda a corto plazo de partes vinculadas"
+       }
+      ], 
+      "name": "Inversiones financieras a corto plazo en partes vinculadas"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Valores representativos de deuda a corto plazo"
+         }
+        ], 
+        "name": "Valores representativos de deuda a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones financieras a corto plazo en instrumentos de patrimonio"
+         }
+        ], 
+        "name": "Inversiones financieras a corto plazo en instrumentos de patrimonio"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo por enajenaci\u00f3n de inmovilizado"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo por enajenaci\u00f3n de inmovilizado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo a cobrar"
+         }
+        ], 
+        "name": "Dividendo a cobrar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo al personal"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo al personal"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de cr\u00e9ditos"
+         }
+        ], 
+        "name": "Intereses a corto plazo de cr\u00e9ditos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto a corto plazo"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de valores representativos de deudas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de valores representativos de deudas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imposiciones a corto plazo"
+         }
+        ], 
+        "name": "Imposiciones a corto plazo"
+       }
+      ], 
+      "name": "Otras inversiones financieras a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con empresas del grupo"
+           }
+          ], 
+          "name": "Cuenta corriente con empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con otras partes vinculadas"
+           }
+          ], 
+          "name": "Cuenta corriente con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con empresas asociadas"
+           }
+          ], 
+          "name": "Cuenta corriente con empresas asociadas"
+         }
+        ], 
+        "name": "Cuenta corriente con otras personas y entidades vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuenta corriente con socios y administradores"
+         }
+        ], 
+        "name": "Cuenta corriente con socios y administradores"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos exigidos sobre acciones o participaciones ordinarias"
+           }
+          ], 
+          "name": "Socios por desembolsos exigidos sobre acciones o participaciones ordinarias"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos exigidos sobre acciones o participaciones consideradas como pasivos financieros"
+           }
+          ], 
+          "name": "Socios por desembolsos exigidos sobre acciones o participaciones consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Socios por desembolsos exigidos"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, empresas asociadas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, otras partes vinculadas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones de otras empresas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones de otras empresas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, empresas del grupo"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, empresas del grupo"
+         }
+        ], 
+        "name": "Desembolsos exigidos sobre participaciones en el patrimonio neto"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuenta corriente con uniones temporales de empresas y comunidades de bienes"
+         }
+        ], 
+        "name": "Cuenta corriente con uniones temporales de empresas y comunidades de bienes"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Partidas pendientes de aplicaci\u00f3n"
+         }
+        ], 
+        "name": "Partidas pendientes de aplicaci\u00f3n"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Socios de sociedad escindida"
+           }
+          ], 
+          "name": "Socios de sociedad escindida"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios de sociedad disuelta"
+           }
+          ], 
+          "name": "Socios de sociedad disuelta"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios, cuenta de fusi\u00f3n"
+           }
+          ], 
+          "name": "Socios, cuenta de fusi\u00f3n"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios, cuenta de escisi\u00f3n"
+           }
+          ], 
+          "name": "Socios, cuenta de escisi\u00f3n"
+         }
+        ], 
+        "name": "Cuentas corrientes en fusiones y escisiones"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pasivos por derivados financieros a corto plazo, instrumentos de cobertura"
+           }
+          ], 
+          "name": "Pasivos por derivados financieros a corto plazo, instrumentos de cobertura"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos por derivados financieros a corto plazo, cartera de negociaci\u00f3n"
+           }
+          ], 
+          "name": "Activos por derivados financieros a corto plazo, cartera de negociaci\u00f3n"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos por derivados financieros a corto plazo, instrumentos de cobertura"
+           }
+          ], 
+          "name": "Activos por derivados financieros a corto plazo, instrumentos de cobertura"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pasivos por derivados financieros a corto plazo, cartera de negociaci\u00f3n"
+           }
+          ], 
+          "name": "Pasivos por derivados financieros a corto plazo, cartera de negociaci\u00f3n"
+         }
+        ], 
+        "name": "Derivados financieros a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo activo a cuenta"
+         }
+        ], 
+        "name": "Dividendo activo a cuenta"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Titular de la explotaci\u00f3n"
+         }
+        ], 
+        "name": "Titular de la explotaci\u00f3n"
+       }
+      ], 
+      "name": "Otras cuentas no bancarias"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Intereses pagados por anticipado"
+         }
+        ], 
+        "name": "Intereses pagados por anticipado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos constituidos a corto plazo"
+         }
+        ], 
+        "name": "Dep\u00f3sitos constituidos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas constituidas a corto plazo"
+         }
+        ], 
+        "name": "Fianzas constituidas a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas recibidas a corto plazo"
+         }
+        ], 
+        "name": "Fianzas recibidas a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Garant\u00edas financieras a corto plazo"
+         }
+        ], 
+        "name": "Garant\u00edas financieras a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses cobrados por anticipado"
+         }
+        ], 
+        "name": "Intereses cobrados por anticipado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos recibidos a corto plazo"
+         }
+        ], 
+        "name": "Dep\u00f3sitos recibidos a corto plazo"
+       }
+      ], 
+      "name": "Fianzas y dep\u00f3sitos recibidos y constituidos a corto plazo y ajustes por periodificaci\u00f3n"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, euros"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones a corto plazo de gran liquidez"
+         }
+        ], 
+        "name": "Inversiones a corto plazo de gran liquidez"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja, euros"
+         }
+        ], 
+        "name": "Caja, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito c/c vista, euros"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito c/c vista, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito c/c vista, moneda extranjera"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito c/c vista, moneda extranjera"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, moneda extranjera"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, moneda extranjera"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja, moneda extranjera"
+         }
+        ], 
+        "name": "Caja, moneda extranjera"
+       }
+      ], 
+      "name": "Tesorer\u00eda"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros pasivos"
+         }
+        ], 
+        "name": "Otros pasivos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores comerciales y otras cuentas a pagar"
+         }
+        ], 
+        "name": "Acreedores comerciales y otras cuentas a pagar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisiones"
+         }
+        ], 
+        "name": "Provisiones"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros activos"
+         }
+        ], 
+        "name": "Otros activos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas con personas y entidades vinculadas"
+         }
+        ], 
+        "name": "Deudas con personas y entidades vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas con caracter\u00edsticas especiales"
+         }
+        ], 
+        "name": "Deudas con caracter\u00edsticas especiales"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones con personas y entidades vinculadas"
+         }
+        ], 
+        "name": "Inversiones con personas y entidades vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inmovilizado"
+         }
+        ], 
+        "name": "Inmovilizado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Existencias, deudores comerciales y otras cuentas a cobrar"
+         }
+        ], 
+        "name": "Existencias, deudores comerciales y otras cuentas a cobrar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones financieras"
+         }
+        ], 
+        "name": "Inversiones financieras"
+       }
+      ], 
+      "name": "Activos no corrientes mantenidos para la venta y activos y pasivos asociados"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a corto plazo en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a corto plazo en empresas del grupo"
+         }
+        ], 
+        "name": "Deterioro de valor de participaciones a corto plazo en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas asociadas"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda a corto plazo de partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas del grupo"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de otros activos mantenidos para la venta"
+           }
+          ], 
+          "name": "Deterioro de valor de otros activos mantenidos para la venta"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de inmovilizado no corriente mantenido para la venta"
+           }
+          ], 
+          "name": "Deterioro de valor de inmovilizado no corriente mantenido para la venta"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de inversiones y entidades vinculadas no corrientes mantenidas para la venta"
+           }
+          ], 
+          "name": "Deterioro de valor de inversiones y entidades vinculadas no corrientes mantenidas para la venta"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de inversiones financieras no corrientes mantenidas para la venta"
+           }
+          ], 
+          "name": "Deterioro de valor de inversiones financieras no corrientes mantenidas para la venta"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de existencias, deudores comerciales y otras cuentas a cobrar integrados en un grupo enajenable mantenido par"
+           }
+          ], 
+          "name": "Deterioro de valor de existencias, deudores comerciales y otras cuentas a cobrar integrados en un grupo enajenable mantenido par"
+         }
+        ], 
+        "name": "Deterioro de valor de activos no corrientes mantenidos para la venta"
+       }
+      ], 
+      "name": "Deterioro del valor de inversiones financieras a corto plazo y de activos no corrientes mantenidos para la venta"
+     }
+    ], 
+    "name": "Cuentas financieras"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deterioro de participaciones en el patrimonio, empresas asociadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Deterioro de participaciones en el patrimonio, empresas asociadas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de participaciones en el patrimonio, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Deterioro de participaciones en el patrimonio, empresas del grupo", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de participaciones en empresas del grupo o asociadas con ajustes valorativos positivos previos", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia de deducciones y bonificaciones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de deducciones y bonificaciones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes positivos en la imposici\u00f3n sobre", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes positivos en la imposici\u00f3n sobre", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transferencia de diferencias permanentes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de diferencias permanentes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Impuesto corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Impuesto corriente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Impuesto diferido", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Impuesto diferido", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Impuesto sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes negativos en la imposici\u00f3n sobre beneficios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes negativos en la imposici\u00f3n sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos fiscales por deducciones y bonificaciones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ingresos fiscales por deducciones y bonificaciones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos fiscales por diferencias permanentes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ingresos fiscales por diferencias permanentes", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Impuesto sobre beneficios", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas en activos financieros disponibles para la venta", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas en activos financieros disponibles para la venta", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transferencia de beneficios en activos financieros disponibles para la venta", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de beneficios en activos financieros disponibles para la venta", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos financieros por valoraci\u00f3n de activos y pasivos", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia de diferencias de conversi\u00f3n positivas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de diferencias de conversi\u00f3n positivas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias de conversi\u00f3n negativas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Diferencias de conversi\u00f3n negativas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos por diferencias de conversi\u00f3n", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por coberturas de flujos de efectivo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por coberturas de flujos de efectivo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transferencia de beneficios por coberturas de inversiones netas en un negocio en el extranjero", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de beneficios por coberturas de inversiones netas en un negocio en el extranjero", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transferencia de beneficios por coberturas de flujos de efectivo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de beneficios por coberturas de flujos de efectivo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por coberturas de inversiones netas en un negocio en el extranjero", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por coberturas de inversiones netas en un negocio en el extranjero", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos en operaciones de cobertura", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia de beneficios en activos no corrientes y grupos enajenables de elementos mantenidos para la venta", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de beneficios en activos no corrientes y grupos enajenables de elementos mantenidos para la venta", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas en activos no corrientes y grupos enajenables de elementos mantenidos para la venta", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas en activos no corrientes y grupos enajenables de elementos mantenidos para la venta", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos por activos no corrientes en venta", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ajustes negativos en activos por retribuciones a largo plazo de prestaci\u00f3n definida", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes negativos en activos por retribuciones a largo plazo de prestaci\u00f3n definida", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas actuariales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas actuariales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos por p\u00e9rdidas actuariales y ajustes en los activos por retribuciones a largo plazo de prestaci\u00f3n definida", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferencia de subvenciones oficiales de capital", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de subvenciones oficiales de capital", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transferencia de donaciones y legados de capital", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de donaciones y legados de capital", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transferencia de otras subvenciones, donaciones y legados", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transferencia de otras subvenciones, donaciones y legados", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Transferencias de subvenciones, donaciones y legados", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Gastos imputados al patrimonio neto", 
+    "root_type": "Expense"
+   }
+  ], 
+  "name": "Plan General Contable 2008", 
+  "parent_id": "", 
+  "root_type": "None"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/es_l10nES_chart_template_assoc.json b/setup/doctype/company/charts/es_l10nES_chart_template_assoc.json
new file mode 100644
index 0000000..e9e9202
--- /dev/null
+++ b/setup/doctype/company/charts/es_l10nES_chart_template_assoc.json
@@ -0,0 +1,7594 @@
+{
+ "name": "Plantilla PGCE Asociaciones 2008", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Bienes muebles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Bienes muebles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Monumentos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Monumentos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sitios hist\u00f3ricos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Sitios hist\u00f3ricos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Conjuntos hist\u00f3ricos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Conjuntos hist\u00f3ricos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones en otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Participaciones en otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Jardines hist\u00f3ricos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Jardines hist\u00f3ricos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Zonas arqueol\u00f3gicas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Zonas arqueol\u00f3gicas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Bienes inmuebles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Archivos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Bibliotecas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Museos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Museos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Anticipos sobre bibliotecas del Patrimonio Hist\u00f3rico", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Anticipos sobre bibliotecas del Patrimonio Hist\u00f3rico", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Anticipos sobre bienes inmuebles del Patrimonio Hist\u00f3rico", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Anticipos sobre bienes inmuebles del Patrimonio Hist\u00f3rico", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Anticipos sobre archivos del Patrimonio Hist\u00f3rico", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Anticipos sobre archivos del Patrimonio Hist\u00f3rico", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Anticipos sobre museos del Patrimonio Hist\u00f3rico", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Anticipos sobre museos del Patrimonio Hist\u00f3rico", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Anticipos sobre bienes muebles del Patrimonio Hist\u00f3rico", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Anticipos sobre bienes muebles del Patrimonio Hist\u00f3rico", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones en otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones en otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos sobre bienes del Patrimonio Hist\u00f3rico", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Bienes del patrimonio hist\u00f3rico", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Construcciones en curso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Construcciones en curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Adaptaci\u00f3n de terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Adaptaci\u00f3n de terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Maquinaria en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Maquinaria en montaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Instalaciones t\u00e9cnicas en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Instalaciones t\u00e9cnicas en montaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Equipos para procesos de informaci\u00f3n en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Equipos para procesos de informaci\u00f3n en montaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos para inmovilizaciones materiales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos para inmovilizaciones materiales", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones materiales en curso", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones en terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones en terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones en construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones en construcciones", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inversiones inmobiliarias", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otro inmovilizado material", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otro inmovilizado material", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Equipos para proceso de informaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mobiliario", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mobiliario", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras instalaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras instalaciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Utillaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Utillaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Elementos de transporte", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Elementos de transporte", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Maquinaria", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Maquinaria", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Instalaciones t\u00e9cnicas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Construcciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones materiales", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Concesiones administrativas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Concesiones administrativas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Propiedad industrial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Propiedad industrial", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos para inmovilizaciones intangibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos para inmovilizaciones intangibles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Investigaci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Investigaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos de traspaso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Derechos de traspaso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aplicaciones inform\u00e1ticas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos sobre activos cedidos en uso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Derechos sobre activos cedidos en uso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desarrollo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desarrollo", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones intangibles", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Fianzas constituidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fianzas constituidas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos constituidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Dep\u00f3sitos constituidos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Fianzas y dep\u00f3sitos constituidos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones financieras en instrumentos de patrimonio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones financieras en instrumentos de patrimonio", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos al personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imposiciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Imposiciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos por derivados financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos por derivados financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos por enajenaci\u00f3n de inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos por enajenaci\u00f3n de inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores representativos de deuda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valores representativos de deuda", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Otras inversiones financieras", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deterioro de  valor de participaciones en el patrimonio neto a largo plazo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de  valor de participaciones en el patrimonio neto a largo plazo", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de los terrenos y bienes naturales", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de los terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de las inversiones inmobiliarias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de investigaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de investigaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de concesiones administrativas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de concesiones administrativas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de propiedad industrial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de derechos de traspaso", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de derechos de traspaso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de aplicaciones inform\u00e1ticas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor sobre activos cedidos en uso", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor sobre activos cedidos en uso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor del inmovilizado intangible", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de bienes del Patrimonio Hist\u00f3rico", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de archivos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de archivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Deterioro de valor de bienes inmuebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de bibliotecas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de bibliotecas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de bienes muebles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de bienes muebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de Museos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de Museos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de bienes del Patrimonio Hist\u00f3rico", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de equipos para proceso de informaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de mobiliario", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de mobiliario", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de utillaje", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de utillaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de maquinaria", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de maquinaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de instalaciones t\u00e9cnicas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de construcciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de terrenos y bienes naturales", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de otro inmovilizado material", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de otro inmovilizado material", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de elementos de transporte", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de elementos de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de otras instaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de otras instaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro del valor del inmovilizado material", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda de partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de valores representativos de deuda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a largo plazo en otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a largo plazo en otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones en empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones en empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones en empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones en empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de participaciones en partes vinculadas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deterioro de valor de activos no corrientes", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de mobiliario", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de mobiliario", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de elementos de transporte", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de elementos de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de otro inmovilizado material", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de otro inmovilizado material", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de instalaciones t\u00e9cnicas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de maquinaria", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de maquinaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de construcciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de equipos para proceso de informaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de utillaje", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de utillaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de otras instaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de otras instaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada del inmovilizado material", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cesiones de uso del inmovilizado intangible", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cesiones de uso del inmovilizado intangible", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cesiones de uso del inmovilizado material", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cesiones de uso del inmovilizado material", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cesiones de uso de las inversiones inmobiliarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cesiones de uso de las inversiones inmobiliarias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cesiones de uso sin contraprestaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de investigaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de investigaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de propiedad industrial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de concesiones administrativas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de concesiones administrativas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de derechos de traspaso", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de derechos de traspaso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de derechos sobre activos cedidos en uso", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de derechos sobre activos cedidos en uso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de aplicaciones inform\u00e1ticas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada del inmovilizado intangible", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n acumulada de las inversiones inmobiliarias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada de las inversiones inmobiliarias", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Amortizaci\u00f3n acumulada del inmovilizado y otras cuentas correctoras", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Activo no corriente", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de otros aprovisionamientos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de otros aprovisionamientos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos en curso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos en curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de bienes destinados a la actividad", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de bienes destinados a la actividad", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de las materias primas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de las materias primas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los subproductos, residuos y materiales recuperados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los subproductos, residuos y materiales recuperados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos semiterminados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos semiterminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos terminados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos terminados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deterioro de valor de las existencias", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materias Primas A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias Primas A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materias Primas B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias Primas B", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materias Primas", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materiales recuperados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales recuperados B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales recuperados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales recuperados A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Residuos B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Residuos B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Residuos A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Residuos A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subproductos, residuos y materiales recuperados", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Repuestos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Repuestos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Material de oficina", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Material de oficina", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Embalajes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Embalajes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales diversos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales diversos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Combustibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Combustibles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Elementos y conjuntos incorporables", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Elementos y conjuntos incorporables", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Otros aprovisionamientos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos en curso A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en curso A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos en curso B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en curso B", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos en curso", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Bienes destinados a la actividad", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos semiterminados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos semiterminados B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos semiterminados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos semiterminados A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos semiterminados", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos terminados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos terminados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados B", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos terminados", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Existencias", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta act. profesionales 15%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta arrendamientos, cap. mobiliario 18%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta arrendamientos, cap. mobiliario 19%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta act. profesionales 7%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta arrendamientos, cap. mobiliario 20%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta act. profesionales 9%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta act. agr\u00edcolas, ganaderas, forestales 2%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta empresarios m\u00f3dulos 1%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta arrendamientos, cap. mobiliario 21%"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, retenciones y pagos a cuenta"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por subvenciones concedidas"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por subvenciones concedidas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por colaboraci\u00f3n en la entrega y distribuci\u00f3n de subvenciones (art.12 Ley de Subvenciones)"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por colaboraci\u00f3n en la entrega y distribuci\u00f3n de subvenciones (art.12 Ley de Subvenciones)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por devoluci\u00f3n de impuestos"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por devoluci\u00f3n de impuestos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por IVA"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por IVA"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, deudora por diversos conceptos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Hacienda P\u00fablica. IVA repercutido"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, IVA repercutido"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Organismos de la Seguridad Social, acreedores"
+         }
+        ], 
+        "name": "Organismos de la Seguridad Social, acreedores"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por subvenciones recibidas en concepto de entidad colaboradora (art.12 Ley de Subvencioens)"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por subvenciones recibidas en concepto de entidad colaboradora (art.12 Ley de Subvenciones)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por subvenciones a reintegrar"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por subvenciones a reintegrar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por impuesto sobre sociedades"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por impuesto sobre sociedades"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica. Retenciones act. profesionales 9%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica, acreedora por retenciones practicadas"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones empresarios m\u00f3dulos 1%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones act. profesionales 15%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones arrendamientos, cap. mobiliario 19%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones act. profesionales 7%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones arrendamientos, cap. mobiliario 18%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones act. agr\u00edcolas, ganaderas, forestales 2%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones arrendamientos, cap. mobiliario 20%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones arrendamientos, cap. mobiliario 21%"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por retenciones practicadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por IVA"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por IVA"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, acreedora por conceptos fiscales"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dito por p\u00e9rdidas a compensar del ejercicio"
+           }
+          ], 
+          "name": "Cr\u00e9dito por p\u00e9rdidas a compensar del ejercicio"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos por diferencias temporarias deducibles"
+           }
+          ], 
+          "name": "Activos por diferencias temporarias deducibles"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Derechos por deducciones y bonificaciones pendientes de aplicar"
+           }
+          ], 
+          "name": "Derechos por deducciones y bonificaciones pendientes de aplicar"
+         }
+        ], 
+        "name": "Activos por impuesto diferido"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Hacienda P\u00fablica. IVA soportado"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, IVA soportado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Organismos de la Seguridad Social, deudores"
+         }
+        ], 
+        "name": "Organismos de la Seguridad Social, deudores"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivos por diferencias temporarias imponibles"
+         }
+        ], 
+        "name": "Pasivos por diferencias temporarias imponibles"
+       }
+      ], 
+      "name": "Administraciones p\u00fablicas"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Remuneraciones pendientes de pago", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones pendientes de pago", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos de remuneraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos de remuneraciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Entregas para gastos a justificar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Entregas para gastos a justificar", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Personal"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones de la actividad"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos por operaciones de la actividad"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas asociadas"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n por contratos onerosos"
+           }
+          ], 
+          "name": "Provisi\u00f3n por contratos onerosos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n para otras operaciones comerciales"
+           }
+          ], 
+          "name": "Provisi\u00f3n para otras operaciones comerciales"
+         }
+        ], 
+        "name": "Provisiones por operaciones comerciales"
+       }
+      ], 
+      "name": "Deterioro de valor por operaciones de la actividad y provisiones a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ingresos anticipados", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Ingresos anticipados", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos anticipados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Gastos anticipados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Ajustes por periodificaci\u00f3n"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudores, facturas pendientes de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, facturas pendientes de formalizar", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores (euros)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores (moneda extranjera)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales en gesti\u00f3n de cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales en gesti\u00f3n de cobro", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales descontados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales descontados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales impagados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales impagados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales en cartera", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales en cartera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores, efectos comerciales a cobrar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudores de dudoso cobro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores de dudoso cobro", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Usuarios, deudores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Usuarios, deudores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros deudores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros deudores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Patrocinadores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrocinadores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Afiliados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Afiliados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Patrocinadores, afiliados y otros deudores"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudores por operaciones en com\u00fan", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores por operaciones en com\u00fan", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Usuarios y deudores varios", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Acreedores por operaciones en com\u00fan", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores por operaciones en com\u00fan", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores, efectos comerciales a pagar", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores, efectos comerciales a pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios (moneda extranjera)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios (euros)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores por prestaciones de servicios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficiarios, acreedores", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Beneficiarios, acreedores", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Benerificiarios y acreedores varios", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Anticipos de clientes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos de clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales a cobrar, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales a cobrar, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo, operaciones de factoring", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo, operaciones de factoring", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Envases y embalajes a devolver a clientes, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Envases y embalajes a devolver a clientes, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo, facturas pendientes de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo, facturas pendientes de formalizar", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo (moneda extranjera)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo (euros)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo de dudoso cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo de dudoso cobro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, empresas del grupo", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes, operaciones de factoring", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, operaciones de factoring", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Clientes, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes (moneda extranjera)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes (euros)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y embalajes a devolver por clientes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases y embalajes a devolver por clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes de dudoso cobro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes de dudoso cobro", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes, otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, otras partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes, empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, empresas asociadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales en gesti\u00f3n de cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales en gesti\u00f3n de cobro", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales descontados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales descontados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales en cartera", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales en cartera", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales impagados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales impagados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, efectos comerciales a cobrar", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Clientes", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Envases y embalajes a devolver a proveedores", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Envases y embalajes a devolver a proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos a proveedores", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Anticipos a proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores, empresas asociadas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, empresas asociadas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores, otras partes vinculadas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, otras partes vinculadas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Envases y embalajes a devolver a proveedores, empresas del grupo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Envases y embalajes a devolver a proveedores, empresas del grupo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales a pagar, empresas del grupo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Efectos comerciales a pagar, empresas del grupo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo (euros)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo (moneda extranjera)", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, empresas del grupo", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores (euros)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores (moneda extranjera)", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores, efectos comerciales a pagar", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, efectos comerciales a pagar", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Proveedores", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Acreedores y deudores por operaciones de la actividad"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transportes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transportes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suministros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Suministros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios bancarios y similares", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Servicios bancarios y similares", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Arrendamientos y c\u00e1nones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Arrendamientos y c\u00e1nones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros servicios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros servicios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reparaciones y conservaci\u00f3n", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Reparaciones y conservaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Publicidad, propaganda y relaciones p\u00fablicas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Publicidad, propaganda y relaciones p\u00fablicas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios de profesionales independientes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Servicios de profesionales independientes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos en investigaci\u00f3n y desarrollo del ejercicio", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos en investigaci\u00f3n y desarrollo del ejercicio", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Primas de seguros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Primas de seguros", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Servicios Exteriores", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes del inmovilizado material y bienes del Patrimonio Hist\u00f3rico", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes del inmovilizado material y bienes del Patrimonio Hist\u00f3rico", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos excepcionales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos excepcionales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones en, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones en, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones, empresas asociadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes de participaciones en partes vinculadas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por operaciones con obligaciones propias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por operaciones con obligaciones propias", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "P\u00e9rdidas procedentes de activos no corrientes y gastos excepcionales", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a largo plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de cr\u00e9ditos a largo plazo con entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a largo plazo con entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ingresos de cr\u00e9ditos a largo plazo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas en participaciones y valores representativos de deuda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas de cr\u00e9ditos no comerciales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en otras entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en otras entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con otras entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con otras entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Intereses por descuento de efectos y operaciones de \u201cfactoring\u201d", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias negativas de cambio", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Diferencias negativas de cambio", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos financieros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros gastos financieros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por valoraci\u00f3n de activos y pasivos financieros por su valor razonable", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por valoraci\u00f3n de activos y pasivos financieros por su valor razonable", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros por actualizaci\u00f3n de provisiones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros por actualizaci\u00f3n de provisiones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Intereses de obligaciones y bonos", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos financieros", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Compensaci\u00f3n de gastos por prestaciones de colaboraci\u00f3n", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compensaci\u00f3n de gastos por prestaciones de colaboraci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras p\u00e9rdidas en gesti\u00f3n corriente", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otras p\u00e9rdidas en gesti\u00f3n corriente", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida soportada(part\u00edcipe o asociado no gestor)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdida soportada (part\u00edcipe o asociado no gestor)", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficio transferido (gestor)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Beneficio transferido (gestor)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Resultados de operaciones en com\u00fan", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reembolsos de gastos al \u00f3rgano de gobierno", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Reembolsos de gastos al \u00f3rgano de gobierno", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas de cr\u00e9ditos derivados de la actividad incobrables", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas de cr\u00e9ditos derivados de la actividad incobrables", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ayudas no monetarias de cooperaci\u00f3n internacional", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ayudas no monetarias de cooperaci\u00f3n internacional", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ayudas no monetarias realizadas a trav\u00e9s de otras entidades o centros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ayudas no monetarias realizadas a trav\u00e9s de otras entidades o centros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ayudas no monetarias a entidades", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ayudas no monetarias a entidades", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ayudas no monetarias individuales", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ayudas no monetarias individuales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficio transferido (gestor)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Beneficio transferido (gestor)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ayudas no monetarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ayudas monetarias individuales", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ayudas monetarias individuales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ayudas monetarias a entidades", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ayudas monetarias a entidades", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ayudas monetarias realizadas a trav\u00e9s de otras entidades o centros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ayudas monetarias realizadas a trav\u00e9s de otras entidades o centros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ayudas monetarias de cooperaci\u00f3n internacional", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ayudas monetarias de cooperaci\u00f3n internacional", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ayudas monetarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reintegro de subvenciones, donaciones y legados recibidos, afectos a la actividad propia de la entidad ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Reintegro de subvenciones, donaciones y legados recibidos, afectados a la actividad propia de la entidad", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Ayudas monetarias de la entidad y otros gastos de gesti\u00f3n", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Sueldos y salarios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Sueldos y salarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Seguridad Social a cargo de la empresa", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Seguridad Social a cargo de la empresa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Indemnizaciones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Indemnizaciones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos sociales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros gastos sociales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de personal", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ajustes negativos en IVA de inversiones", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes negativos en IVA de inversiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustes negativos en IVA de activo corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes negativos en IVA de activo corriente", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes negativos en la imposici\u00f3n indirecta", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Impuesto corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Impuesto corriente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Impuesto diferido", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Impuesto diferido", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Impuesto sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros tributos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros tributos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes negativos en la imposici\u00f3n sobre beneficios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes negativos en la imposici\u00f3n sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ajustes positivos en IVA de activo corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes positivos en IVA de activo corriente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustes positivos en IVA de inversiones", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes positivos en IVA de inversiones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes positivos en la imposici\u00f3n indirecta", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes positivos en la imposici\u00f3n sobre beneficios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes positivos en la imposici\u00f3n sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Devoluci\u00f3n de impuestos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Devoluci\u00f3n de impuestos", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Tributos", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de otros aprovisionamientos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de mercader\u00edas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de bienes destinados a la actividad", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de materias primas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de materias primas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de bienes destinados a la actividad", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de bienes destinados a la actividad", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Devoluciones de compras y operaciones similares", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de bienes destinados a la actividad", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de bienes destinados a la actividad", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de materias primas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "\u201cRappels\u201d por compras", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de bienes destinados a la actividad", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de bienes destinados a la actividad", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Descuentos sobre compras por pronto pago", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados por otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Trabajos realizados por otras empresas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de otros aprovisionamientos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras de bienes destinados a la actividad", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de bienes destinados a la actividad", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras de materias primas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de materias primas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Compras", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro del inmovilizado material", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "P\u00e9rdidas por deterioro del inmovilizado material y bienes del Patrimonio Hist\u00f3rico", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro bienes del Patrimonio Hist\u00f3rico", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de bienes del Patrimonio Hist\u00f3rico", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro del inmovilizado material y bienes del Patrimonio Hist\u00f3rico", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de participaciones y valores representativos de deuda a corto plazo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de participaciones y valores representativos de deuda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotaci\u00f3n a la provisi\u00f3n por contratos onerosos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dotaci\u00f3n a la provisi\u00f3n por contratos onerosos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotaci\u00f3n a la provisi\u00f3n para otras operaciones comerciales", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dotaci\u00f3n a la provisi\u00f3n para otras operaciones comerciales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dotaci\u00f3n a la provisi\u00f3n por operaciones comerciales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos por operaciones de la actividad", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos por operaciones de la actividad", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de mercader\u00edas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de existencias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "P\u00e9rdidas por deterioro y otras dotaciones", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n del inmovilizado material", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n del inmovilizado material", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Dotaciones para amortizaciones", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Compras y Gastos", 
+    "root_type": "Expense"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuotas de usuarios", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Cuotas de usuarios", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuotas de asociados y afiliados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Cuotas de asociados y afiliados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Patrocinio publicitario", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Patrocinio publicitario", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Patrocinio", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Patrocinio", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Colaboraciones empresariales", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Colaboraciones empresariales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de patrocinadores y colaboraciones", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por reintegro de ayudas y asignaciones", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por reintegro de ayudas y asignaciones", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Promociones de captaci\u00f3n de recursos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Promociones de captaci\u00f3n de recursos", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos propios de la entidad", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida transferido (gestor)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "P\u00e9rdida transferido (gestor)", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficio atribuido (part\u00edcipe o asociado no gestor)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficio atribuido (part\u00edcipe o asociado no gestor)", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Resultados de operaciones en com\u00fan", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos de propiedad industrial cedida en explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de propiedad industrial cedida en explotaci\u00f3n", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por arrendamientos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por arrendamientos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por comisiones", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por comisiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por servicios al personal", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por servicios al personal", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por servicios diversos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por servicios diversos", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Otros ingresos de gesti\u00f3n", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otras subvenciones, donaciones y legados transferidos al resultado del ejercicio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otras subvenciones, donaciones y legados transferidos al resultado del ejercicio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subvenciones, donaciones y legados de capital transferidos al resultado del ejercicio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Subvenciones, donaciones y legados de capital transferidos al resultado del ejercicio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subvenciones, donaciones y legados a la explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Subvenciones, donaciones y legados a la explotaci\u00f3n", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Subvenciones, donaciones y legados", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios en participaciones y valores representativos de deuda", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios por valoraci\u00f3n de activos y pasivos financieros por su valor razonable", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios por valoraci\u00f3n de activos y pasivos financieros por su valor razonable", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas del grupo", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas asociadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a corto plazo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas asociadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas del grupo", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a largo plazo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de cr\u00e9ditos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, otras empresas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de valores representativos de deuda", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, otras empresas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de participaciones en instrumentos de patrimonio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos financieros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos financieros", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias positivas de cambio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Diferencias positivas de cambio", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos financieros", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes de las inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes de las inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficos por operaciones con obligaciones propias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficos por operaciones con obligaciones propias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos excepcionales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos excepcionales", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes del inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes del inmovilizado intangible", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes del inmovilizado material", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes del inmovilizado material", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo en, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo en, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes de participaciones a largo plazo en partes vinculadas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Beneficios procedentes de activos no corrientes e ingresos excepcionales", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios fuera de la UE", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios fuera de la UE", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Prestaciones de servicios", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados en Espa\u00f1a", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de productos terminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos en Espa\u00f1a", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de subproductos y residuos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados Exportaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de productos semiterminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de envases y embalajes", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de envases y embalajes", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de productos semiterminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "\"Rappels\" sobre ventas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas en Espa\u00f1a", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de mercader\u00edas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes Intracomunitarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de envases y embalajes", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de productos semiterminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos sobre ventas por pronto pago", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de envases y embalajes", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de envases y embalajes", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de productos semiterminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de productos terminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Devoluciones de ventas y operaciones similares", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ventas de mercader\u00edas, de producci\u00f3n propia, de servicios, etc.", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos terminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos terminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos semiterminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos semiterminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de subproductos, residuos y materiales recuperados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de subproductos, residuos y materiales recuperados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos en curso", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos en curso", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado intangible", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado material", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado material", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados en inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados en inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado material en curso", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado material en curso", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Trabajos realizados para la empresa", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de participaciones y valores representativos de deuda a corto plazo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de participaciones y valores representativos de deuda a largo plazo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos por operaciones de la actividad", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos por operaciones de la actividad", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para actuaciones medioambientales", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para actuaciones medioambientales", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para impuestos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para impuestos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para otras responsabilidades", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para otras responsabilidades", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Exceso de provisi\u00f3n por contratos onerosos", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Exceso de provisi\u00f3n por contratos onerosos", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Exceso de provisi\u00f3n para otras operaciones comerciales", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Exceso de provisi\u00f3n para otras operaciones comerciales", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n por operaciones comerciales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Exceso de provisiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro de las inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de las inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de materias primas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de materias primas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de otros aprovisionamientos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de otros aprovisionamientos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de mercader\u00edas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de existencias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro del inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro del inmovilizado intangible", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro del inmovilizado material y de bienes del Patrimonio Hist\u00f3rico", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro del inmovilizado material y de bienes del Patrimonio Hist\u00f3rico", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Excesos y aplicaciones de provisiones y de p\u00e9rdidas por deterioro", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Ventas e ingresos", 
+    "root_type": "Income"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado, partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas con otras entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con otras entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas con entidades de cr\u00e9dito vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otras deudas, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas, con otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, con otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras deudas con partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, empresas de grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, empresas de grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero, partes vinculadas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas con partes vinculadas", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deudas transformables en subvenciones, donaciones y legados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas transformables en subvenciones, donaciones y legados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones y bonos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Obligaciones y bonos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores por arrendamiento financiero", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas representadas en otros valores negociables", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas representadas en otros valores negociables", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivos por derivados financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Pasivos por derivados financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Efectos a pagar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Efectos a pagar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores de inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas con entidades de cr\u00e9dito", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas con entidades de cr\u00e9dito", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas por pr\u00e9stamos recibidos, empr\u00e9stitos y otros conceptos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para otras responsabilidades", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para otras responsabilidades", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para actuaciones medioambientales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para actuaciones medioambientales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para impuestos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para impuestos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Provisiones", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Excedentes negativos de ejercicios anteriores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Excedentes negativos de ejercicios anteriores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Remanente", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Remanente", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Excedente del ejercicio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Excedente del ejercicio", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Excedentes pendientes de aplicaci\u00f3n", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fundadores, por aportaciones no dinerarias pendientes, en fundaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Fundadores, por aportaciones no dinerarias pendientes, en fundaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Asociados, por aportaciones no dinerarias pendientes, en asociaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Asociados, por aportaciones no dinerarias pendientes, en asociaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fundadores/asociados por aportaciones no dinerarias pendientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": " Fundadores, parte no desembolsada en fundaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Fundadores, parte no desembolsada en fundaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Asociados, parte no desembolsada en asociaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Asociados, parte no desembolsada en asociaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fundadores/asociados por desembolsos no exigidos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotaci\u00f3n fundacional", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Dotaci\u00f3n fundacional", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones propias para reducci\u00f3n de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones propias para reducci\u00f3n de capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones propias en situaciones especiales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones propias en situaciones especiales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondo social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fondo social", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Capital", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reserva por capital amortizado", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reserva por capital amortizado", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reservas estatutarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas estatutarias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reservas por acciones propias aceptadas en garant\u00eda", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas por acciones propias aceptadas en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reservas para acciones o participaciones de la sociedad dominante", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas para acciones o participaciones de la sociedad dominante", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reservas especiales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Prima de Emisi\u00f3n o asunci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Prima de Emisi\u00f3n o asunci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aportaciones de socios o propietarios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aportaciones de socios o propietarios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias por ajuste del capital a euros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Diferencias por ajuste del capital a euros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserva Legal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reserva Legal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reservas voluntarias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reservas voluntarias", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Reservas y otros instrumentos de patrimonio", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital emitido pendiente de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Capital emitido pendiente de inscripci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas consideradas como pasivos financieros pendientes de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas consideradas como pasivos financieros pendientes de inscripci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suscriptores de acciones consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Suscriptores de acciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suscriptores de acciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Suscriptores de acciones", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Situaciones transitorias de financiaci\u00f3n", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos fiscales por deducciones y bonificaciones a distribuir en varios ejercicios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ingresos fiscales por deducciones y bonificaciones a distribuir en varios ejercicios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos fiscales por diferencias permanentes a distribuir en varios ejercicios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ingresos fiscales por diferencias permanentes a distribuir en varios ejercicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Ingresos fiscales a distribuir en varios ejercicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otras subvenciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras subvenciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras donaciones y legados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras donaciones y legados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras subvenciones, donaciones y legados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Subvenciones de otras Administraciones P\u00fablicas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Subvenciones de otras Administraciones P\u00fablicas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subvenciones del Estado", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Subvenciones del Estado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subvenciones oficiales de capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Donaciones y legados de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Donaciones y legados de capital", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subvenciones, donaciones y ajustes por cambio de valor", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Anticipos recibidos por ventas o prestaciones de servicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos recibidos por ventas o prestaciones de servicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos recibidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Dep\u00f3sitos recibidos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas recibidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fianzas recibidas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Pasivos por fianzas, garant\u00edas y otros conceptos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros desembolsos no exigidos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros desembolsos no exigidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desembolsos no exigidos por acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras aportaciones no dinerarias pendientes", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras aportaciones no dinerarias pendientes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aportaciones no dinerarias pendientes por acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas con caracter\u00edsticas especiales", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Financiaci\u00f3n B\u00e1sica", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en otras partes vinculadas"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas del grupo"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones a corto plazo en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a empresas del grupo"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a otras partes vinculadas"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a empresas asociadas"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a empresas asociadas"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de otras partes vinculadas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de valores representativos de deuda de partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en otras partes vinculadas"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en empresas del grupo"
+         }
+        ], 
+        "name": "Participaciones a corto plazo en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a empresas del grupo"
+         }
+        ], 
+        "name": "Intereses a corto plazo de cr\u00e9ditos a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en empresas del grupo"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en empresas asociadas"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en otras partes vinculadas"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en otras partes vinculadas"
+         }
+        ], 
+        "name": "Dividendo a cobrar de inversiones financieras en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de empresas asociadas"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de otras partes vinculadas"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de empresas del grupo"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de empresas del grupo"
+         }
+        ], 
+        "name": "Valores representativos de deuda a corto plazo de partes vinculadas"
+       }
+      ], 
+      "name": "Inversiones financieras a corto plazo en partes vinculadas"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Intereses pagados por anticipado"
+         }
+        ], 
+        "name": "Intereses pagados por anticipado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos constituidos a corto plazo"
+         }
+        ], 
+        "name": "Dep\u00f3sitos constituidos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos recibidos a corto plazo"
+         }
+        ], 
+        "name": "Dep\u00f3sitos recibidos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas recibidas a corto plazo"
+         }
+        ], 
+        "name": "Fianzas recibidas a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses cobrados por anticipado"
+         }
+        ], 
+        "name": "Intereses cobrados por anticipado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas constituidas a corto plazo"
+         }
+        ], 
+        "name": "Fianzas constituidas a corto plazo"
+       }
+      ], 
+      "name": "Fianzas y dep\u00f3sitos recibidos y constituidos a corto plazo y ajustes por periodificaci\u00f3n"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito c/c vista, moneda extranjera"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito c/c vista, moneda extranjera"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones a corto plazo de gran liquidez"
+         }
+        ], 
+        "name": "Inversiones a corto plazo de gran liquidez"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, euros"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, moneda extranjera"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, moneda extranjera"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito c/c vista, euros"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito c/c vista, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja, euros"
+         }
+        ], 
+        "name": "Caja, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja, moneda extranjera"
+         }
+        ], 
+        "name": "Caja, moneda extranjera"
+       }
+      ], 
+      "name": "Tesorer\u00eda"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo por enajenaci\u00f3n de inmovilizado"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo por enajenaci\u00f3n de inmovilizado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores representativos de deuda a corto plazo"
+         }
+        ], 
+        "name": "Valores representativos de deuda a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de valores representativos de deudas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de valores representativos de deudas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo a cobrar"
+         }
+        ], 
+        "name": "Dividendo a cobrar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto a corto plazo"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imposiciones a corto plazo"
+         }
+        ], 
+        "name": "Imposiciones a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de cr\u00e9ditos"
+         }
+        ], 
+        "name": "Intereses a corto plazo de cr\u00e9ditos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones financieras a corto plazo en instrumentos de patrimonio"
+         }
+        ], 
+        "name": "Inversiones financieras a corto plazo en instrumentos de patrimonio"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo al personal"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo al personal"
+       }
+      ], 
+      "name": "Otras inversiones financieras a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pasivos por derivados financieros a corto plazo"
+           }
+          ], 
+          "name": "Pasivos por derivados financieros a corto plazo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos por derivados financieros a corto plazo"
+           }
+          ], 
+          "name": "Activos por derivados financieros a corto plazo"
+         }
+        ], 
+        "name": "Derivados financieros a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos exigidos sobre acciones o participaciones ordinarias"
+           }
+          ], 
+          "name": "Socios por desembolsos exigidos sobre acciones o participaciones ordinarias"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos exigidos sobre acciones o participaciones consideradas como pasivos financieros"
+           }
+          ], 
+          "name": "Socios por desembolsos exigidos sobre acciones o participaciones consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Fundadores y asociados por desembolsos exigidos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuenta corriente con uniones temporales de empresas y comunidades de bienes"
+         }
+        ], 
+        "name": "Cuenta corriente con uniones temporales de empresas y comunidades de bienes"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Partidas pendientes de aplicaci\u00f3n"
+         }
+        ], 
+        "name": "Partidas pendientes de aplicaci\u00f3n"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, otras partes vinculadas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, empresas del grupo"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones de otras empresas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones de otras empresas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, empresas asociadas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, empresas asociadas"
+         }
+        ], 
+        "name": "Desembolsos exigidos sobre participaciones en el patrimonio neto"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo activo a cuenta"
+         }
+        ], 
+        "name": "Dividendo activo a cuenta"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Titular de la explotaci\u00f3n"
+         }
+        ], 
+        "name": "Titular de la explotaci\u00f3n"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuenta corriente con patronos y otros"
+         }
+        ], 
+        "name": "Cuenta corriente con patronos y otros"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con otras partes vinculadas"
+           }
+          ], 
+          "name": "Cuenta corriente con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con empresas asociadas"
+           }
+          ], 
+          "name": "Cuenta corriente con empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con empresas del grupo"
+           }
+          ], 
+          "name": "Cuenta corriente con empresas del grupo"
+         }
+        ], 
+        "name": "Cuenta corriente con otras personas y entidades vinculadas"
+       }
+      ], 
+      "name": "Otras cuentas no bancarias"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de empr\u00e9stitos y otras emisiones an\u00e1logas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de empr\u00e9stitos y otras emisiones an\u00e1logas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones y bonos a corto plazo"
+         }
+        ], 
+        "name": "Obligaciones y bonos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros valores negociables amortizados"
+           }
+          ], 
+          "name": "Otros valores negociables amortizados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones y bonos amortizados"
+           }
+          ], 
+          "name": "Obligaciones y bonos amortizados"
+         }
+        ], 
+        "name": "Valores negociables amortizados"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas representadas en otros valores negociables a corto plazo"
+         }
+        ], 
+        "name": "Deudas representadas en otros valores negociables a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones a corto plazo consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Acciones o participaciones a corto plazo consideradas como pasivos financieros"
+       }
+      ], 
+      "name": "Empr\u00e9stitos, deudas con caracter\u00edsticas especiales y otras emisiones an\u00e1logas a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Efectos a pagar a corto plazo"
+         }
+        ], 
+        "name": "Efectos a pagar a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo por retribuciones al personal"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo por retribuciones al personal"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para impuestos"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para impuestos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para otras responsabilidades"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para otras responsabilidades"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para actuaciones medioambientales"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para actuaciones medioambientales"
+         }
+        ], 
+        "name": "Provisiones a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de deudas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores de inmovilizado a corto plazo"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas a corto plazo transformables en subvenciones, donaciones y legados"
+         }
+        ], 
+        "name": "Deudas a corto plazo transformables en subvenciones, donaciones y legados"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo por cr\u00e9dito dispuesto"
+           }
+          ], 
+          "name": "Deudas a corto plazo por cr\u00e9dito dispuesto"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9stamos a corto plazo de entidades de cr\u00e9dito"
+           }
+          ], 
+          "name": "Pr\u00e9stamos a corto plazo de entidades de cr\u00e9dito"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas por efectos descontados"
+           }
+          ], 
+          "name": "Deudas por efectos descontados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas por operaciones de \u201cfactoring\u201d"
+           }
+          ], 
+          "name": "Deudas por operaciones de \u201cfactoring\u201d"
+         }
+        ], 
+        "name": "Deudas a corto plazo con entidades de cr\u00e9dito"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de deudas con entidades de cr\u00e9dito"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas con entidades de cr\u00e9dito"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo activo a pagar"
+         }
+        ], 
+        "name": "Dividendo activo a pagar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas a corto plazo"
+         }
+        ], 
+        "name": "Deudas a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores por arrendamiento financiero a corto plazo"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero a corto plazo"
+       }
+      ], 
+      "name": "Deudas a corto plazo por pr\u00e9stamos recibidos y otros conceptos"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a corto plazo en empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a corto plazo en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a corto plazo en otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a corto plazo en otras partes vinculadas"
+         }
+        ], 
+        "name": "Deterioro de valor de participaciones a corto plazo en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas del grupo"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda a corto plazo de partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas asociadas"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de participaciones a corto plazo"
+         }
+        ], 
+        "name": "Deterioro de valor de participaciones a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda a corto plazo"
+       }
+      ], 
+      "name": "Deterioro del valor de inversiones financieras a corto plazo y de activos no corrientes mantenidos para la venta"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas del grupo"
+           }
+          ], 
+          "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con otras entidades de cr\u00e9dito vinculadas"
+           }
+          ], 
+          "name": "Deudas a corto plazo con otras entidades de cr\u00e9dito vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas asociadas"
+           }
+          ], 
+          "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas asociadas"
+         }
+        ], 
+        "name": "Deudas a corto plazo con entidades de cr\u00e9dito vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, empresas del grupo"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, otras partes vinculadas"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, empresas asociadas"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, empresas asociadas"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado a corto plazo, partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, empresas del grupo"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, otras partes vinculadas"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, empresas asociadas"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, empresas asociadas"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero a corto plazo, partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con empresas asociadas"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con otras partes vinculadas"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con empresas del grupo"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con empresas del grupo"
+         }
+        ], 
+        "name": "Otras deudas a corto plazo con partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con empresas del grupo"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas con partes vinculadas"
+       }
+      ], 
+      "name": "Deudas a corto plazo con partes vinculadas"
+     }
+    ], 
+    "name": "Cuentas financieras"
+   }
+  ], 
+  "name": "Plan General Contable ASOCIACIONES 2008", 
+  "parent_id": "", 
+  "root_type": "None"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/es_l10nES_chart_template_pymes.json b/setup/doctype/company/charts/es_l10nES_chart_template_pymes.json
new file mode 100644
index 0000000..60beef1
--- /dev/null
+++ b/setup/doctype/company/charts/es_l10nES_chart_template_pymes.json
@@ -0,0 +1,7048 @@
+{
+ "name": "Plantilla PGCE PYMES 2008", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro del inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro del inmovilizado intangible", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a corto plazo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de participaciones y valores representativos de deuda a corto plazo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para impuestos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para impuestos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para actuaciones medioambientales", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para actuaciones medioambientales", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Exceso de provisi\u00f3n por contratos onerosos", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Exceso de provisi\u00f3n por contratos onerosos", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Exceso de provisi\u00f3n para otras operaciones comerciales", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Exceso de provisi\u00f3n para otras operaciones comerciales", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n por operaciones comerciales", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Exceso de provisi\u00f3n para otras responsabilidades", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Exceso de provisi\u00f3n para otras responsabilidades", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Exceso de provisiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos por operaciones comerciales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos por operaciones comerciales", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro del inmovilizado material", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro del inmovilizado material", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de otros aprovisionamientos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de otros aprovisionamientos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de materias primas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de materias primas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de existencias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reversi\u00f3n del deterioro de las inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de las inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de cr\u00e9ditos a largo plazo", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de participaciones en instrumentos de patrimonio neto a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reversi\u00f3n del deterioro de valores representativos de deuda a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reversi\u00f3n del deterioro de participaciones y valores representativos de deuda a largo plazo", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Excesos y aplicaciones de provisiones y de p\u00e9rdidas por deterioro", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de subproductos y residuos en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de subproductos y residuos en Espa\u00f1a", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de subproductos y residuos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de envases y embalajes", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de envases y embalajes", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de productos semiterminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de ventas de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Devoluciones de ventas de mercader\u00edas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Devoluciones de ventas y operaciones similares", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos semiterminados Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos semiterminados Exportaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de productos semiterminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de mercader\u00edas en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de mercader\u00edas en Espa\u00f1a", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de mercader\u00edas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de productos terminados Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de productos terminados Exportaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de productos terminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de productos semiterminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" sobre ventas de envases y embalajes", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "\"Rappels\" sobre ventas de envases y embalajes", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "\"Rappels\" sobre ventas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de subproductos y residuos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de subproductos y residuos", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de productos semiterminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de productos semiterminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de mercader\u00edas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de mercader\u00edas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre ventas por pronto pago de productos terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Descuentos sobre ventas por pronto pago de productos terminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos sobre ventas por pronto pago", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes Exportaci\u00f3n", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes Exportaci\u00f3n", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes Intracomunitarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas de envases y embalajes en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas de envases y embalajes en Espa\u00f1a", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas de envases y embalajes", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios fuera de la UE", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios fuera de la UE", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios en Espa\u00f1a", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios en Espa\u00f1a", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestaciones de servicios Intracomunitarias", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Prestaciones de servicios Intracomunitarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Prestaciones de servicios", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ventas de mercader\u00edas, de producci\u00f3n propia, de servicios, etc.", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Beneficio atribuido (part\u00edcipe o asociado no gestor)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficio atribuido (part\u00edcipe o asociado no gestor)", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida transferido (gestor)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "P\u00e9rdida transferido (gestor)", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Resultados de operaciones en com\u00fan", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos de propiedad industrial cedida en explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de propiedad industrial cedida en explotaci\u00f3n", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por arrendamientos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por arrendamientos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por servicios al personal", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por servicios al personal", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por comisiones", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por comisiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos por servicios diversos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos por servicios diversos", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Otros ingresos de gesti\u00f3n", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Subvenciones, donaciones y legados de capital transferidos al resultado del ejercicio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Subvenciones, donaciones y legados de capital transferidos al resultado del ejercicio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras subvenciones, donaciones y legados transferidos al resultado del ejercicio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otras subvenciones, donaciones y legados transferidos al resultado del ejercicio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subvenciones, donaciones y legados a la explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Subvenciones, donaciones y legados a la explotaci\u00f3n", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Subvenciones, donaciones y legados", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes del inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes del inmovilizado intangible", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficos por operaciones con obligaciones propias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficos por operaciones con obligaciones propias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos excepcionales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos excepcionales", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo en, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo en, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios procedentes de participaciones a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios procedentes de participaciones a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes de participaciones a largo plazo en partes vinculadas", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes de las inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes de las inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios procedentes del inmovilizado material", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios procedentes del inmovilizado material", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Beneficios procedentes de activos no corrientes e ingresos excepcionales", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas del grupo", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas asociadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a corto plazo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas del grupo", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas asociadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ingresos de cr\u00e9ditos a largo plazo, otras empresas", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ingresos de cr\u00e9ditos a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de cr\u00e9ditos a largo plazo", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de cr\u00e9ditos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias positivas de cambio", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Diferencias positivas de cambio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos financieros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos financieros", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de participaciones en instrumentos de patrimonio, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de participaciones en instrumentos de patrimonio, otras partes vinculadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de participaciones en instrumentos de patrimonio", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos de valores representativos de deuda, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos de valores representativos de deuda, empresas asociadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos de valores representativos de deuda", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Beneficios por valoraci\u00f3n de activos y pasivos financieros por su valor razonable", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios por valoraci\u00f3n de activos y pasivos financieros por su valor razonable", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, otras empresas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, otras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Beneficios en valores representativos de deuda a largo plazo, otras partes vinculadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Beneficios en valores representativos de deuda a largo plazo, otras partes vinculadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Beneficios en participaciones y valores representativos de deuda", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ingresos financieros", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos semiterminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos semiterminados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos en curso", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos en curso", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de subproductos, residuos y materiales recuperados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de subproductos, residuos y materiales recuperados", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de productos terminados", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de productos terminados", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado material en curso", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado material en curso", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados en inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados en inversiones inmobiliarias", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado material", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado material", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados para el inmovilizado intangible", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Trabajos realizados para el inmovilizado intangible", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Trabajos realizados para la empresa", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Ventas e ingresos", 
+    "root_type": "Income"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones financieras en instrumentos de patrimonio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones financieras en instrumentos de patrimonio", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores representativos de deuda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valores representativos de deuda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos por enajenaci\u00f3n de inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos por enajenaci\u00f3n de inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos al personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos por derivados financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos por derivados financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imposiciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Imposiciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Otras inversiones financieras", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Fianzas constituidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fianzas constituidas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos constituidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Dep\u00f3sitos constituidos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Fianzas y dep\u00f3sitos constituidos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones en construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones en construcciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones en terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inversiones en terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inversiones inmobiliarias", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Equipos para procesos de informaci\u00f3n en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Equipos para procesos de informaci\u00f3n en montaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Instalaciones t\u00e9cnicas en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Instalaciones t\u00e9cnicas en montaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Maquinaria en montaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Maquinaria en montaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Construcciones en curso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Construcciones en curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos para inmovilizaciones materiales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos para inmovilizaciones materiales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Adaptaci\u00f3n de terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Adaptaci\u00f3n de terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones materiales en curso", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desarrollo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desarrollo", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos para inmovilizaciones intangibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos para inmovilizaciones intangibles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Propiedad industrial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Propiedad industrial", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concesiones administrativas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Concesiones administrativas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Investigaci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Investigaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aplicaciones inform\u00e1ticas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos de traspaso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Derechos de traspaso", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones intangibles", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Utillaje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Utillaje", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras instalaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras instalaciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mobiliario", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mobiliario", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Equipos para proceso de informaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Terrenos y bienes naturales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Construcciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Instalaciones t\u00e9cnicas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Maquinaria", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Maquinaria", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Elementos de transporte", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Elementos de transporte", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otro inmovilizado material", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otro inmovilizado material", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inmovilizaciones materiales", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n acumulada de las inversiones inmobiliarias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada de las inversiones inmobiliarias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de otro inmovilizado material", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de otro inmovilizado material", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de elementos de transporte", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de elementos de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de instalaciones t\u00e9cnicas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de construcciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de mobiliario", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de mobiliario", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de utillaje", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de utillaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de equipos para proceso de informaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de maquinaria", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de maquinaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de otras instalaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de otras instalaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada del inmovilizado material", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de derechos de traspaso", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de derechos de traspaso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de aplicaciones inform\u00e1ticas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de investigaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de investigaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de concesiones administrativas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de concesiones administrativas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de propiedad industrial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizaci\u00f3n acumulada de desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortizaci\u00f3n acumulada de desarrollo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n acumulada del inmovilizado intangible", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Amortizaci\u00f3n acumulada del inmovilizado", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de mobiliario", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de mobiliario", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de equipos para proceso de informaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de equipos para proceso de informaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de utillaje", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de utillaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de instalaciones t\u00e9cnicas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de instalaciones t\u00e9cnicas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de maquinaria", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de maquinaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de terrenos y bienes naturales", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de elementos de transporte", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de elementos de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de otras instaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de otras instaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de construcciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de otro inmovilizado material", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de otro inmovilizado material", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro del valor del inmovilizado material", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda de otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda de otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda de partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de  valor de participaciones en el patrimonio neto a largo plazo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de  valor de participaciones en el patrimonio neto a largo plazo", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de valores representativos de deuda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de los terrenos y bienes naturales", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de los terrenos y bienes naturales", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de construcciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de construcciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de las inversiones inmobiliarias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones en empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones en empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones en empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones en empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a largo plazo en otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a largo plazo en otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de participaciones en partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de derechos de traspaso", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de derechos de traspaso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de aplicaciones inform\u00e1ticas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de aplicaciones inform\u00e1ticas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de investigaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de investigaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de propiedad industrial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro del valor de concesiones administrativas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deterioro del valor de concesiones administrativas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor del inmovilizado intangible", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deterioro de valor de activos no corrientes", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda de empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valores representativos de deuda de empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valores representativos de deuda de partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Participaciones en otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Participaciones en otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones en empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Participaciones en empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones en empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Participaciones en empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Participaciones en partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones en otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones en otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones en empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones en empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones en empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones en empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones en partes vinculadas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inversiones financieras en partes vinculadas", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Activo no corriente", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales en cartera", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales en cartera", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales descontados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales descontados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales en gesti\u00f3n de cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales en gesti\u00f3n de cobro", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, efectos comerciales impagados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, efectos comerciales impagados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores, efectos comerciales a cobrar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudores (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores (moneda extranjera)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores (euros)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudores, facturas pendientes de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudores, facturas pendientes de formalizar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudores por operaciones en com\u00fan", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores por operaciones en com\u00fan", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudores de dudoso cobro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudores de dudoso cobro", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudores varios", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Remuneraciones pendientes de pago", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones pendientes de pago", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos de remuneraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos de remuneraciones", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Personal"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Pasivos por diferencias temporarias imponibles"
+         }
+        ], 
+        "name": "Pasivos por diferencias temporarias imponibles"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta arrendamientos, cap. mobiliario 20%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta act. profesionales 9%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta empresarios m\u00f3dulos 1%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta act. profesionales 7%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta act. agr\u00edcolas, ganaderas, forestales 2%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta arrendamientos, cap. mobiliario 21%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta arrendamientos, cap. mobiliario 19%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta arrendamientos, cap. mobiliario 18%"
+         }, 
+         {
+          "name": "Hacienda P\u00fablica. Retenciones a cuenta act. profesionales 15%"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, retenciones y pagos a cuenta"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por impuesto sobre sociedades"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por impuesto sobre sociedades"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por IVA"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por IVA"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por subvenciones a reintegrar"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por subvenciones a reintegrar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, acreedora por retenciones practicadas"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones arrendamientos, cap. mobiliario 18%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones arrendamientos, cap. mobiliario 19%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones act. profesionales 15%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones arrendamientos, cap. mobiliario 21%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones arrendamientos, cap. mobiliario 20%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones empresarios m\u00f3dulos 1%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones act. agr\u00edcolas, ganaderas, forestales 2%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones act. profesionales 7%"
+           }, 
+           {
+            "name": "Hacienda P\u00fablica. Retenciones act. profesionales 9%"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, acreedora por retenciones practicadas"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, acreedora por conceptos fiscales"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Organismos de la Seguridad Social, acreedores"
+         }
+        ], 
+        "name": "Organismos de la Seguridad Social, acreedores"
+       }, 
+       {
+        "name": "Hacienda P\u00fablica, IVA soportado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Hacienda P\u00fablica, IVA repercutido"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, IVA repercutido"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por devoluci\u00f3n de impuestos"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por devoluci\u00f3n de impuestos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por subvenciones concedidas"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por subvenciones concedidas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hacienda P\u00fablica, deudora por IVA"
+           }
+          ], 
+          "name": "Hacienda P\u00fablica, deudora por IVA"
+         }
+        ], 
+        "name": "Hacienda P\u00fablica, deudora por diversos conceptos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Organismos de la Seguridad Social, deudores"
+         }
+        ], 
+        "name": "Organismos de la Seguridad Social, deudores"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dito por p\u00e9rdidas a compensar del ejercicio"
+           }
+          ], 
+          "name": "Cr\u00e9dito por p\u00e9rdidas a compensar del ejercicio"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Derechos por deducciones y bonificaciones pendientes de aplicar"
+           }
+          ], 
+          "name": "Derechos por deducciones y bonificaciones pendientes de aplicar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos por diferencias temporarias deducibles"
+           }
+          ], 
+          "name": "Activos por diferencias temporarias deducibles"
+         }
+        ], 
+        "name": "Activos por impuesto diferido"
+       }
+      ], 
+      "name": "Administraciones p\u00fablicas"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Acreedores, efectos comerciales a pagar", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores, efectos comerciales a pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios (moneda extranjera)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por prestaciones de servicios (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Acreedores por prestaciones de servicios (euros)", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores por prestaciones de servicios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores por operaciones en com\u00fan", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Acreedores por operaciones en com\u00fan", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Acreedores varios", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Clientes, empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, empresas asociadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes de dudoso cobro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes de dudoso cobro", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y embalajes a devolver por clientes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases y embalajes a devolver por clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos de clientes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos de clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes, otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, otras partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Clientes (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes (moneda extranjera)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes (euros)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales impagados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales impagados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales en gesti\u00f3n de cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales en gesti\u00f3n de cobro", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales en cartera", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales en cartera", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales descontados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales descontados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, efectos comerciales a cobrar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes, operaciones de factoring", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, operaciones de factoring", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo, facturas pendientes de formalizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo, facturas pendientes de formalizar", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo, operaciones de factoring", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo, operaciones de factoring", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo (moneda extranjera)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo (moneda extranjera)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Envases y embalajes a devolver a clientes, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Envases y embalajes a devolver a clientes, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales a cobrar, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Efectos comerciales a cobrar, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo de dudoso cobro", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo de dudoso cobro", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clientes empresas del grupo (euros)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clientes empresas del grupo (euros)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Clientes, empresas del grupo", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Clientes", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ingresos anticipados", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Ingresos anticipados", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos anticipados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Gastos anticipados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Ajustes por periodificaci\u00f3n"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n por contratos onerosos"
+           }
+          ], 
+          "name": "Provisi\u00f3n por contratos onerosos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n para otras operaciones comerciales"
+           }
+          ], 
+          "name": "Provisi\u00f3n para otras operaciones comerciales"
+         }
+        ], 
+        "name": "Provisiones por operaciones comerciales"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con empresas del grupo"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales con partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos por operaciones comerciales"
+       }
+      ], 
+      "name": "Deterioro de valor de cr\u00e9ditos comerciales y provisiones a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Proveedores, otras partes vinculadas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, otras partes vinculadas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores, empresas asociadas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, empresas asociadas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos a proveedores", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Anticipos a proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y embalajes a devolver a proveedores", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Envases y embalajes a devolver a proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores, efectos comerciales a pagar", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, efectos comerciales a pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores (moneda extranjera)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores (euros)", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo, facturas pendientes de recibir o de formalizar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo, facturas pendientes de recibir o de formalizar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Envases y embalajes a devolver a proveedores, empresas del grupo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Envases y embalajes a devolver a proveedores, empresas del grupo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo (moneda extranjera)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo (moneda extranjera)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores, empresas del grupo (euros)", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Proveedores, empresas del grupo (euros)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Efectos comerciales a pagar, empresas del grupo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Efectos comerciales a pagar, empresas del grupo", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Proveedores, empresas del grupo", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Proveedores", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Acreedores y deudores por operaciones comerciales"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos en curso B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en curso B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos en curso A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en curso A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos en curso", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Elementos y conjuntos incorporables", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Elementos y conjuntos incorporables", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Combustibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Combustibles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Repuestos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Repuestos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Material de oficina", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Material de oficina", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Embalajes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Embalajes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales diversos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales diversos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Otros aprovisionamientos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materiales recuperados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales recuperados A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales recuperados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales recuperados B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Residuos A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Residuos A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Residuos B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Residuos B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos B", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subproductos, residuos y materiales recuperados", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materias Primas B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias Primas B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materias Primas A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias Primas A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materias Primas", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas B", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Comerciales", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos terminados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados B", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos terminados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados A", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos terminados", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Productos semiterminados A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos semiterminados A", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos semiterminados B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos semiterminados B", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos semiterminados", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de las materias primas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de las materias primas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos en curso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos en curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de otros aprovisionamientos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de otros aprovisionamientos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos terminados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los productos semiterminados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los productos semiterminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de las mercader\u00edas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de las mercader\u00edas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de los subproductos, residuos y materiales recuperados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deterioro de valor de los subproductos, residuos y materiales recuperados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deterioro de valor de las existencias", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Existencias", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Donaciones y legados de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Donaciones y legados de capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subvenciones oficiales de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subvenciones oficiales de capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras subvenciones, donaciones y legados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras subvenciones, donaciones y legados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ingresos fiscales por deducciones y bonificaciones a distribuir en varios ejercicios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ingresos fiscales por deducciones y bonificaciones a distribuir en varios ejercicios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos fiscales por diferencias permanentes a distribuir en varios ejercicios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ingresos fiscales por diferencias permanentes a distribuir en varios ejercicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Ingresos fiscales a distribuir en varios ejercicios", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subvenciones, donaciones y ajustes por cambio de valor", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones propias en situaciones especiales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones propias en situaciones especiales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Capital social", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondo social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fondo social", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos no exigidos, capital pendiente de inscripci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Socios por desembolsos no exigidos, capital pendiente de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos no exigidos, capital social", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Socios por desembolsos no exigidos, capital social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Socios por desembolsos no exigidos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Socios por aportaciones no dinerarias pendientes, capital pendiente de inscripci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Socios por aportaciones no dinerarias pendientes, capital pendiente de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios por aportaciones no dinerarias pendientes, capital social", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Socios por aportaciones no dinerarias pendientes, capital social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Socios por aportaciones no dinerarias pendientes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones propias para reducci\u00f3n de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones propias para reducci\u00f3n de capital", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Capital", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital emitido pendiente de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Capital emitido pendiente de inscripci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suscriptores de acciones consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Suscriptores de acciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suscriptores de acciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Suscriptores de acciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones emitidas consideradas como pasivos financieros pendientes de inscripci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones emitidas consideradas como pasivos financieros pendientes de inscripci\u00f3n", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Situaciones transitorias de financiaci\u00f3n", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Fianzas recibidas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Fianzas recibidas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Anticipos recibidos por ventas o prestaciones de servicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Anticipos recibidos por ventas o prestaciones de servicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos recibidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Dep\u00f3sitos recibidos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Pasivos por fianzas, garant\u00edas y otros conceptos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Remanente", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Remanente", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados negativos de ejercicios anteriores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Resultados negativos de ejercicios anteriores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultado del ejercicio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Resultado del ejercicio", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Resultados pendientes de Aplicaci\u00f3n", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Diferencias por ajuste del capital a euros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Diferencias por ajuste del capital a euros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aportaciones de socios o propietarios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aportaciones de socios o propietarios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reservas por acciones propias aceptadas en garant\u00eda", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas por acciones propias aceptadas en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reservas para acciones o participaciones de la sociedad dominante", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas para acciones o participaciones de la sociedad dominante", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reservas estatutarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reservas estatutarias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reserva por capital amortizado", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Reserva por capital amortizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reservas especiales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reservas voluntarias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reservas voluntarias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserva Legal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Reserva Legal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Prima de Emisi\u00f3n o asunci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Prima de Emisi\u00f3n o asunci\u00f3n", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Reservas y otros instrumentos de patrimonio", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deudas con entidades de cr\u00e9dito", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas con entidades de cr\u00e9dito", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores de inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas representadas en otros valores negociables", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas representadas en otros valores negociables", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Efectos a pagar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Efectos a pagar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores por arrendamiento financiero", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones y bonos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Obligaciones y bonos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivos por derivados financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Pasivos por derivados financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas transformables en subvenciones, donaciones y legados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas transformables en subvenciones, donaciones y legados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas por pr\u00e9stamos recibidos, empr\u00e9stitos y otros conceptos", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero, empresas de grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero, empresas de grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero, partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otras deudas, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas, con otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras deudas, con otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otras deudas con partes vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas con otras entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con otras entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deudas con entidades de cr\u00e9dito vinculadas, empresas asociadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Deudas con entidades de cr\u00e9dito vinculadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado, otras partes vinculadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado, partes vinculadas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas con partes vinculadas", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros desembolsos no exigidos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros desembolsos no exigidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos no exigidos, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desembolsos no exigidos, empresas del grupo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desembolsos no exigidos por acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones consideradas como pasivos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, empresas asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, empresas asociadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, otras partes vinculadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, otras partes vinculadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Aportaciones no dinerarias pendientes, empresas del grupo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Aportaciones no dinerarias pendientes, empresas del grupo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras aportaciones no dinerarias pendientes", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras aportaciones no dinerarias pendientes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Aportaciones no dinerarias pendientes por acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Deudas con caracter\u00edsticas especiales", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para actuaciones medioambientales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para actuaciones medioambientales", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para impuestos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para impuestos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisi\u00f3n para otras responsabilidades", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Provisi\u00f3n para otras responsabilidades", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Provisiones", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Financiaci\u00f3n B\u00e1sica", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros servicios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros servicios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Suministros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Suministros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Publicidad, propaganda y relaciones p\u00fablicas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Publicidad, propaganda y relaciones p\u00fablicas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Arrendamientos y c\u00e1nones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Arrendamientos y c\u00e1nones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos en investigaci\u00f3n y desarrollo del ejercicio", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos en investigaci\u00f3n y desarrollo del ejercicio", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios de profesionales independientes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Servicios de profesionales independientes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reparaciones y conservaci\u00f3n", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Reparaciones y conservaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Primas de seguros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Primas de seguros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transportes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Transportes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios bancarios y similares", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Servicios bancarios y similares", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Servicios Exteriores", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros tributos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros tributos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Devoluci\u00f3n de impuestos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Devoluci\u00f3n de impuestos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes negativos en la imposici\u00f3n sobre beneficios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes negativos en la imposici\u00f3n sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Impuesto diferido", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Impuesto diferido", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Impuesto corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Impuesto corriente", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Impuesto sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ajustes negativos en IVA de inversiones", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes negativos en IVA de inversiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustes negativos en IVA de activo corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes negativos en IVA de activo corriente", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes negativos en la imposici\u00f3n indirecta", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ajustes positivos en la imposici\u00f3n sobre beneficios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes positivos en la imposici\u00f3n sobre beneficios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ajustes positivos en IVA de inversiones", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes positivos en IVA de inversiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustes positivos en IVA de activo corriente", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Ajustes positivos en IVA de activo corriente", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ajustes positivos en la imposici\u00f3n indirecta", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Tributos", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de otros aprovisionamientos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras de mercader\u00edas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de mercader\u00edas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Trabajos realizados por otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Trabajos realizados por otras empresas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras de materias primas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Compras de materias primas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\"Rappels\" por compras de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\"Rappels\" por compras de mercader\u00edas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "\u201cRappels\u201d por compras", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de mercader\u00edas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Devoluciones de compras de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Devoluciones de compras de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Devoluciones de compras y operaciones similares", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de mercader\u00edas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Descuentos sobre compras por pronto pago de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Descuentos sobre compras por pronto pago de materias primas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Descuentos sobre compras por pronto pago", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Compras", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de mercader\u00edas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de mercader\u00edas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de materias primas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de materias primas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias de otros aprovisionamientos", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por operaciones con obligaciones propias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por operaciones con obligaciones propias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas procedentes de participaciones en, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas procedentes de participaciones en, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes de participaciones en partes vinculadas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas procedentes del inmovilizado material", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas procedentes del inmovilizado material", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos excepcionales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos excepcionales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "P\u00e9rdidas procedentes de activos no corrientes y gastos excepcionales", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Seguridad Social a cargo de la empresa", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Seguridad Social a cargo de la empresa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Indemnizaciones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Indemnizaciones", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sueldos y salarios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Sueldos y salarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos sociales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros gastos sociales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de personal", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Beneficio transferido (gestor)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Beneficio transferido (gestor)", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida soportada (part\u00edcipe o asociado no gestor)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdida soportada (part\u00edcipe o asociado no gestor)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Resultados de operaciones en com\u00fan", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras p\u00e9rdidas en gesti\u00f3n corriente", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otras p\u00e9rdidas en gesti\u00f3n corriente", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas de cr\u00e9ditos comerciales incobrables", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas de cr\u00e9ditos comerciales incobrables", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Otros gastos de gesti\u00f3n", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortizaci\u00f3n del inmovilizado material", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortizaci\u00f3n del inmovilizado material", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Dotaciones para amortizaciones", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de participaciones y valores representativos de deuda a corto plazo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro del inmovilizado intangible", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro del inmovilizado intangible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro del inmovilizado material", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro del inmovilizado material", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de productos terminados y en curso de fabricaci\u00f3n", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de mercader\u00edas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de mercader\u00edas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de materias primas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de materias primas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de otros aprovisionamientos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de otros aprovisionamientos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de existencias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos por operaciones comerciales", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos por operaciones comerciales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotaci\u00f3n a la provisi\u00f3n para otras operaciones comerciales", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dotaci\u00f3n a la provisi\u00f3n para otras operaciones comerciales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotaci\u00f3n a la provisi\u00f3n por contratos onerosos", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dotaci\u00f3n a la provisi\u00f3n por contratos onerosos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dotaci\u00f3n a la provisi\u00f3n por operaciones comerciales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro en valores representativos de deuda, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de participaciones en instrumentos de patrimonio neto, empresas asociadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de participaciones y valores representativos de deuda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por deterioro de las inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de las inversiones inmobiliarias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos a corto plazo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos, empresas asociadas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por deterioro de cr\u00e9ditos", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "P\u00e9rdidas por deterioro y otras dotaciones", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas con entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas con entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de deudas, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de deudas, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Intereses de deudas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en otras entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en otras entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por descuento de efectos en entidades de cr\u00e9dito vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con entidades de cr\u00e9dito del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por operaciones de \"factoring\" con otras entidades de cr\u00e9dito", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses por operaciones de \"factoring\" con otras entidades de cr\u00e9dito", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Intereses por descuento de efectos y operaciones de \u201cfactoring\u201d", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendos de pasivos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Dividendos de pasivos, empresas del grupo", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas en valores representativos de deuda a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas en participaciones y valores representativos de deuda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses de obligaciones y bonos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Intereses de obligaciones y bonos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Intereses de obligaciones y bonos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas por valoraci\u00f3n de activos y pasivos financieros por su valor razonable", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas por valoraci\u00f3n de activos y pasivos financieros por su valor razonable", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos financieros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros gastos financieros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Diferencias negativas de cambio", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Diferencias negativas de cambio", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, otras empresas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras partes vinculadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas del grupo", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas del grupo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas asociadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, empresas asociadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras empresas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00e9rdidas de cr\u00e9ditos a corto plazo, otras empresas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "P\u00e9rdidas de cr\u00e9ditos no comerciales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros por actualizaci\u00f3n de provisiones", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros por actualizaci\u00f3n de provisiones", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos financieros", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Compras y Gastos", 
+    "root_type": "Expense"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Caja, euros"
+         }
+        ], 
+        "name": "Caja, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, moneda extranjera"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, moneda extranjera"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, euros"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito, cuentas de ahorro, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito c/c vista, euros"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito c/c vista, euros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones a corto plazo de gran liquidez"
+         }
+        ], 
+        "name": "Inversiones a corto plazo de gran liquidez"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bancos e instituciones de cr\u00e9dito c/c vista, moneda extranjera"
+         }
+        ], 
+        "name": "Bancos e instituciones de cr\u00e9dito c/c vista, moneda extranjera"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja, moneda extranjera"
+         }
+        ], 
+        "name": "Caja, moneda extranjera"
+       }
+      ], 
+      "name": "Tesorer\u00eda"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Intereses cobrados por anticipado"
+         }
+        ], 
+        "name": "Intereses cobrados por anticipado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas recibidas a corto plazo"
+         }
+        ], 
+        "name": "Fianzas recibidas a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fianzas constituidas a corto plazo"
+         }
+        ], 
+        "name": "Fianzas constituidas a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos recibidos a corto plazo"
+         }
+        ], 
+        "name": "Dep\u00f3sitos recibidos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dep\u00f3sitos constituidos a corto plazo"
+         }
+        ], 
+        "name": "Dep\u00f3sitos constituidos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses pagados por anticipado"
+         }
+        ], 
+        "name": "Intereses pagados por anticipado"
+       }
+      ], 
+      "name": "Fianzas y dep\u00f3sitos recibidos y constituidos a corto plazo y ajustes por periodificaci\u00f3n"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, empresas del grupo"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones de otras empresas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones de otras empresas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, empresas asociadas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos exigidos sobre participaciones, otras partes vinculadas"
+           }
+          ], 
+          "name": "Desembolsos exigidos sobre participaciones, otras partes vinculadas"
+         }
+        ], 
+        "name": "Desembolsos exigidos sobre participaciones en el patrimonio neto"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuenta corriente con uniones temporales de empresas y comunidades de bienes"
+         }
+        ], 
+        "name": "Cuenta corriente con uniones temporales de empresas y comunidades de bienes"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuenta corriente con socios y administradores"
+         }
+        ], 
+        "name": "Cuenta corriente con socios y administradores"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Titular de la explotaci\u00f3n"
+         }
+        ], 
+        "name": "Titular de la explotaci\u00f3n"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pasivos por derivados financieros a corto plazo"
+           }
+          ], 
+          "name": "Pasivos por derivados financieros a corto plazo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos por derivados financieros a corto plazo"
+           }
+          ], 
+          "name": "Activos por derivados financieros a corto plazo"
+         }
+        ], 
+        "name": "Derivados financieros a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos exigidos sobre acciones o participaciones ordinarias"
+           }
+          ], 
+          "name": "Socios por desembolsos exigidos sobre acciones o participaciones ordinarias"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Socios por desembolsos exigidos sobre acciones o participaciones consideradas como pasivos financieros"
+           }
+          ], 
+          "name": "Socios por desembolsos exigidos sobre acciones o participaciones consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Socios por desembolsos exigidos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo activo a cuenta"
+         }
+        ], 
+        "name": "Dividendo activo a cuenta"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Partidas pendientes de aplicaci\u00f3n"
+         }
+        ], 
+        "name": "Partidas pendientes de aplicaci\u00f3n"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con empresas asociadas"
+           }
+          ], 
+          "name": "Cuenta corriente con empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con otras partes vinculadas"
+           }
+          ], 
+          "name": "Cuenta corriente con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuenta corriente con empresas del grupo"
+           }
+          ], 
+          "name": "Cuenta corriente con empresas del grupo"
+         }
+        ], 
+        "name": "Cuenta corriente con otras personas y entidades vinculadas"
+       }
+      ], 
+      "name": "Otras cuentas no bancarias"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones financieras a corto plazo en instrumentos de patrimonio"
+         }
+        ], 
+        "name": "Inversiones financieras a corto plazo en instrumentos de patrimonio"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de cr\u00e9ditos"
+         }
+        ], 
+        "name": "Intereses a corto plazo de cr\u00e9ditos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imposiciones a corto plazo"
+         }
+        ], 
+        "name": "Imposiciones a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto a corto plazo"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones en el patrimonio neto a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores representativos de deuda a corto plazo"
+         }
+        ], 
+        "name": "Valores representativos de deuda a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo por enajenaci\u00f3n de inmovilizado"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo por enajenaci\u00f3n de inmovilizado"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a corto plazo al personal"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo al personal"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo a cobrar"
+         }
+        ], 
+        "name": "Dividendo a cobrar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de valores representativos de deudas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de valores representativos de deudas"
+       }
+      ], 
+      "name": "Otras inversiones financieras a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en otras partes vinculadas"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en empresas del grupo"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dividendo a cobrar de inversiones financieras en empresas asociadas"
+           }
+          ], 
+          "name": "Dividendo a cobrar de inversiones financieras en empresas asociadas"
+         }
+        ], 
+        "name": "Dividendo a cobrar de inversiones financieras en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de cr\u00e9ditos a empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de cr\u00e9ditos a empresas asociadas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de cr\u00e9ditos a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de empresas asociadas"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de otras partes vinculadas"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores representativos de deuda a corto plazo de empresas del grupo"
+           }
+          ], 
+          "name": "Valores representativos de deuda a corto plazo de empresas del grupo"
+         }
+        ], 
+        "name": "Valores representativos de deuda a corto plazo de partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en otras partes vinculadas"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Participaciones a corto plazo en empresas del grupo"
+         }
+        ], 
+        "name": "Participaciones a corto plazo en partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de valores representativos de deuda de otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de valores representativos de deuda de otras partes vinculadas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de valores representativos de deuda de partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a empresas del grupo"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a empresas asociadas"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ditos a corto plazo a otras partes vinculadas"
+           }
+          ], 
+          "name": "Cr\u00e9ditos a corto plazo a otras partes vinculadas"
+         }
+        ], 
+        "name": "Cr\u00e9ditos a corto plazo a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en otras partes vinculadas"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Desembolsos pendientes sobre participaciones a corto plazo en empresas del grupo"
+         }
+        ], 
+        "name": "Desembolsos pendientes sobre participaciones a corto plazo en partes vinculadas"
+       }
+      ], 
+      "name": "Inversiones financieras a corto plazo en partes vinculadas"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deudas a corto plazo"
+         }
+        ], 
+        "name": "Deudas a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendo activo a pagar"
+         }
+        ], 
+        "name": "Dividendo activo a pagar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de deudas con entidades de cr\u00e9dito"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas con entidades de cr\u00e9dito"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acreedores por arrendamiento financiero a corto plazo"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas a corto plazo transformables en subvenciones, donaciones y legados"
+         }
+        ], 
+        "name": "Deudas a corto plazo transformables en subvenciones, donaciones y legados"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Proveedores de inmovilizado a corto plazo"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas por operaciones de \u201cfactoring\u201d"
+           }
+          ], 
+          "name": "Deudas por operaciones de \u201cfactoring\u201d"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9stamos a corto plazo de entidades de cr\u00e9dito"
+           }
+          ], 
+          "name": "Pr\u00e9stamos a corto plazo de entidades de cr\u00e9dito"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas por efectos descontados"
+           }
+          ], 
+          "name": "Deudas por efectos descontados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo por cr\u00e9dito dispuesto"
+           }
+          ], 
+          "name": "Deudas a corto plazo por cr\u00e9dito dispuesto"
+         }
+        ], 
+        "name": "Deudas a corto plazo con entidades de cr\u00e9dito"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de deudas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para actuaciones medioambientales"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para actuaciones medioambientales"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo por retribuciones al personal"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo por retribuciones al personal"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para impuestos"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para impuestos"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo para otras responsabilidades"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo para otras responsabilidades"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n a corto plazo por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado"
+           }
+          ], 
+          "name": "Provisi\u00f3n a corto plazo por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado"
+         }
+        ], 
+        "name": "Provisiones a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Efectos a pagar a corto plazo"
+         }
+        ], 
+        "name": "Efectos a pagar a corto plazo"
+       }
+      ], 
+      "name": "Deudas a corto plazo por pr\u00e9stamos recibidos y otros conceptos"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con otras entidades de cr\u00e9dito vinculadas"
+           }
+          ], 
+          "name": "Deudas a corto plazo con otras entidades de cr\u00e9dito vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas asociadas"
+           }
+          ], 
+          "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas del grupo"
+           }
+          ], 
+          "name": "Deudas a corto plazo con entidades de cr\u00e9dito, empresas del grupo"
+         }
+        ], 
+        "name": "Deudas a corto plazo con entidades de cr\u00e9dito vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con otras partes vinculadas"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con empresas del grupo"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otras deudas a corto plazo con empresas asociadas"
+           }
+          ], 
+          "name": "Otras deudas a corto plazo con empresas asociadas"
+         }
+        ], 
+        "name": "Otras deudas a corto plazo con partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, empresas del grupo"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, empresas asociadas"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acreedores por arrendamiento financiero a corto plazo, otras partes vinculadas"
+           }
+          ], 
+          "name": "Acreedores por arrendamiento financiero a corto plazo, otras partes vinculadas"
+         }
+        ], 
+        "name": "Acreedores por arrendamiento financiero a corto plazo, partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, empresas asociadas"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, empresas del grupo"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Proveedores de inmovilizado a corto plazo, otras partes vinculadas"
+           }
+          ], 
+          "name": "Proveedores de inmovilizado a corto plazo, otras partes vinculadas"
+         }
+        ], 
+        "name": "Proveedores de inmovilizado a corto plazo, partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con otras partes vinculadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con empresas asociadas"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses a corto plazo de deudas con empresas del grupo"
+           }
+          ], 
+          "name": "Intereses a corto plazo de deudas con empresas del grupo"
+         }
+        ], 
+        "name": "Intereses a corto plazo de deudas con partes vinculadas"
+       }
+      ], 
+      "name": "Deudas a corto plazo con partes vinculadas"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deudas representadas en otros valores negociables a corto plazo"
+         }
+        ], 
+        "name": "Deudas representadas en otros valores negociables a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones y bonos a corto plazo"
+         }
+        ], 
+        "name": "Obligaciones y bonos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligaciones y bonos amortizados"
+           }
+          ], 
+          "name": "Obligaciones y bonos amortizados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros valores negociables amortizados"
+           }
+          ], 
+          "name": "Otros valores negociables amortizados"
+         }
+        ], 
+        "name": "Valores negociables amortizados"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a corto plazo de empr\u00e9stitos y otras emisiones an\u00e1logas"
+         }
+        ], 
+        "name": "Intereses a corto plazo de empr\u00e9stitos y otras emisiones an\u00e1logas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Dividendos de acciones o participaciones consideradas como pasivos financieros"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Acciones o participaciones a corto plazo consideradas como pasivos financieros"
+         }
+        ], 
+        "name": "Acciones o participaciones a corto plazo consideradas como pasivos financieros"
+       }
+      ], 
+      "name": "Empr\u00e9stitos, deudas con caracter\u00edsticas especiales y otras emisiones an\u00e1logas a corto plazo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de participaciones a corto plazo"
+         }
+        ], 
+        "name": "Deterioro de valor de participaciones a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de valores representativos de deuda a corto plazo de otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de valores representativos de deuda a corto plazo de otras partes vinculadas"
+         }
+        ], 
+        "name": "Deterioro de valor de valores representativos de deuda a corto plazo de partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a corto plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas asociadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a empresas del grupo"
+         }
+        ], 
+        "name": "Deterioro de valor de cr\u00e9ditos a corto plazo a partes vinculadas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a corto plazo en empresas del grupo"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a corto plazo en empresas del grupo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a corto plazo en otras partes vinculadas"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a corto plazo en otras partes vinculadas"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Deterioro de valor de participaciones a corto plazo en empresas asociadas"
+           }
+          ], 
+          "name": "Deterioro de valor de participaciones a corto plazo en empresas asociadas"
+         }
+        ], 
+        "name": "Deterioro de valor de participaciones a corto plazo en partes vinculadas"
+       }
+      ], 
+      "name": "Deterioro del valor de inversiones financieras a corto plazo y de activos no corrientes mantenidos para la venta"
+     }
+    ], 
+    "name": "Cuentas financieras"
+   }
+  ], 
+  "name": "Plan General Contable PYMES 2008", 
+  "parent_id": "", 
+  "root_type": "None"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/fr_l10n_fr_pcg_chart_template.json b/setup/doctype/company/charts/fr_l10n_fr_pcg_chart_template.json
new file mode 100644
index 0000000..67a8b01
--- /dev/null
+++ b/setup/doctype/company/charts/fr_l10n_fr_pcg_chart_template.json
@@ -0,0 +1,9881 @@
+{
+ "name": "Plan Comptable G\u00e9n\u00e9ral (France)", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Venituri din sconturi obtinute", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Venituri din actiuni detinute la entitatile afiliate", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus sur autres formes de participation ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances rattach\u00e9es \u00e0 des participations", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din interese de participare", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din imobilizari financiare"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Revenus des titres immobilis\u00e9s", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des pr\u00eats", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances immobilis\u00e9es", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din investitii financiare pe termen scurt", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Alte venituri financiare", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din diferente de curs valutar", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Revenus des cr\u00e9ances diverses", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances commerciales ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din creante imobilizate", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Venituri din imobilizari financiare cedate", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Castiguri din investitii pe termen scurt cedate", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din investitii financiare cedate"
+           }, 
+           {
+            "name": "Venituri din dobanzi", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENITURI FINANCIARE"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Venituri din subventii de exploatare pentru alte cheltuieli externe", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare aferente altor venituri", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru asigurari si protectie sociala", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru dobanda datorata", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru materii prime si materiale consumabile ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru alte cheltuieli de exploatare", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare aferente cifrei de afaceri", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru plata personalului", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din subventii de exploatare"
+           }
+          ], 
+          "name": "VENITURI DIN SUBVENTII DE EXPLOATARE"
+         }
+        ], 
+        "name": "CONTURI DE VENITURI"
+       }, 
+       {
+        "name": "CONTURI DE CHELTUIELI"
+       }
+      ], 
+      "name": "Conturile de venituri si cheltuieli"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Diferente de pret la materii prime si materiale"
+           }, 
+           {
+            "name": "Materiale de natura obiectelor de inventar"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Seminte si materiale de plantat"
+             }, 
+             {
+              "name": "Combustibili"
+             }, 
+             {
+              "name": "Materiale auxiliare"
+             }, 
+             {
+              "name": "Furaje"
+             }, 
+             {
+              "name": "Alte materiale consumabile"
+             }, 
+             {
+              "name": "Materiale pentru ambalat"
+             }, 
+             {
+              "name": "Piese de schimb"
+             }
+            ], 
+            "name": "Materiale consumabile"
+           }, 
+           {
+            "name": "Materii prime"
+           }
+          ], 
+          "name": "STOCURI DE MATERII PRIME SI MATERIALE"
+         }
+        ], 
+        "name": "CONTURI DE STOCURI SI PRODUCTIE IN CURS DE EXECUTIE"
+       }, 
+       {
+        "name": "CONTURI DE IMOBILIZARI"
+       }, 
+       {
+        "name": "CONTURI DE TREZORERIE"
+       }, 
+       {
+        "name": "Conturi de capitaluri"
+       }, 
+       {
+        "name": "CONTURI DE TERTI"
+       }
+      ], 
+      "name": "Conturi de bilant"
+     }
+    ], 
+    "name": "Conturi financiare"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Decontari privind interesele de participare"
+         }, 
+         {
+          "name": "OP\u00c9RATIONS AVEC LES AUTRES ORGANISMES INTERNATIONAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour garanties donn\u00e9es aux clients"
+           }, 
+           {
+            "name": "Provisions pour amendes, doubles droits et p\u00e9nalit\u00e9s"
+           }, 
+           {
+            "name": "Autres provisions pour risques et charges"
+           }, 
+           {
+            "name": "Provisions pour pertes de change"
+           }, 
+           {
+            "name": "Provisions pour imp\u00f4ts"
+           }, 
+           {
+            "name": "Provisions pour litiges"
+           }
+          ], 
+          "name": "Autres provisions pour risques et charges"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente decontarilor intre entitatile afiliate"
+           }, 
+           {
+            "name": "Decontari privind interesele de participare"
+           }, 
+           {
+            "name": "Dobanzi aferente decontarilor privind interesele de participare"
+           }, 
+           {
+            "name": "Decontari intre entitatile afiliate"
+           }
+          ], 
+          "name": "OP\u00c9RATIONS AVEC LES ORGANISMES AFRICAINS"
+         }, 
+         {
+          "name": "Dividende de plata"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionari/asociati dobanzi la conturi curente"
+           }, 
+           {
+            "name": "Actionari/asociati - conturi curente"
+           }
+          ], 
+          "name": "Sume datorate actionarilor/asociatilor"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Organismes internationaux, subventions \u00e0 recevoir"
+           }, 
+           {
+            "name": "Organismes internationaux, fonds de dotation \u00e0 recevoir"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "ORGANISMES INTERNATIONAUX, FONDS DE DOTATION ET SUBVENTIONS \u00c0 RECEVOIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionnaires d\u00e9faillants"
+           }, 
+           {
+            "name": "Associ\u00e9s - Versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Apports en num\u00e9raire"
+             }, 
+             {
+              "name": "Apports en nature"
+             }
+            ], 
+            "name": "Associ\u00e9s - Comptes d'apport en soci\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Associ\u00e9s - Capital \u00e0 rembourser"
+           }, 
+           {
+            "name": "Associ\u00e9s - Versements anticip\u00e9s"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Associ\u00e9s - Capital appel\u00e9, non vers\u00e9"
+             }, 
+             {
+              "name": "Actionnaires - Capital souscrit et appel\u00e9, non vers\u00e9"
+             }
+            ], 
+            "name": "Apporteurs - Capital appel\u00e9, non vers\u00e9"
+           }
+          ], 
+          "name": "Decontari cu actionarii/asociatii privind capitalul"
+         }
+        ], 
+        "name": "ORGANISMES INTERNATIONAUX"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres repr\u00e9sentants du personnel"
+           }, 
+           {
+            "name": "D\u00e9l\u00e9gu\u00e9s du personnel"
+           }, 
+           {
+            "name": "Syndicats et Comit\u00e9s d'entreprises, d'\u00c9tablissement"
+           }
+          ], 
+          "name": "REPR\u00c9SENTANTS DU PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte creante in legatura cu personalul"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Dettes provisionn\u00e9es pour cong\u00e9s \u00e0 payer"
+           }, 
+           {
+            "name": "Dettes provisionn\u00e9es pour participation des salari\u00e9s aux r\u00e9sultats", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres Charges \u00e0 payer"
+           }
+          ], 
+          "name": "PERSONNEL, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "PERSONNEL \u2013 D\u00c9P\u00d4TS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serve sp\u00e9ciale", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Organismes sociaux rattach\u00e9s \u00e0 l'entreprise"
+           }, 
+           {
+            "name": "Assistance m\u00e9dicale"
+           }, 
+           {
+            "name": "Allocations familiales"
+           }, 
+           {
+            "name": "Autres oeuvres sociales internes"
+           }
+          ], 
+          "name": "PERSONNEL, OEUVRES SOCIALES INTERNES"
+         }, 
+         {
+          "name": "PERSONNEL, R\u00c9MUN\u00c9RATIONS DUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel, acomptes"
+           }, 
+           {
+            "name": "Personnel, avances"
+           }, 
+           {
+            "name": "Frais avanc\u00e9s et fournitures au personnel"
+           }
+          ], 
+          "name": "PERSONNEL, AVANCES ET ACOMPTES"
+         }, 
+         {
+          "name": "PERSONNEL, PARTICIPATION AUX B\u00c9N\u00c9FICES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel, saisies-arr\u00eats"
+           }, 
+           {
+            "name": "Personnel, avis \u00e0 tiers d\u00e9tenteur"
+           }, 
+           {
+            "name": "Personnel, oppositions"
+           }
+          ], 
+          "name": "PERSONNEL, OPPOSITIONS, SAISIES-ARR\u00caTS"
+         }
+        ], 
+        "name": "PERSONNEL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances litigieuses"
+           }, 
+           {
+            "name": "Cr\u00e9ances douteuses"
+           }
+          ], 
+          "name": "CR\u00c9ANCES CLIENTS LITIGIEUSES OU DOUTEUSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances en compte"
+           }, 
+           {
+            "name": "Effets \u00e0 recevoir"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR CESSIONS D'IMMOBILISATIONS"
+         }, 
+         {
+          "name": "Clients et comptes rattach\u00e9s "
+         }, 
+         {
+          "name": "Efecte de primit de la clienti"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - Groupe"
+           }, 
+           {
+            "name": "Clients, \u00c9tat et Collectivit\u00e9s publiques"
+           }, 
+           {
+            "name": "Clients"
+           }, 
+           {
+            "name": "Clients, d\u00e9gr\u00e8vement de Taxes sur la Valeur Ajout\u00e9e (T.V.A.)"
+           }, 
+           {
+            "name": "Clients, organismes internationaux"
+           }, 
+           {
+            "name": "Clients - Ventes de biens ou de prestations de services"
+           }, 
+           {
+            "name": "Clienti"
+           }, 
+           {
+            "name": "Client, retenues de garantie"
+           }
+          ], 
+          "name": "CLIENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients, factures \u00e0 \u00e9tablir"
+           }, 
+           {
+            "name": "Clients - Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Clients, int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "CLIENTS, PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "CLIENTS, \u00c9FFETS ESCOMPT\u00c9S NON \u00c9CHUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat et Collectivit\u00e9s publiques, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Organismes Internationaux, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Clients - Groupe, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Clients, Effets \u00e0 recevoir"
+           }
+          ], 
+          "name": "CLIENTS, \u00c9FFETS \u00c0 RECEVOIR EN PORTEFEUILLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - Groupe, avances et acomptes re\u00e7us"
+           }, 
+           {
+            "name": "Clients, avances et acomptes re\u00e7us"
+           }, 
+           {
+            "name": "Clients - Autres avoirs ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Clients - Dettes pour emballages et mat\u00e9riels consign\u00e9s ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Clients, dettes pour emballages et mat\u00e9riels consign\u00e9s"
+           }, 
+           {
+            "name": "Rabais, Remises, Ristournes et autres avoirs \u00e0 accorder"
+           }
+          ], 
+          "name": "CLIENTS CR\u00c9DITEURS"
+         }
+        ], 
+        "name": "CLIENTS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES FOURNISSEURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres comptes d\u00e9biteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s, comptes courants"
+           }, 
+           {
+            "name": "Associ\u00e9s, op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Groupe, comptes courants"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions de valeurs mobili\u00e8res de placement"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ASSOCI\u00c9S ET GROUPE"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES D\u00c9BITEURS DIVERS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur op\u00e9rations H.A.O."
+           }, 
+           {
+            "name": "Sur op\u00e9rations d'exploitation"
+           }
+          ], 
+          "name": "RISQUES PROVISIONN\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances sur cessions d'immobilisations"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions de titres de placement"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances H.A.O."
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES DE CR\u00c9ANCES H.A.O."
+         }, 
+         {
+          "children": [
+           {
+            "name": "Op\u00e9rations faites en commun et en GIE", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Comptes du groupe", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Comptes courants des associ\u00e9s", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ORGANISMES INTERNATIONAUX"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES \u00c9TAT ET COLLECTIVIT\u00c9S PUBLIQUES"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ORGANISMES SOCIAUX"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances douteuses"
+           }, 
+           {
+            "name": "Cr\u00e9ances litigieuses"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES CLIENTS"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS ET RISQUES PROVISIONN\u00c9S (TIERS)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "DETTES SUR ACQUISITION DE TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "Quotas d'\u00e9mission allou\u00e9s par l'\u00c9tat"
+         }, 
+         {
+          "name": "AUTRES DETTES HORS ACTIVITES ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Produits"
+           }
+          ], 
+          "name": "AUTRES CR\u00c9ANCES HORS ACTIVIT\u00c9S ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "name": "CR\u00c9ANCES SUR CESSIONS DE TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "Produits constat\u00e9s d'avance", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Factures non parvenues"
+           }, 
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Immobilisations corporelles"
+           }, 
+           {
+            "name": "Immobilisations incorporelles"
+           }
+          ], 
+          "name": "FOURNISSEURS D'INVESTISSEMENTS"
+         }, 
+         {
+          "name": "FOURNISSEURS D'INVESTISSEMENTS, EFFETS \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "En compte"
+           }, 
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Factures \u00e0 \u00e9tablir"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR CESSIONS D'IMMOBILISATIONS"
+         }
+        ], 
+        "name": "CR\u00c9ANCES ET DETTES HORS ACTIVIT\u00c9S ORDINAIRES (HAO)"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Alte sume primite cu caracter de subventii pentru investitii"
+           }, 
+           {
+            "name": "Plusuri de inventar de natura imobilizarilor"
+           }, 
+           {
+            "name": "Subventii guvernamentale pentru investitii"
+           }, 
+           {
+            "name": "Donatii pentru investitii"
+           }, 
+           {
+            "name": "Imprumuturi nerambursabile cu caracter de subventii pentru investitii"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR TRAVAUX NON ENCORE FACTURABLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits"
+           }, 
+           {
+            "name": "Charges"
+           }
+          ], 
+          "name": "R\u00c9PARTITION P\u00c9RIODIQUE DES CHARGES ET DES PRODUITS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des dettes", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Augmentation des cr\u00e9ances", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PRODUITS CONSTAT\u00c9S D'AVANCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }, 
+           {
+            "name": "Diminution des cr\u00e9ances"
+           }, 
+           {
+            "name": "Augmentation des dettes"
+           }
+          ], 
+          "name": "CHARGES CONSTAT\u00c9ES D'AVANCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9biteurs divers"
+           }, 
+           {
+            "name": "Cr\u00e9diteurs divers"
+           }
+          ], 
+          "name": "COMPTES D'ATTENTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances circulantes"
+           }, 
+           {
+            "name": "Diminution des dettes circulantes"
+           }
+          ], 
+          "name": "Ecarts de conversion - passif (El\u00e9ments circulants)"
+         }, 
+         {
+          "name": "Decontari din operatiuni in curs de clarificare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres de participation"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Titres de placement"
+           }
+          ], 
+          "name": "VERSEMENTS RESTANT \u00c0 EFFECTUER SUR TITRES NON LIB\u00c9R\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des cr\u00e9ances"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }, 
+           {
+            "name": "Augmentation des dettes"
+           }
+          ], 
+          "name": "\u00c9CARTS DE CONVERSION - ACTIF"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances"
+           }, 
+           {
+            "name": "Diminution des dettes"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }
+          ], 
+          "name": "\u00c9CARTS DE CONVERSION - PASSIF"
+         }
+        ], 
+        "name": "D\u00c9BITEURS ET CR\u00c9DITEURS DIVERS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Charges \u00e0 payer"
+           }, 
+           {
+            "name": "Dettes sur acquisitions de titres et valeurs de placement"
+           }, 
+           {
+            "name": "Divers cr\u00e9anciers"
+           }, 
+           {
+            "name": "Obligations, coupons \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Obligations \u00e9chues \u00e0\u00a0 rembourser"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Alte datorii fata de bugetul statului"
+           }, 
+           {
+            "name": "Alte creante privind bugetul statului"
+           }
+          ], 
+          "name": "\u00c9TAT, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat, fonds r\u00e9glement\u00e9 provisionn\u00e9"
+           }, 
+           {
+            "name": "\u00c9tat, avances et acomptes vers\u00e9s sur imp\u00f4ts"
+           }, 
+           {
+            "name": "\u00c9tat, fonds de dotation \u00e0 recevoir"
+           }, 
+           {
+            "name": "\u00c9tat, obligations cautionn\u00e9es"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'\u00e9quilibre \u00e0 recevoir"
+           }, 
+           {
+            "name": "Comptes transitoires ou d'attente - cr\u00e9diteurs"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'\u00e9quipement \u00e0 recevoir"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'exploitation \u00e0 recevoir"
+           }
+          ], 
+          "name": "\u00c9TAT, CR\u00c9ANCES ET DETTES DIVERSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs - retenues de garantie"
+           }, 
+           {
+            "name": "Impozitul pe venit"
+           }, 
+           {
+            "name": "Avances sur subventions"
+           }, 
+           {
+            "name": "Fournisseurs - effets \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Impozitul pe profit"
+           }, 
+           {
+            "name": "Fournisseurs - factures non parvenues"
+           }
+          ], 
+          "name": "\u00c9TAT, IMP\u00d4T SUR LES B\u00c9N\u00c9FICES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4ts et taxes recouvrables sur des obligataires"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes d'Etat"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes pour les collectivit\u00e9s publiques"
+           }, 
+           {
+            "name": "Autres imp\u00f4ts et taxes"
+           }, 
+           {
+            "name": "TVA colectata"
+           }, 
+           {
+            "name": "Droits de douane"
+           }, 
+           {
+            "name": "Clients - dettes pour emballages et mat\u00e9riel consign\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes recouvrables sur des associ\u00e9s"
+           }
+          ], 
+          "name": "\u00c9TAT, AUTRES IMP\u00d4TS ET TAXES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat, cr\u00e9dit de T.V.A. \u00e0 reporter"
+           }, 
+           {
+            "name": "Autres organismes sociaux"
+           }, 
+           {
+            "name": "Mutuelles"
+           }, 
+           {
+            "name": "Charges sociales \u00e0\u00a0 payer"
+           }, 
+           {
+            "children": [
+             {
+              "name": "ALLOCATION FAMILIALES"
+             }
+            ], 
+            "name": "\u00c9tat, T.V.A. due"
+           }, 
+           {
+            "name": "Caisses de retraite"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. DUE OU CR\u00c9DIT DE T.V.A."
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Etat, TVA factur\u00e9e 10%"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA \u00e0 d\u00e9caisser", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 7%"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 20%"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 14%"
+             }
+            ], 
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur factures non parvenues"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "TVA collect\u00e9e 5,5%", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "TVA collect\u00e9e 19,6%", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "TVA collect\u00e9e (autre taux)", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "TVA collect\u00e9e"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Etat, imp\u00f4ts et taxes \u00e0\u00a0 payer"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Taxes sur le chiffre d'affaires sur factures non parvenues", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Remboursement de taxes sur le chiffre d'affaires demand\u00e9", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Acomptes - R\u00e9gime simplifi\u00e9 d'imposition", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Taxes sur le chiffre d'affaires sur factures \u00e0 \u00e9tablir", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA r\u00e9cup\u00e9r\u00e9e d'avance", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Acomptes - R\u00e9gime du forfait", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Alte sume primite cu caracter de subventii"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur immobilisations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "TVA transf\u00e9r\u00e9e par d'autres entreprises", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA sur immobilisations", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA sur autres biens et services", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA d\u00e9ductible intracommunautaire", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Cr\u00e9dit de TVA \u00e0 reporter", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "T.V.A. transf\u00e9r\u00e9e par d'autres entreprises"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur services ext\u00e9rieurs et autres charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "TVA due intracommunautaire 5,5%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA due intracommunautaire (autre taux)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA due intracommunautaire 19,6%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat, IR"
+             }, 
+             {
+              "name": "Etat, taxe urbaine et taxe d'\u00e9dilit\u00e9"
+             }, 
+             {
+              "name": "Etat, Taxe professionnelle (ex patente)"
+             }
+            ], 
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur achats"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur transport"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. R\u00c9CUP\u00c9RABLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Comptes courants des associ\u00e9s cr\u00e9diteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s - versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "name": "Associ\u00e9s - capital \u00e0\u00a0 rembourser"
+           }, 
+           {
+            "name": "Associ\u00e9s - dividendes \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Associ\u00e9s - op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Autres comptes d'associ\u00e9s - cr\u00e9diteurs"
+           }
+          ], 
+          "name": "\u00c9TAT, AUTRES TAXES SUR LE CHIFFRE D'AFFAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4t G\u00e9n\u00e9ral sur le revenu"
+           }, 
+           {
+            "name": "Imp\u00f4ts sur salaires"
+           }, 
+           {
+            "name": "Contribution nationale de solidarit\u00e9"
+           }, 
+           {
+            "name": "Contribution nationale"
+           }, 
+           {
+            "name": "Autres imp\u00f4ts et contributions"
+           }
+          ], 
+          "name": "\u00c9TAT, IMP\u00d4TS RETENUS \u00c0 LA SOURCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges du personnel \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Personnel - autres cr\u00e9diteurs"
+           }, 
+           {
+            "name": "Oppositions sur salaires"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur ventes"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur prestations de services"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur travaux"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. FACTUR\u00c9E"
+         }
+        ], 
+        "name": "\u00c9TAT ET COLLECTIVIT\u00c9S PUBLIQUES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournisseurs - Achats d'immobilisations"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisations - Retenues de garantie"
+           }
+          ], 
+          "name": "Furnizori de imobilizari"
+         }, 
+         {
+          "name": "Efecte de platit pentru imobilizari"
+         }, 
+         {
+          "name": "Fournisseurs et comptes rattach\u00e9s "
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs"
+           }, 
+           {
+            "name": "Fournisseurs Groupe"
+           }, 
+           {
+            "name": "Fournisseurs - Achats de biens et prestations de services"
+           }, 
+           {
+            "name": "Fournisseur, retenues de garantie"
+           }, 
+           {
+            "name": "Fournisseurs sous-traitants"
+           }
+          ], 
+          "name": "FOURNISSEURS, DETTES EN COMPTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs sous-traitants, Effets \u00e0 payer"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe, Effets \u00e0 payer"
+           }, 
+           {
+            "name": "Fournisseurs, Effets \u00e0 payer"
+           }
+          ], 
+          "name": "FOURNISSEURS, EFFETS \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs sous-traitants"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe"
+           }, 
+           {
+            "name": "Fournisseurs - Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Fournisseurs"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisations "
+           }, 
+           {
+            "name": "Fournisseurs, int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "FOURNISSEURS, FACTURES NON PARVENUES"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Fournisseurs d'exploitation", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fournisseurs d'immobilisations", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fournisseurs - Autres avoirs"
+           }, 
+           {
+            "name": "Fournisseurs cr\u00e9ances pour emballages et mat\u00e9riels \u00e0 rendre"
+           }, 
+           {
+            "name": "Fournisseurs avances et acomptes vers\u00e9s"
+           }, 
+           {
+            "name": "Rabais, Remises, Ristournes et autres avoirs \u00e0 obtenir"
+           }, 
+           {
+            "name": "Fournisseurs - Cr\u00e9ances pour emballages et mat\u00e9riel \u00e0 rendre", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournisseurs sous-traitants avances et acomptes vers\u00e9s"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe avances et acomptes vers\u00e9s"
+           }
+          ], 
+          "name": "FOURNISSEURS D\u00c9BITEURS"
+         }, 
+         {
+          "name": "Efecte de platit"
+         }, 
+         {
+          "name": "Furnizori"
+         }
+        ], 
+        "name": "FOURNISSEURS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes sur acquisitions de valeurs mobili\u00e8res de placement", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "ASSOCI\u00c9S, DIVIDENDES \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Charges \u00e0 payer", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Divers - Charges \u00e0 payer et produits \u00e0 recevoir"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Principal"
+           }
+          ], 
+          "name": "ASSOCI\u00c9S, COMPTES COURANTS"
+         }, 
+         {
+          "name": "ASSOCI\u00c9S, OP\u00c9RATIONS FAITES EN COMMUN"
+         }, 
+         {
+          "name": "GROUPE, COMPTES COURANTS"
+         }, 
+         {
+          "name": "ACTIONNAIRES, RESTANT D\u00db SUR CAPITAL APPEL\u00c9"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Associ\u00e9s, versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "name": "Actionnaires, capital souscrit appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Associ\u00e9s, capital appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Actionnaires d\u00e9faillants"
+           }, 
+           {
+            "name": "Associ\u00e9s, autres apports"
+           }, 
+           {
+            "name": "Associ\u00e9s, versements anticip\u00e9s"
+           }, 
+           {
+            "name": "Associ\u00e9s apports en nature"
+           }, 
+           {
+            "name": "Associ\u00e9s apports en num\u00e9raire"
+           }, 
+           {
+            "name": "Associ\u00e9s, capital \u00e0 rembourser"
+           }
+          ], 
+          "name": "ASSOCI\u00c9S, OP\u00c9RATIONS SUR LE CAPITAL"
+         }
+        ], 
+        "name": "ASSOCI\u00c9S ET GROUPE"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres charges \u00e0 payer"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Charges sociales sur cong\u00e9s \u00e0 payer"
+           }, 
+           {
+            "name": "Charges sociales sur gratifications \u00e0 payer"
+           }
+          ], 
+          "name": "ORGANISMES SOCIAUX, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "CAISSES DE RETRAITE COMPL\u00c9MENTAIRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Accidents de travail"
+           }, 
+           {
+            "name": "Autres cotisations sociales"
+           }, 
+           {
+            "name": "Contributia angajatorilor la fondul de asigurare pentru accidente de munca si boli profesionale"
+           }, 
+           {
+            "name": "Caisse de retraite obligatoire"
+           }, 
+           {
+            "name": "Contributia angajatorilor la fondul pentru concedii si indemnizatii"
+           }, 
+           {
+            "name": "Caisse de retraite facultative"
+           }, 
+           {
+            "name": "Prestations familiales"
+           }
+          ], 
+          "name": "S\u00c9CURIT\u00c9 SOCIALE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T.V.A. sur factures \u00e0 \u00e9tablir"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur production livr\u00e9e \u00e0 soi-m\u00eame"
+           }, 
+           {
+            "name": "Mutuelle"
+           }
+          ], 
+          "name": "AUTRES ORGANISMES SOCIAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contributia unitatii la fondul de garantare pentru plata creantelor salariale"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de somaj"
+           }, 
+           {
+            "name": "Contributia personalului la fondul de somaj"
+           }
+          ], 
+          "name": "Ajutor de somaj"
+         }
+        ], 
+        "name": "ORGANISMES SOCIAUX"
+       }
+      ], 
+      "name": "Comptes de tiers"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mobilier", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cheptel", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mat\u00e9riel de transport", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau et mat\u00e9riel informatique ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales agencements am\u00e9nagements divers", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES DROITS ET VALEURS INCORPORELS"
+         }, 
+         {
+          "name": "MARQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de recherche et de d\u00e9veloppement"
+           }, 
+           {
+            "name": "Logiciels"
+           }, 
+           {
+            "name": "Autres droits et valeurs incorporels"
+           }
+          ], 
+          "name": "IMMOBILISATIONS INCORPORELLES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Agencements et am\u00e9nagements du mat\u00e9riel et outillage industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Outillage industriel", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur sol d'autrui", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur sol propre", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Installations complexes sp\u00e9cialis\u00e9es"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur sol propre", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur sol d'autrui", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique"
+           }, 
+           {
+            "name": "Mat\u00e9riel industriel", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "FONDS COMMERCIAL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mijloace de transport"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations non professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Autres ensembles immobiliers"
+             }, 
+             {
+              "name": "Ensembles immobiliers industriels (A, B, ...)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ensembles immobiliers administratifs et commerciaux (A, B, ...)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Echipamente tehnologice (masini, utilaje si instalatii de lucru)"
+           }, 
+           {
+            "name": "Primes de remboursement des obligations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Voies de fer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Voies d'eau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Barrages", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Pistes d'a\u00e9rodromes", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Voies de terre", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ouvrages d'infrastructure"
+           }, 
+           {
+            "name": "Aparate si instalatii de masurare, control si reglare"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales agencements am\u00e9nagements des constructions (m\u00eame ventilation que celle du compte 2131)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Animale si plantatii"
+           }
+          ], 
+          "name": "LOGICIELS"
+         }, 
+         {
+          "name": "INVESTISSEMENTS DE CR\u00c9ATION"
+         }, 
+         {
+          "name": "DROIT AU BAIL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Autres charges \u00e0\u00a0 r\u00e9partir"
+           }, 
+           {
+            "name": "Frais d acquisition des immobilisations"
+           }
+          ], 
+          "name": "BREVETS, LICENCES, CONCESSIONS ET DROITS SIMILAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de publicit\u00e9"
+           }, 
+           {
+            "name": "Frais de prospection"
+           }, 
+           {
+            "name": "Terenuri"
+           }, 
+           {
+            "name": "Amenajari de terenuri"
+           }, 
+           {
+            "name": "Frais d'augmentation du capital"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations non professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Autres ensembles immobiliers"
+             }, 
+             {
+              "name": "Ensembles immobiliers administratifs et commerciaux (A, B, ...)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ensembles immobiliers industriels (A, B, ...)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Terrains b\u00e2tis"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Carri\u00e8res", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Frais sur op\u00e9rations de fusions, scissions et transformations"
+           }, 
+           {
+            "name": "Autres frais pr\u00e9liminaires"
+           }
+          ], 
+          "name": "FRAIS DE RECHERCHE ET DE D\u00c9VELOPPEMENT"
+         }
+        ], 
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pistes d\u2019a\u00e9rodrome"
+           }, 
+           {
+            "name": "Barrages, Digues"
+           }, 
+           {
+            "name": "Voies de terre"
+           }, 
+           {
+            "name": "Voies d\u2019eau"
+           }, 
+           {
+            "name": "Autres"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Outillage"
+             }, 
+             {
+              "name": "Mat\u00e9riel"
+             }
+            ], 
+            "name": "Voies de fer"
+           }
+          ], 
+          "name": "OUVRAGES D\u2019INFRASTRUCTURE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Installations complexes sp\u00e9cialis\u00e9es sur sol propre"
+           }, 
+           {
+            "name": "Installations complexes sp\u00e9cialis\u00e9es sur sol d\u2019autrui"
+           }, 
+           {
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique sur sol d\u2019autrui"
+           }, 
+           {
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique sur sol propre"
+           }
+          ], 
+          "name": "INSTALLATIONS TECHNIQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avances et acomptes vers\u00e9s sur commandes d'immobilisations corporelles"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours de mobilier, mat\u00e9riel de bureau et am\u00e9nagements divers"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours de mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours des installations techniques, mat\u00e9riel et outillage"
+           }, 
+           {
+            "name": "Autres immobilisations corporelles en cours"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours des terrains et constructions"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS ET INSTALLATIONS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres immobilisations corporelles"
+           }, 
+           {
+            "name": "Terrains", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Constructions", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Installations techniques mat\u00e9riel et outillage industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres immobilisations corporelles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES INSTALLATIONS ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immeubles de rapport"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "B\u00e2timents affect\u00e9s au logement du personnel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres b\u00e2timents"
+             }, 
+             {
+              "name": "B\u00e2timents industriels (A,B,,,)"
+             }, 
+             {
+              "name": "B\u00e2timents Administratifs et commerciaux"
+             }
+            ], 
+            "name": "B\u00e2timents industriels"
+           }, 
+           {
+            "name": "B\u00e2timents agricoles"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements des constructions"
+           }, 
+           {
+            "name": "Autres constructions"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES, ADMINISTRATIFS ET COMMERCIAUX SUR SOL D\u2019AUTRUI"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres terrains"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements de terrains"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "B\u00e2timents agricoles"
+           }, 
+           {
+            "name": "B\u00e2timents industriels"
+           }, 
+           {
+            "name": "Immeubles de rapport"
+           }, 
+           {
+            "name": "B\u00e2timents affect\u00e9s au logement du personnel"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES, ADMINISTRATIFS ET COMMERCIAUX SUR SOL PROPRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Agencements, installations et am\u00e9nagements divers (biens n'appartenant pas \u00e0\u00a0 l'entreprise)"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales"
+           }, 
+           {
+            "name": "Mat\u00e9riel informatique"
+           }, 
+           {
+            "name": "Autres"
+           }
+          ], 
+          "name": "AMENAGEMENTS DE BUREAUX"
+         }, 
+         {
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES ET COMMERCIAUX MIS EN CONCESSION"
+         }
+        ], 
+        "name": "B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS CORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres divers"
+           }, 
+           {
+            "name": "Actions"
+           }
+          ], 
+          "name": "Autres titres immobilis\u00e9s"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres de participation"
+           }
+          ], 
+          "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS INCORPORELLES"
+         }
+        ], 
+        "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (groupe)"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des soci\u00e9t\u00e9s en participation"
+           }, 
+           {
+            "name": "Avances \u00e0 des Groupements d'int\u00e9r\u00eat \u00e9conomique (G.I.E.)"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (hors groupe)"
+           }
+          ], 
+          "name": "CR\u00c9ANCES RATTACH\u00c9ES \u00c0 DES PARTICIPATIONS ET AVANCES \u00c0 DES G.I.E."
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00eats au personnel"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur titres immobilis\u00e9s (droits de cr\u00e9ance)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur d\u00e9p\u00f4ts et cautionnements", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur pr\u00eats", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur cr\u00e9ances diverses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Immobilisations financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur l'Etat"
+           }, 
+           {
+            "name": "Pr\u00eats et cr\u00e9ances non commerciales"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9p\u00f4ts pour le gaz"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour l\u2019\u00e9lectricit\u00e9"
+           }, 
+           {
+            "name": "Cautionnements sur autres op\u00e9rations"
+           }, 
+           {
+            "name": "Cautionnements sur march\u00e9s publics"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour le t\u00e9l\u00e9phone, le t\u00e9lex, la t\u00e9l\u00e9copie"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour l\u2019eau"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour loyers d\u2019avance"
+           }, 
+           {
+            "name": "Autres d\u00e9p\u00f4ts et cautionnements"
+           }
+          ], 
+          "name": "D\u00c9P\u00d4TS ET CAUTIONNEMENTS VERS\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Parts de fonds commun de placement (F.C.P.)"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s de l\u2019activit\u00e9 de portefeuille (T.I.A.P.)"
+           }, 
+           {
+            "name": "Titres participatifs"
+           }, 
+           {
+            "name": "Autres titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Certificats d\u2019investissement"
+           }
+          ], 
+          "name": "TITRES IMMOBILIS\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00eats aux associ\u00e9s"
+           }, 
+           {
+            "name": "Titres pr\u00eat\u00e9s"
+           }, 
+           {
+            "name": "Autres titres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Pr\u00eats participatifs"
+           }, 
+           {
+            "name": "Diminution des cr\u00e9ances immobilis\u00e9es"
+           }
+          ], 
+          "name": "PR\u00caTS ET CR\u00c9ANCES NON COMMERCIALES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances divers hors groupe"
+           }, 
+           {
+            "name": "Or et m\u00e9taux pr\u00e9cieux ()"
+           }, 
+           {
+            "name": "Cr\u00e9ances diverses groupe"
+           }
+          ], 
+          "name": "IMMOBILISATIONS FINANCI\u00c8RES DIVERSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Fonds r\u00e9glement\u00e9"
+           }, 
+           {
+            "name": "Autres"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR L\u2019\u00c9TAT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des dettes de financement"
+           }, 
+           {
+            "name": "Pr\u00eats immobiliers"
+           }, 
+           {
+            "name": "Pr\u00eats mobiliers et d\u2019installation"
+           }, 
+           {
+            "name": "Autres pr\u00eats (frais d\u2019\u00e9tudes\u2026)"
+           }
+          ], 
+          "name": "PR\u00caTS AU PERSONNEL"
+         }, 
+         {
+          "name": "Versements restant \u00e0 effectuer sur titres immobilis\u00e9s non lib\u00e9r\u00e9s", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AUTRES IMMOBLISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PARTICIPATIONS DANS DES ORGANISMES PROFESSIONNELS"
+         }, 
+         {
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S CONF\u00c9RANT UNE INFLUENCE NOTABLE"
+         }, 
+         {
+          "name": "Titluri puse in echivalenta"
+         }, 
+         {
+          "name": "PARTS DANS DES GROUPEMENTS D\u2019INT\u00c9R\u00caT \u00c9CONOMIQUE (G.I.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte creante imobilizate"
+           }, 
+           {
+            "name": "Dobanda aferenta creantelor legate de interesele de participare"
+           }, 
+           {
+            "name": "Imprumuturi acordate pe termen lung"
+           }, 
+           {
+            "name": "Dobanda aferenta imprumuturilor acordate pe termen lung"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances rattach\u00e9es \u00e0 des participations ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sume datorate de entitatile afiliate"
+           }, 
+           {
+            "name": "Dobanda aferenta sumelor datorate de entitatile afiliate"
+           }, 
+           {
+            "name": "Creante legate de interesele de participare"
+           }, 
+           {
+            "name": "Dob\u00e2nzi aferente altor creante imobilizate"
+           }
+          ], 
+          "name": "Creante imobilizate"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres titres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S SOUS CONTR\u00d4LE EXCLUSIF"
+         }, 
+         {
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S SOUS CONTR\u00d4LE CONJOINT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES TITRES DE PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Varsaminte de efectuat pentru alte imobilizari financiare"
+           }, 
+           {
+            "name": "Varsaminte de efectuat privind actiunile detinute la entitatile afiliate"
+           }, 
+           {
+            "name": "Varsaminte de efectuat privind interesele de participare"
+           }
+          ], 
+          "name": "Varsaminte de efectuat pentru imobilizari financiare"
+         }
+        ], 
+        "name": "TITRES DE PARTICIPATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel d'emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et outillage industriel et commercial"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations animales et agricoles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et mobilier"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation de mat\u00e9riel en cours"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DE MAT\u00c9RIEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances rattach\u00e9es \u00e0 des participations et avances \u00e0 des GIE"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances immobilis\u00e9es (m\u00eame ventilation que celle du compte 276)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des pr\u00eats au personnel"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des pr\u00eats et cr\u00e9ances non commerciales"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances sur l'Etat"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des d\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES AUTRES IMMOBILISATIONS FINANCI\u00c8RES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans des soci\u00e9t\u00e9s sous contr\u00f4le exclusif"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres titres de participation"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des participations dans des organismes professionnels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des parts dans des GIE"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (m\u00eame ventilation que celle du compte 267)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans les soci\u00e9t\u00e9s sous contr\u00f4le conjoint"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans les soci\u00e9t\u00e9s conf\u00e9rant une influence notable"
+           }, 
+           {
+            "name": "Ajustari pentru pierderea de valoare a sumelor datorate entitatilor afiliate"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES TITRES DE PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea terenurilor si amenajarilor de terenuri"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du droit au bail"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres droits et valeurs incorporels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des logiciels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des marques"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations incorporelles en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des brevets, licences, concessions et droits similaires"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du fonds commercial"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des investissements de cr\u00e9ation"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES IMMOBILISATIONS INCORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea fondului comercial"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea altor imobilizari necorporale"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea concesiunilor, brevetelor, licentelor, marcilor comerciale, drepturilor si activelor similare"
+           }, 
+           {
+            "name": "Droit au bail", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea cheltuielilor de dezvoltare"
+           }
+          ], 
+          "name": "Ajustari pentru deprecierea imobilizarilor necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents et installations en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol propre"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations corporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des installations techniques"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des ouvrages d'infrastructures"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol d'autrui"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles et commerciaux mis en concession"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des am\u00e9nagements de bureaux"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres installations et agencements"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains de gisement"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains nus"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains b\u00e2tis"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres terrains"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains am\u00e9nag\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des travaux de mise en valeur des terrains"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des am\u00e9nagements de terrains en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains mis en concession"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des avances et acomptes vers\u00e9s sur immobilisations incorporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des avances et acomptes vers\u00e9s sur immobilisations corporelles"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS"
+         }
+        ], 
+        "name": "PROVISIONS POUR DEPRECIATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligations convertibles"
+           }, 
+           {
+            "name": "Autres emprunts obligataires"
+           }, 
+           {
+            "name": "Obligations ordinaires"
+           }
+          ], 
+          "name": "PRIMES DE REMBOURSEMENT DES OBLIGATIONS"
+         }, 
+         {
+          "name": "Alte imobilizari necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Charges diff\u00e9r\u00e9es"
+           }, 
+           {
+            "name": "Frais d'acquisition d'immobilisations"
+           }, 
+           {
+            "name": "Charges \u00e0 \u00e9taler"
+           }
+          ], 
+          "name": "CHARGES \u00c0 R\u00c9PARTIR SUR PLUSIEURS EXERCICES"
+         }, 
+         {
+          "name": "Cheltuieli de dezvoltare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de restructuration"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais de publicit\u00e9", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Frais de prospection", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Frais de prospection"
+           }, 
+           {
+            "name": "Frais de fonctionnement ant\u00e9rieurs au d\u00e9marrage"
+           }, 
+           {
+            "name": "Frais d'entr\u00e9e \u00e0 la Bourse"
+           }, 
+           {
+            "name": "Frais de constitution"
+           }, 
+           {
+            "name": "Frais de publicit\u00e9 et de lancement"
+           }, 
+           {
+            "name": "Frais divers d'\u00e9tablissement"
+           }, 
+           {
+            "name": "Frais de modification du capital (fusions, scissions, transformations)"
+           }
+          ], 
+          "name": "FRAIS D'\u00c9TABLISSEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fond comercial negativ"
+           }, 
+           {
+            "name": "Fond comercial pozitiv"
+           }
+          ], 
+          "name": "Fond comercial"
+         }, 
+         {
+          "name": "Concesiuni, brevete, licente, marci comerciale, drepturi si active similare"
+         }
+        ], 
+        "name": "CHARGES IMMOBILIS\u00c9ES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres terrains"
+           }, 
+           {
+            "name": "Terrains nus"
+           }, 
+           {
+            "name": "Terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Terrains de gisement"
+           }
+          ], 
+          "name": "AM\u00c9NAGEMENTS DE TERRAINS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres travaux"
+           }, 
+           {
+            "name": "Plantation d'arbres et d'arbustes"
+           }
+          ], 
+          "name": "TRAVAUX DE MISE EN VALEUR DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Carri\u00e8res"
+           }
+          ], 
+          "name": "TERRAINS DE GISEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Parkings"
+           }
+          ], 
+          "name": "TERRAINS AM\u00c9NAG\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains des logements affect\u00e9s au personnel"
+           }, 
+           {
+            "name": "Terrains des immeubles de rapport"
+           }, 
+           {
+            "name": "Autres terrains"
+           }
+          ], 
+          "name": "AUTRES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains \u00e0 b\u00e2tir"
+           }, 
+           {
+            "name": "Brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "name": "Autres terrains nus"
+           }
+          ], 
+          "name": "TERRAINS NUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fonds commercial"
+           }, 
+           {
+            "name": "pour b\u00e2timents industriels et agricoles"
+           }, 
+           {
+            "name": "pour b\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "pour b\u00e2timents affect\u00e9s aux autres op\u00e9rations professionnelles"
+           }, 
+           {
+            "name": "pour b\u00e2timents affect\u00e9s aux autres op\u00e9rations non professionnelles"
+           }, 
+           {
+            "name": "Autres terrains b\u00e2tis"
+           }
+          ], 
+          "name": "TERRAINS B\u00c2TIS"
+         }, 
+         {
+          "name": "TERRAINS MIS EN CONCESSION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains d'exploitation foresti\u00e8re"
+           }, 
+           {
+            "name": "Immobilisation en recherche et d\u00e9veloppement"
+           }, 
+           {
+            "name": "Terrains d'exploitation agricole"
+           }, 
+           {
+            "name": "Autres terrains"
+           }
+          ], 
+          "name": "TERRAINS AGRICOLES ET FORESTIERS"
+         }
+        ], 
+        "name": "TERRAINS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "MAT\u00c9RIEL D\u2019EMBALLAGE R\u00c9CUP\u00c9RABLE ET IDENTIFIABLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel industriel"
+           }, 
+           {
+            "name": "Outillage commercial"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Autres pr\u00eats"
+           }, 
+           {
+            "name": "Pr\u00eats aux associ\u00e9s"
+           }, 
+           {
+            "name": "Outillage industriel"
+           }, 
+           {
+            "name": "Mat\u00e9riel commercial"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET OUTILLAGE INDUSTRIEL ET COMMERCIAL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel informatique"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier des logements du personnel"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier des immeubles de rapport"
+           }, 
+           {
+            "name": "Mobilier de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel bureautique"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET MOBILIER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bons divers"
+             }, 
+             {
+              "name": "Bons d'\u00e9quipement"
+             }, 
+             {
+              "name": "Obligations"
+             }
+            ], 
+            "name": "Collections et oeuvres d\u2019art"
+           }, 
+           {
+            "name": "Cr\u00e9ances immobilis\u00e9es"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cautionnements"
+             }, 
+             {
+              "name": "D\u00e9p\u00f4ts"
+             }
+            ], 
+            "name": "D\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }
+          ], 
+          "name": "AUTRES MAT\u00c9RIELS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Immobilisations animales et agricoles"
+           }, 
+           {
+            "name": "Mat\u00e9riel d\u2019emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Mat\u00e9riel et outillage industriel et commercial"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres"
+           }, 
+           {
+            "name": "Cheptel, animaux de trait"
+           }, 
+           {
+            "name": "Plantations agricoles"
+           }, 
+           {
+            "name": "Cheptel, animaux reproducteurs"
+           }, 
+           {
+            "name": "Animaux de garde"
+           }
+          ], 
+          "name": "IMMOBILISATIONS ANIMALES ET AGRICOLES"
+         }, 
+         {
+          "name": "AGENCEMENTS ET AM\u00c9NAGEMENTS DU MAT\u00c9RIEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel naval"
+           }, 
+           {
+            "name": "Mat\u00e9riel hippomobile"
+           }, 
+           {
+            "name": "Mat\u00e9riel automobile"
+           }, 
+           {
+            "name": "Mat\u00e9riel ferroviaire"
+           }, 
+           {
+            "name": "Mat\u00e9riel fluvial, lagunaire"
+           }, 
+           {
+            "name": "Mat\u00e9riel a\u00e9rien"
+           }, 
+           {
+            "name": "Autres (v\u00e9lo, mobylette, moto)"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL DE TRANSPORT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel agricole"
+           }, 
+           {
+            "name": "Outillage agricole"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET OUTILLAGE AGRICOLE"
+         }
+        ], 
+        "name": "MAT\u00c9RIEL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortissements des autres droits et valeurs incorporels"
+           }, 
+           {
+            "name": "Amortissements des investissements de cr\u00e9ation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des frais pr\u00e9liminaires au d\u00e9marrage"
+             }, 
+             {
+              "name": "Amortissements des frais de prospection"
+             }, 
+             {
+              "name": "Amortissements des frais de publicit\u00e9"
+             }, 
+             {
+              "name": "Amortissements des frais sur op\u00e9rations de fusions, scissions, et transformations"
+             }, 
+             {
+              "name": "Amortissements des frais d'augmentation du capital"
+             }, 
+             {
+              "name": "Amortissements des frais de constitution"
+             }, 
+             {
+              "name": "Amortissements des autres frais pr\u00e9liminaires"
+             }
+            ], 
+            "name": "Amortissements des frais de recherche et de d\u00e9veloppement"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des frais d'acquisition des immobilisations"
+             }, 
+             {
+              "name": "Amortissements des frais d'\u00e9mission des emprunts"
+             }, 
+             {
+              "name": "Amortissements des autres charges \u00e0\u00a0 r\u00e9partir"
+             }
+            ], 
+            "name": "Amortissements des brevets, licences, concessions et droits similaires"
+           }, 
+           {
+            "name": "Amortissements du droit au bail"
+           }, 
+           {
+            "name": "Amortissements des logiciels"
+           }, 
+           {
+            "name": "Amortissements des marques"
+           }, 
+           {
+            "name": "Amortissements du fonds commercial"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES IMMOBILISATIONS INCORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements des autres immobilisations incorporelles"
+           }, 
+           {
+            "name": "Amortissements des terrains de gisement"
+           }, 
+           {
+            "name": "Amortissements des terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Amortissements du fonds commercial"
+           }, 
+           {
+            "name": "Amortissements des brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "name": "Amortissements des travaux de mise en valeur des terrains"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Amortissements des installations techniques"
+             }, 
+             {
+              "name": "Amortissements du mat\u00e9riel et outillage"
+             }, 
+             {
+              "name": "Amortissements des emballages r\u00e9cup\u00e9rables identifiables"
+             }, 
+             {
+              "name": "Amortissements des autres installations techniques, mat\u00e9riel et outillage"
+             }
+            ], 
+            "name": "Amortissements des ouvrages d'infrastructure"
+           }, 
+           {
+            "name": "Amortissements des b\u00e2timents industriels, agricoles et commerciaux mis en concession"
+           }, 
+           {
+            "name": "Amortissements des autres installations et agencements"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des b\u00e2timents"
+             }, 
+             {
+              "name": "Amortissements des constructions sur terrains d'autrui"
+             }, 
+             {
+              "name": "Amortissements des ouvrages d'infrastructure"
+             }, 
+             {
+              "name": "Amortissements des installations, agencements et am\u00e9nagements des constructions"
+             }, 
+             {
+              "name": "Amortissements des autres constructions"
+             }
+            ], 
+            "name": "Amortissements des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol d'autrui"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des autres terrains"
+             }, 
+             {
+              "name": "Amortissements des terrains nus"
+             }, 
+             {
+              "name": "Amortissements des terrains am\u00e9nag\u00e9s"
+             }, 
+             {
+              "name": "Amortissements des terrains b\u00e2tis"
+             }, 
+             {
+              "name": "Amortissements des terrains de gisement"
+             }, 
+             {
+              "name": "Amortissements des agencements et am\u00e9nagements de terrains"
+             }
+            ], 
+            "name": "Amortissements des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol propre"
+           }, 
+           {
+            "name": "Amortissements des installations techniques"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements du mat\u00e9riel informatique"
+             }, 
+             {
+              "name": "Amortissements des agencements, installations et am\u00e9nagements divers"
+             }, 
+             {
+              "name": "Amortissements du mobilier de bureau"
+             }, 
+             {
+              "name": "Amortissements du mat\u00e9riel de bureau"
+             }, 
+             {
+              "name": "Amortissements des autres mobilier, mat\u00e9riel de bureau et am\u00e9nagements divers"
+             }
+            ], 
+            "name": "Amortissements des am\u00e9nagements de bureaux"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizarea altor imobilizari necorporale"
+           }, 
+           {
+            "name": "Amortizarea concesiunilor, brevetelor, licentelor, marcilor comerciale, drepturilor si activelor similare"
+           }, 
+           {
+            "name": "Amortizarea cheltuielilor de dezvoltare"
+           }, 
+           {
+            "name": "Amortizarea cheltuielilor de constituire"
+           }, 
+           {
+            "name": "Amortizarea fondului comercial"
+           }
+          ], 
+          "name": "Amortizari privind amortizarile necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements du mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel d'emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel et outillage industriel et commercial"
+           }, 
+           {
+            "name": "Amortissements des agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel et mobilier"
+           }, 
+           {
+            "name": "Amortissements des autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Amortissements des immobilisations animales et agricoles"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DU MAT\u00c9RIEL"
+         }
+        ], 
+        "name": "AMORTISSEMENTS"
+       }
+      ], 
+      "name": "Comptes d'immobilisations"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances immobilis\u00e9es"
+           }
+          ], 
+          "name": "Augmentation des cr\u00e9ances immobilis\u00e9es"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des dettes de financement"
+           }
+          ], 
+          "name": "EMPRUNTS \u00c9QUIVALENTS DE CR\u00c9DIT - BAIL IMMOBILIER"
+         }, 
+         {
+          "name": "EMPRUNTS \u00c9QUIVALENTS DE CR\u00c9DIT - BAIL MOBILIER"
+         }, 
+         {
+          "name": "Dettes rattach\u00e9es \u00e0 des participations (hors groupe)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur emprunts \u00e9quivalents d\u2019autres contrats"
+           }, 
+           {
+            "name": "sur emprunts \u00e9quivalents de cr\u00e9dit \u2013 bail mobilier"
+           }, 
+           {
+            "name": "sur emprunts \u00e9quivalents de cr\u00e9dit \u2013 bail immobilier"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "EMPRUNTS \u00c9QUIVALENTS D\u2019AUTRES CONTRATS"
+         }
+        ], 
+        "name": "DETTES DE CR\u00c9DIT - BAIL ET CONTRATS ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9sultat de l'exercice (b\u00e9n\u00e9fice)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "REPORT \u00c0 NOUVEAU CR\u00c9DITEUR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Perte - Amortissements r\u00e9put\u00e9s diff\u00e9r\u00e9s"
+           }, 
+           {
+            "name": "Perte nette \u00e0 reporter"
+           }
+          ], 
+          "name": "REPORT \u00c0 NOUVEAU D\u00c9BITEUR"
+         }
+        ], 
+        "name": "REPORT \u00c0 NOUVEAU"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PROVISIONS POUR PERTES DE CHANGE"
+         }, 
+         {
+          "name": "PROVISIONS POUR LITIGES"
+         }, 
+         {
+          "name": "PROVISIONS POUR PERTES SUR MARCH\u00c9S \u00c0 ACH\u00c8VEMENT FUTUR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres provisions financi\u00e8res pour risques et charges"
+           }, 
+           {
+            "name": "Provisions de propre assureur"
+           }, 
+           {
+            "name": "Provisions pour renouvellement des immobilisations (entreprises concessionnaires)"
+           }, 
+           {
+            "name": "Provisions pour amendes et p\u00e9nalit\u00e9s"
+           }
+          ], 
+          "name": "AUTRES PROVISIONS FINANCI\u00c8RES POUR RISQUES ET CHARGES"
+         }, 
+         {
+          "name": "PROVISIONS POUR PENSIONS ET OBLIGATIONS SIMILAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour grosses r\u00e9parations"
+           }
+          ], 
+          "name": "PROVISIONS POUR CHARGES \u00c0 REPARTIR SUR PLUSIEURS EXERCICES"
+         }, 
+         {
+          "name": "PROVISIONS POUR IMP\u00d4TS"
+         }, 
+         {
+          "name": "PROVISIONS POUR GARANTIES DONN\u00c9ES AUX CLIENTS"
+         }
+        ], 
+        "name": "PROVISIONS FINANCIERES POUR RISQUES ET CHARGES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hausse des prix", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Fluctuation des cours", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Provisions r\u00e9glement\u00e9es relatives aux stocks"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour investissement (participation des salari\u00e9s)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Provisions reconstitution des gisements miniers et p\u00e9troliers", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "SUBVENTIONS D'\u00c9QUIPEMENT B"
+         }, 
+         {
+          "name": "Plus-values r\u00e9investies", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9p\u00f4ts et cautionnements re\u00e7ues"
+           }, 
+           {
+            "name": "Avances de l'Etat"
+           }, 
+           {
+            "name": "Dettes de financement diverses"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Avances re\u00e7ues et comptes courants bloqu\u00e9s"
+           }, 
+           {
+            "name": "Dettes rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "name": "Emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisation"
+           }
+          ], 
+          "name": "AUTRES SUBVENTIONS D'INVESTISSEMENT"
+         }, 
+         {
+          "name": "Amortissements d\u00e9rogatoires", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Provision sp\u00e9ciale de r\u00e9\u00e9valuation", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pierderi legate de emiterea, rascumpararea, vanzarea, cedarea cu titlu gratuit sau anularea instrumentelor de capitaluri proprii."
+         }, 
+         {
+          "name": "Provisions r\u00e9glement\u00e9es relatives aux autres \u00e9l\u00e9ments de l'actif", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres"
+           }, 
+           {
+            "name": "\u00c9tat"
+           }, 
+           {
+            "name": "Emprunts obligataires"
+           }, 
+           {
+            "name": "D\u00e9partements"
+           }, 
+           {
+            "name": "R\u00e9gions"
+           }, 
+           {
+            "name": "Entreprises publiques ou mixtes"
+           }, 
+           {
+            "name": "Organismes internationaux"
+           }, 
+           {
+            "name": "Entreprises et organismes priv\u00e9s"
+           }, 
+           {
+            "name": "Communes et collectivit\u00e9s publiques d\u00e9centralis\u00e9es"
+           }
+          ], 
+          "name": "SUBVENTIONS D'\u00c9QUIPEMENT A"
+         }
+        ], 
+        "name": "SUBVENTIONS D'INVESTISSEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PLUS-VALUES DE CESSION \u00c0 R\u00c9INVESTIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour remises en \u00e9tat", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AUTRES PROVISIONS ET FONDS R\u00c9GLEMENTES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9l\u00e8vement pour le Budget"
+           }, 
+           {
+            "name": "Fonds National"
+           }
+          ], 
+          "name": "FONDS R\u00c9GLEMENT\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte provizioane"
+           }, 
+           {
+            "name": "Provizioane pentru pensii si obligatii similare"
+           }, 
+           {
+            "name": "Provizioane pentru litigii"
+           }, 
+           {
+            "name": "Provizioane pentru garantii acordate clientilor"
+           }, 
+           {
+            "name": "Provizioane pentru dezafectare imobilizari corporale si alte actiuni legate de acestea"
+           }, 
+           {
+            "name": "Provizioane pentru restructurare"
+           }, 
+           {
+            "name": "Provizioane pentru impozite"
+           }
+          ], 
+          "name": "AMORTISSEMENTS D\u00c9ROGATOIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hausse de prix"
+           }, 
+           {
+            "name": "Fluctuation des cours"
+           }
+          ], 
+          "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES RELATIVES AUX STOCKS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour gros entretien ou grandes r\u00e9visions ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PROVISIONS POUR INVESTISSEMENT"
+         }, 
+         {
+          "name": "PROVISION SP\u00c9CIALE DE R\u00c9\u00c9VALUATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reconstitution des gisements miniers et p\u00e9troliers"
+           }, 
+           {
+            "name": "Autres provisions pour charges"
+           }, 
+           {
+            "name": "Provisions pour charges \u00e0\u00a0 r\u00e9partir sur plusieurs exercices"
+           }, 
+           {
+            "name": "Provisions pour pensions de retraite et obligations similaires"
+           }
+          ], 
+          "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES RELATIVES AUX IMMOBILISATIONS"
+         }
+        ], 
+        "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES ET FONDS ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "COMPTES PERMANENTS NON BLOQU\u00c9S DES \u00c9TABLISSEMENTS ET SUCCURSALES"
+         }, 
+         {
+          "name": "INT\u00c9R\u00caTS COURUS SUR DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS"
+         }, 
+         {
+          "name": "COMPTES PERMANENTS BLOQU\u00c9S DES \u00c9TABLISSEMENTS ET SUCCURSALES"
+         }, 
+         {
+          "name": "DETTES LI\u00c9ES \u00c0 DES SOCI\u00c9T\u00c9S EN PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations (groupe)"
+           }, 
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations (hors groupe)"
+           }
+          ], 
+          "name": "DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON PRODUITS"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON CHARGES"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON DES SOCI\u00c9T\u00c9S EN PARTICIPATION"
+         }
+        ], 
+        "name": "DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS ET COMPTES DE LIAISON DES ETABLISSEMENTS ET SOCI\u00c9T\u00c9S EN PARTICIPATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres dotations"
+           }, 
+           {
+            "name": "Dotation initiale"
+           }, 
+           {
+            "name": "Dotations compl\u00e9mentaires"
+           }
+          ], 
+          "name": "CAPITAL PAR DOTATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actiuni proprii detinute pe termen lung"
+           }, 
+           {
+            "name": "Actiuni proprii detinute pe termen scurt"
+           }
+          ], 
+          "name": "ACTIONNAIRES, CAPITAL SOUSCRIT, NON APPEL\u00c9"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Interese care nu controleaza - alte capitaluri proprii"
+           }, 
+           {
+            "name": "Interese care nu controleaza - rezultatul exercitiului financiar"
+           }
+          ], 
+          "name": "Interese care nu controleaza"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres primes"
+           }, 
+           {
+            "name": "Primes de fusion"
+           }, 
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation (autres op\u00e9rations l\u00e9gales)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Primes d'\u00e9mission"
+           }, 
+           {
+            "name": "Primes de conversion"
+           }, 
+           {
+            "name": "Autres \u00e9carts de r\u00e9\u00e9valuation en France", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Primes d'apport"
+           }
+          ], 
+          "name": "PRIMES LI\u00c9ES AUX CAPITAUX PROPRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9mun\u00e9rations, imp\u00f4ts et autres charges personnelles"
+           }, 
+           {
+            "name": "Pr\u00e9l\u00e8vements d\u2019autoconsommation"
+           }, 
+           {
+            "name": "Bons de souscription d'actions", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres pr\u00e9l\u00e8vements"
+           }, 
+           {
+            "name": "Op\u00e9rations courantes"
+           }, 
+           {
+            "name": "Prime de conversie a obligatiunilor in actiuni"
+           }, 
+           {
+            "name": "Apports temporaires"
+           }
+          ], 
+          "name": "COMPTE DE L'EXPLOITANT"
+         }, 
+         {
+          "name": "Rezerve din conversie"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Patrimoniul regiei"
+           }, 
+           {
+            "name": "Capital souscrit, non appel\u00e9"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Capital amorti", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Capital non amorti", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Capital souscrit, appel\u00e9, vers\u00e9, non amorti"
+           }, 
+           {
+            "name": "Capital souscrit, appel\u00e9, vers\u00e9, amorti"
+           }, 
+           {
+            "name": "Patrimoniul public"
+           }, 
+           {
+            "name": "Capital souscrit, appel\u00e9, non vers\u00e9"
+           }, 
+           {
+            "name": "Capital souscrit soumis \u00e0 des conditions particuli\u00e8res"
+           }
+          ], 
+          "name": "CAPITAL SOCIAL"
+         }, 
+         {
+          "name": "CAPITAL PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation libre"
+           }, 
+           {
+            "name": "Rezerve statutare sau contractuale"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00e9serves diverses", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serve de propre assureur", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Alte rezerve"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Plus-values nettes \u00e0 long terme", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serve l\u00e9gale proprement dite", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "\u00c9carts de r\u00e9\u00e9valuation l\u00e9gale"
+           }, 
+           {
+            "name": "Rezerve din diferente de curs valutar in relatie cu investitia neta intr-o entitate straina"
+           }, 
+           {
+            "name": "Rezerve reprezentand surplusul realizat din rezerve din reevaluare"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres r\u00e9serves r\u00e9glement\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Plus-values nettes \u00e0 long terme", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serves cons\u00e9cutives \u00e0 l'octroi de subventions d'investissement", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Rezerve de valoare justa"
+           }
+          ], 
+          "name": "\u00c9CARTS DE R\u00c9\u00c9VALUATION"
+         }
+        ], 
+        "name": "CAPITAL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Rezultatul reportat provenit din trecerea la aplicarea Reglementarilor contabile conforme cu Directiva a patra a Comunitatilor Economice Europene"
+           }, 
+           {
+            "name": "Rezultatul reportat provenit din corectarea erorilor contabile"
+           }, 
+           {
+            "name": "Rezultatul reportat provenit din adoptarea pentru prima data a IAS, mai pu\u00fein IAS 29"
+           }, 
+           {
+            "name": "Rezultatul reportat reprezentand profitul nerepartizat sau pierderea neacoperita"
+           }
+          ], 
+          "name": "Rezultatul reportat"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serve l\u00e9gale"
+           }
+          ], 
+          "name": "R\u00e9serve l\u00e9gale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Primes d'\u00e9mission"
+           }, 
+           {
+            "name": "Primes de fusion"
+           }, 
+           {
+            "name": "Primes d'apport"
+           }
+          ], 
+          "name": "R\u00c9SERVES STATUTAIRES OU CONTRACTUELLES"
+         }, 
+         {
+          "name": "Report \u00e0 nouveau (solde cr\u00e9diteur)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionnaires, capital souscrit-non appel\u00e9"
+           }, 
+           {
+            "name": "Capital social"
+           }, 
+           {
+            "name": "Fonds de dotation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Capital individuel"
+             }, 
+             {
+              "name": "Compte de l'exploitant"
+             }
+            ], 
+            "name": "Capital personnel"
+           }
+          ], 
+          "name": "R\u00c9SERVE L\u00c9GALE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves facultatives"
+           }, 
+           {
+            "name": "R\u00e9sultats nets en instance d'affectation (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "R\u00e9serves diverses"
+           }
+          ], 
+          "name": "AUTRES R\u00c9SERVES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9sultat net de l'exercice (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "R\u00e9sultat net de l'exercice (solde cr\u00e9diteur)"
+           }
+          ], 
+          "name": "R\u00e9sultat net de l'exercice"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves cons\u00e9cutives \u00e0 l'octroi de subventions d'investissement"
+           }, 
+           {
+            "name": "Autres r\u00e9serves r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "R\u00e9serves de plus-values nettes \u00e0 long terme"
+           }, 
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation"
+           }
+          ], 
+          "name": "R\u00c9SERVES R\u00c9GLEMENT\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "R\u00e9serves statutaires ou contractuelles"
+           }, 
+           {
+            "name": "R\u00e9serves facultatives"
+           }
+          ], 
+          "name": "Autres r\u00e9serves"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Report \u00e0\u00a0 nouveau (solde cr\u00e9diteur)"
+           }, 
+           {
+            "name": "Report \u00e0\u00a0 nouveau (solde d\u00e9biteur)"
+           }
+          ], 
+          "name": "Report \u00e0\u00a0 nouveau"
+         }
+        ], 
+        "name": "R\u00c9SERVES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "VALEUR AJOUT\u00c9E (V.A.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres subventions d'investissement (m\u00eame ventilation que celle du compte 1391)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises publiques", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises et organismes priv\u00e9s ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9gions", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "D\u00e9partements", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Collectivit\u00e9s publiques", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Communes", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Subventions d'\u00e9quipement"
+           }
+          ], 
+          "name": "R\u00c9SULTAT NET : PERTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres provisions r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "Provisions pour plus-values en instance d'imposition"
+           }, 
+           {
+            "name": "Provisions pour amortissements d\u00e9rogatoires"
+           }, 
+           {
+            "name": "Provisions pour investissements"
+           }, 
+           {
+            "name": "Provisions pour reconstitution des gisements"
+           }, 
+           {
+            "name": "Provisions pour acquisition et construction de logements"
+           }
+          ], 
+          "name": "R\u00c9SULTAT D'EXPLOITATION (R.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'investissement re\u00e7ues"
+           }, 
+           {
+            "name": "Subventions d'investissement inscrites au CPC"
+           }, 
+           {
+            "name": "Entreprises publiques", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Entreprises et organismes priv\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Communes", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Collectivit\u00e9s publiques", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00e9gions", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "D\u00e9partements", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "R\u00c9SULTAT NET : B\u00c9N\u00c9FICE"
+         }, 
+         {
+          "name": "R\u00c9SULTAT HORS ACTIVIT\u00c9S ORDINAIRES (R.H.A.O.)"
+         }, 
+         {
+          "name": "EXC\u00c9DENT BRUT D'EXPLOITATION (E.B.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9sultat en instance d'affectation : Perte"
+           }, 
+           {
+            "name": "R\u00e9sultat en instance d'affectation : B\u00e9n\u00e9fice"
+           }
+          ], 
+          "name": "R\u00c9SULTAT EN INSANCE D\u2019AFFECTATION"
+         }, 
+         {
+          "name": "R\u00c9SULTAT FINANCIER (R.F.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marge brute sur mati\u00e8res"
+           }, 
+           {
+            "name": "Marge brute sur marchandises"
+           }
+          ], 
+          "name": "MARGE BRUTE (M.B.)"
+         }, 
+         {
+          "name": "R\u00c9SULTAT DES ACTIVIT\u00c9S ORDINAIRES (R.A.O.)"
+         }
+        ], 
+        "name": "R\u00c9SULTAT NET DE L'EXERCICE"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Comptes de liaison des \u00e9tablissements"
+           }, 
+           {
+            "name": "Comptes de liaison du si\u00e8ge"
+           }
+          ], 
+          "name": "Comptes de liaison des \u00e9tablissements et succursales"
+         }, 
+         {
+          "name": "AVANCES RE\u00c7UES DE L'\u00c9TAT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Credite bancare pe termen lung nerambursate la scadenta"
+           }, 
+           {
+            "name": "Credite externe guvernamentale"
+           }, 
+           {
+            "name": "Credite bancare externe garantate de banci"
+           }, 
+           {
+            "name": "Credite bancare externe garantate de stat"
+           }, 
+           {
+            "name": "Credite bancare pe termen lung"
+           }, 
+           {
+            "name": "Credite de la trezoreria statului"
+           }, 
+           {
+            "name": "Credite bancare interne garantate de stat"
+           }
+          ], 
+          "name": "EMPRUNTS ET DETTES AUPR\u00c8S DES \u00c9TABLISSEMENTS DE CR\u00c9DIT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imprumuturi interne din emisiuni de obligatiuni garantate de stat"
+           }, 
+           {
+            "name": "Imprumuturi externe din emisiuni de obligatiuni garantate de banci"
+           }, 
+           {
+            "name": "Emprunts obligataires convertibles"
+           }, 
+           {
+            "name": "Autres emprunts obligataires"
+           }, 
+           {
+            "name": "Imprumuturi externe din emisiuni de obligatiuni garantate de stat"
+           }, 
+           {
+            "name": "Emprunts obligataires ordinaires"
+           }
+          ], 
+          "name": "EMPRUNTS OBLIGATAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avances bloqu\u00e9es pour augmentation du capital"
+           }, 
+           {
+            "name": "Droits du conc\u00e9dant exigibles en nature"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par l'\u00c9tat"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par les organismes internationaux"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par les autres organismes africains"
+           }, 
+           {
+            "name": "Emprunts participatifs", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AVANCES ASSORTIES DE CONDITIONS PARTICULI\u00c8RES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur autres emprunts et dettes"
+           }, 
+           {
+            "name": "sur avances re\u00e7ues et comptes courants bloqu\u00e9s"
+           }, 
+           {
+            "name": "sur d\u00e9p\u00f4ts et cautionnements re\u00e7us"
+           }, 
+           {
+            "name": "sur emprunts et dettes aupr\u00e8s des \u00e9tablissements de cr\u00e9dit"
+           }, 
+           {
+            "name": "sur avances re\u00e7ues de l'\u00c9tat"
+           }, 
+           {
+            "name": "sur avances assorties de conditions particuli\u00e8res"
+           }, 
+           {
+            "name": "sur emprunts obligataires"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cautionnements"
+           }, 
+           {
+            "name": "Cautionnements", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts"
+           }
+          ], 
+          "name": "D\u00c9P\u00d4TS ET CAUTIONNEMENTS RECUS"
+         }, 
+         {
+          "name": "AVANCES RE\u00c7UES ET COMPTES COURANTS BLOQU\u00c9S"
+         }, 
+         {
+          "name": "Prime privind rambursarea obligatiunilor"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente altor imprumuturi si datorii asimilate"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur participation des salari\u00e9s aux r\u00e9sultats", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur d\u00e9p\u00f4ts et cautionnements re\u00e7us", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur autres emprunts et dettes assimil\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts et dettes assortis de conditions particuli\u00e8res", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts obligataires convertibles ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur autres emprunts obligataires", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Dettes cons\u00e9cutives \u00e0 des titres emprunt\u00e9s"
+           }, 
+           {
+            "name": "Emprunts participatifs"
+           }, 
+           {
+            "name": "Rentes viag\u00e8res capitalis\u00e9es"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Dettes du conc\u00e9dant exigibles en nature"
+           }, 
+           {
+            "name": "Participation des travailleurs aux b\u00e9n\u00e9fices"
+           }
+          ], 
+          "name": "AUTRES EMPRUNTS ET DETTES"
+         }
+        ], 
+        "name": "EMPRUNTS ET DETTES ASSIMIL\u00c9ES"
+       }
+      ], 
+      "name": "Comptes de capitaux"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }, 
+           {
+            "name": "en devises"
+           }
+          ], 
+          "name": "CAISSE SUCCURSALE B"
+         }, 
+         {
+          "children": [
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }, 
+           {
+            "name": "en devises"
+           }
+          ], 
+          "name": "CAISSE SUCCURSALE A"
+         }, 
+         {
+          "children": [
+           {
+            "name": "en devises"
+           }, 
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }
+          ], 
+          "name": "CAISSE SI\u00c8GE SOCIAL"
+         }
+        ], 
+        "name": "CAISSE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "BANQUES, CREDITS DE TRESORERIE, INTERETS COURUS"
+         }, 
+         {
+          "name": "ESCOMPTE DE CR\u00c9DITS ORDINAIRES"
+         }, 
+         {
+          "name": "ESCOMPTE DE CR\u00c9DITS DE CAMPAGNE"
+         }, 
+         {
+          "name": "CR\u00c9DITS DE TR\u00c9SORERIE"
+         }
+        ], 
+        "name": "BANQUES, CR\u00c9DITS DE TR\u00c9SORERIE ET D'ESCOMPTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACCR\u00c9DITIFS"
+         }, 
+         {
+          "name": "VIREMENTS DE FONDS"
+         }, 
+         {
+          "name": "R\u00c9GIES D'AVANCE"
+         }, 
+         {
+          "name": "AUTRES VIREMENTS INTERNES"
+         }
+        ], 
+        "name": "R\u00c9GIES D'AVANCES, ACCR\u00c9DITIFS ET VIREMENTS INTERNES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "RISQUES PROVISIONN\u00c9S \u00c0 CARACT\u00c8RE FINANCIER"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES BANQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Autres valeurs mobili\u00e8res de placement et cr\u00e9ances assimil\u00e9es (provisions)"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de propri\u00e9t\u00e9 "
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES TITRES ET VALEURS \u00c0 ENCAISSER"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a obligatiunilor emise si recuperate"
+         }, 
+         {
+          "name": "Autres charges financi\u00e8res des exercices ant\u00e9rieurs"
+         }, 
+         {
+          "name": "Charges nettes sur cession de titres et valeurs de placement"
+         }, 
+         {
+          "name": "Escomptes accord\u00e9s"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES \u00c9TABLISSEMENTS FINANCIERS ET ASSIMIL\u00c9S"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a obligatiunilor"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES D\u2019INSTRUMENTS DE TR\u00c9SORERIE"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a altor invesitii pe termen scurt si creante asimilate"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS ET RISQUES PROVISIONN\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Alte titluri de plasament"
+           }, 
+           {
+            "name": "Dobanzi la obligatiuni si alte titluri de plasament"
+           }, 
+           {
+            "name": "Bons de souscription"
+           }
+          ], 
+          "name": "AUTRES VALEURS ASSIMIL\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Varsaminte de efctuat pentru alte investitii pe termen scurt"
+           }, 
+           {
+            "name": "Varsaminte de efctuat pentru actiunile detinute la institutiile afiliate"
+           }
+          ], 
+          "name": "Varsaminte de efctuat pentru investitiile pe termen scurt"
+         }, 
+         {
+          "name": "TITRES N\u00c9GOCIABLES HORS REGION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bons de souscription d'actions"
+           }, 
+           {
+            "name": "Bons de souscription d'obligations"
+           }
+          ], 
+          "name": "BONS DE SOUSCRIPTION"
+         }, 
+         {
+          "name": "Bons du Tr\u00e9sor et bons de caisse \u00e0 court terme"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions"
+           }, 
+           {
+            "name": "Titres du Tr\u00e9sor et bons de caisse \u00e0 court terme"
+           }, 
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Titres non cot\u00e9s"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bons de caisse \u00e0 court terme"
+           }, 
+           {
+            "name": "Titres du Tr\u00e9sor \u00e0 court terme"
+           }, 
+           {
+            "name": "Titres d'organismes financiers"
+           }
+          ], 
+          "name": "TITRES DU TR\u00c9SOR ET BONS DE CAISSE \u00c0 COURT TERME"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligations cot\u00e9es"
+           }, 
+           {
+            "name": "Obligations \u00e9mises par la soci\u00e9t\u00e9 et rachet\u00e9es par elle"
+           }, 
+           {
+            "name": "Obligations non cot\u00e9es"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de cr\u00e9ance"
+           }
+          ], 
+          "name": "OBLIGATIONS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions cot\u00e9es"
+           }, 
+           {
+            "name": "Actions propres"
+           }, 
+           {
+            "name": "Actions d\u00e9membr\u00e9es (certificats d'investissement ; droits de vote)"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de propri\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Actions non cot\u00e9es"
+           }
+          ], 
+          "name": "ACTIONS"
+         }
+        ], 
+        "name": "TITRES DE PLACEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Sume in curs de decontare"
+           }, 
+           {
+            "name": "Conturi la banci in valuta"
+           }, 
+           {
+            "name": "Conturi la banci in lei"
+           }
+          ], 
+          "name": "Conturi curente la banci"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Coupons \u00e9chus"
+           }, 
+           {
+            "name": "Ch\u00e8ques de voyage"
+           }, 
+           {
+            "name": "Warrants"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats \u00e9chus des obligations"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus \u00e0 recevoir"
+           }
+          ], 
+          "name": "AUTRES VALEURS \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "name": "EFFETS \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9gies d'avances et accr\u00e9ditifs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Caisse (succursale ou agence B)"
+             }, 
+             {
+              "name": "Caisse Centrale"
+             }, 
+             {
+              "name": "Caisse (succursale ou agence A)"
+             }
+            ], 
+            "name": "Caisses"
+           }
+          ], 
+          "name": "Caisses, r\u00e9gies d'avances et accr\u00e9ditifs"
+         }, 
+         {
+          "name": "Autres organismes financiers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tr\u00e9sorerie G\u00e9n\u00e9rale"
+           }, 
+           {
+            "name": "Banques (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "Autres \u00e9tablissements financiers et assimil\u00e9s (soldes d\u00e9biteurs)"
+           }, 
+           {
+            "name": "Ch\u00e8ques postaux"
+           }
+          ], 
+          "name": "CH\u00c8QUES \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "name": "Banques"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente creditelor pe termen scurt"
+           }, 
+           {
+            "name": "Credite externe garantate de stat"
+           }, 
+           {
+            "name": "Credite externe garantate de banci"
+           }, 
+           {
+            "name": "Credite de la trezoreria statului"
+           }, 
+           {
+            "name": "Credite interne garantate de stat"
+           }, 
+           {
+            "name": "Credite bancare pe termen scurt"
+           }, 
+           {
+            "name": "Credite bancare pe termen scurt nerambursate la scadenta"
+           }, 
+           {
+            "name": "Credite externe guvernamentale"
+           }
+          ], 
+          "name": "Credite bancare pe termen scurt"
+         }, 
+         {
+          "name": "CARTES DE CR\u00c9DIT \u00c0 ENCAISSER"
+         }, 
+         {
+          "name": "CH\u00c8QUES \u00c0 ENCAISSER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres valeurs \u00e0\u00a0 encaisser"
+           }, 
+           {
+            "name": "Efecte remise spre scontare"
+           }, 
+           {
+            "name": "Virement de fonds"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ch\u00e8ques \u00e0\u00a0 l'encaissement"
+             }, 
+             {
+              "name": "Ch\u00e8ques en portefeuille"
+             }
+            ], 
+            "name": "Ch\u00e8ques \u00e0\u00a0 encaisser ou \u00e0\u00a0 l'encaissement"
+           }, 
+           {
+            "name": "Cecuri de incasat"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Effets \u00e9chus \u00e0\u00a0 encaisser"
+             }, 
+             {
+              "name": "Effets \u00e0\u00a0 l'encaissement"
+             }
+            ], 
+            "name": "Efecte de incasat"
+           }
+          ], 
+          "name": "EFFETS \u00c0 ENCAISSER"
+         }
+        ], 
+        "name": "VALEURS \u00c0 ENCAISSER"
+       }, 
+       {
+        "children": [
+         {
+          "name": "BANQUES AUTRES \u00c9TATS REGION"
+         }, 
+         {
+          "name": "BANQUES, INTERETS COURUS"
+         }, 
+         {
+          "name": "BANQUES HORS ZONE MONETAIRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "BANQUE Y"
+           }, 
+           {
+            "name": "BANQUES X"
+           }
+          ], 
+          "name": "BANQUES LOCALES"
+         }, 
+         {
+          "name": "BANQUES AUTRES ETATS ZONE MONETAIRE"
+         }
+        ], 
+        "name": "BANQUES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Casa in lei"
+           }, 
+           {
+            "name": "Casa in valuta"
+           }
+          ], 
+          "name": "CH\u00c8QUES POSTAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte valori"
+           }, 
+           {
+            "name": "Timbre fiscale si postale"
+           }, 
+           {
+            "name": "Tichete si bilete de calatorie"
+           }, 
+           {
+            "name": "Bilete de tratament si odihna"
+           }
+          ], 
+          "name": "TR\u00c9SOR"
+         }, 
+         {
+          "name": "SOCI\u00c9T\u00c9S DE GESTION ET D'INTERM\u00c9DIATION (S.G.I.)"
+         }, 
+         {
+          "name": "ETABLISSEMENTS FINANCIERS, INTERETS COURUS"
+         }, 
+         {
+          "name": "AUTRES ORGANISMES FINANCIERS"
+         }
+        ], 
+        "name": "\u00c9TABLISSEMENTS FINANCIERS ET ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreditive in valuta"
+           }, 
+           {
+            "name": "Acreditive in lei"
+           }
+          ], 
+          "name": "OPTIONS DE TAUX D'INT\u00c9R\u00caT"
+         }, 
+         {
+          "name": "OPTIONS DE TAUX BOURSIERS"
+         }, 
+         {
+          "name": "AVOIRS D'OR ET AUTRES M\u00c9TAUX PR\u00c9CIEUX ()"
+         }, 
+         {
+          "name": "OPTIONS DE TAUX DE CHANGE"
+         }, 
+         {
+          "name": "INSTRUMENTS DE MARCH\u00c9S \u00c0 TERME"
+         }
+        ], 
+        "name": "INSTRUMENTS DE TR\u00c9SORERIE"
+       }
+      ], 
+      "name": "Comptes financiers"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "PRODUITS FINIS A"
+         }, 
+         {
+          "name": "PRODUITS FINIS B"
+         }, 
+         {
+          "name": "Diferente de pret la animale si pasari"
+         }
+        ], 
+        "name": "PRODUITS FINIS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits finis (ou groupe) A", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits finis (ou groupe) B", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Produits finis"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Autres titres et valeurs de placement similaires"
+           }, 
+           {
+            "name": "Actions, partie lib\u00e9r\u00e9e"
+           }, 
+           {
+            "name": "Actions, partie non lib\u00e9r\u00e9e"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bons de caisse"
+             }, 
+             {
+              "name": "Bons de tr\u00e9sor"
+             }
+            ], 
+            "name": "Bons de caisse et bons de tr\u00e9sor"
+           }
+          ], 
+          "name": "Titres et valeurs de placement"
+         }, 
+         {
+          "name": "Produse aflate la terti"
+         }, 
+         {
+          "name": "Animale aflate la terti"
+         }, 
+         {
+          "name": "Marfuri aflate la terti"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tudes en cours E1"
+           }, 
+           {
+            "name": "\u00c9tudes en cours E2"
+           }
+          ], 
+          "name": "\u00c9TUDES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestations de services S1"
+           }, 
+           {
+            "name": "Prestations de services S2"
+           }
+          ], 
+          "name": "PRESTATIONS DE SERVICES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9chets", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Rebuts", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8res de r\u00e9cup\u00e9ration", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ambalaje aflate la terti"
+         }
+        ], 
+        "name": "SERVICES EN COURS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits interm\u00e9diaires"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des marchandises"
+           }, 
+           {
+            "name": "Fournitures A, B, C, ..", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits finis"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des mati\u00e8res et fournitures"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE MARCHANDISES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea materialelor consumabile"
+           }, 
+           {
+            "name": "Emballages (m\u00eame ventilation que celle du compte 326)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea materialelor de natura obiectelor de inventar"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Travaux en cours (m\u00eame ventilation que celle du compte 335)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits en cours (m\u00eame ventilation que celle du compte 331)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS D'AUTRES APPOVISIONNEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea animalelor aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea marfurilor aflate la terti"
+           }, 
+           {
+            "name": "Produits finis (m\u00eame ventilation que celle du compte 355)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor reziduale aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor finite aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea semifabricatelor aflate la terti"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea materiilor prime si materialelor aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea ambalajelor aflate la terti"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES SERVICES EN COURS"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE PRODUITS FINIS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marchandises (ou groupe) A", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Marchandises (ou groupe) B", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS EN COURS DE ROUTE, EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du personnel - d\u00e9biteur"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor finite"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des clients et comptes rattach\u00e9s"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea semifabricatelor"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor reziduale"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres d\u00e9biteurs"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES PRODUCTIONS EN COURS"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Prestations de services S 2", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Etat - cr\u00e9dit de TVA (suivant d\u00e9claration)"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 7%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 20%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 14%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 10%"
+               }
+              ], 
+              "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges"
+             }, 
+             {
+              "name": "Etat - TVA r\u00e9cup\u00e9rable sur immobilisations"
+             }
+            ], 
+            "name": "Etat - TVA r\u00e9cup\u00e9rable"
+           }, 
+           {
+            "name": "Acomptes sur imp\u00f4ts sur les r\u00e9sultats"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Subventions d'\u00e9quilibre \u00e0\u00a0 recevoir"
+             }, 
+             {
+              "name": "Subventions d'exploitation \u00e0\u00a0 recevoir"
+             }, 
+             {
+              "name": "Subventions d'investissement \u00e0\u00a0 recevoir"
+             }
+            ], 
+            "name": "Subventions \u00e0\u00a0 recevoir"
+           }, 
+           {
+            "name": "Etat - autres comptes d\u00e9biteurs"
+           }
+          ], 
+          "name": "Produse finite"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits r\u00e9siduels B"
+           }, 
+           {
+            "name": "Produits r\u00e9siduels A"
+           }
+          ], 
+          "name": "PRODUITS R\u00c9SIDUELS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - retenues de garantie"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Clients - factures \u00e0\u00a0 \u00e9tablir"
+             }, 
+             {
+              "name": "Cr\u00e9ances sur travaux non encore factur\u00e9s"
+             }
+            ], 
+            "name": "Clients - factures \u00e0\u00a0 \u00e9tablir et cr\u00e9ances sur travaux non encore factur\u00e9s"
+           }, 
+           {
+            "name": "Clients douteux ou litigieux"
+           }, 
+           {
+            "name": "Clients - effets \u00e0\u00a0 recevoir"
+           }, 
+           {
+            "name": "Travaux en cours T2"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Clients - cat\u00e9gorie A"
+             }, 
+             {
+              "name": "Clients - cat\u00e9gorie B"
+             }
+            ], 
+            "name": "Travaux en cours T1"
+           }, 
+           {
+            "name": "Autres clients et comptes rattach\u00e9s"
+           }
+          ], 
+          "name": "TRAVAUX EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus et non \u00e9chus \u00e0\u00a0 percevoir"
+           }, 
+           {
+            "name": "Charges constat\u00e9es d'avance"
+           }, 
+           {
+            "name": "Comptes transitoires ou d'attente - d\u00e9biteurs"
+           }, 
+           {
+            "name": "Comptes de r\u00e9partition p\u00e9riodique des charges"
+           }
+          ], 
+          "name": "Comptes de r\u00e9gularisation - actif"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres comptes d'associ\u00e9s d\u00e9biteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s - comptes d'apport en soci\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Actionnaires - capital souscrit et appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Comptes courants des associ\u00e9s d\u00e9biteurs"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es aux comptes d'associ\u00e9s"
+           }, 
+           {
+            "name": "Associ\u00e9s - op\u00e9rations faites en commun"
+           }
+          ], 
+          "name": "Produse reziduale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires B"
+           }, 
+           {
+            "name": "Produits interm\u00e9diaires A"
+           }, 
+           {
+            "name": "Personnel - autres d\u00e9biteurs"
+           }
+          ], 
+          "name": "PRODUITS INTERM\u00c9DIAIRES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits en cours P2"
+           }, 
+           {
+            "name": "Produits en cours P1"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes \u00e0\u00a0 obtenir - avoirs non encore re\u00e7us"
+           }, 
+           {
+            "name": "Fournisseurs - cr\u00e9ances pour emballages et mat\u00e9riel \u00e0\u00a0 rendre"
+           }, 
+           {
+            "name": "Autres fournisseurs d\u00e9biteurs"
+           }
+          ], 
+          "name": "PRODUITS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances sur cessions d'immobilisations"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es aux autres d\u00e9biteurs"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions d'\u00e9l\u00e9ments d'actif circulant"
+           }, 
+           {
+            "name": "Divers d\u00e9biteurs"
+           }
+          ], 
+          "name": "Diferente de pret la produse"
+         }
+        ], 
+        "name": "PRODUITS EN COURS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produit en cours P 1", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produit en cours P 2", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES CONSOMMABLES"
+         }, 
+         {
+          "name": "FOURNITURES DE BUREAU"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages \u00e0 usage mixte"
+           }, 
+           {
+            "name": "Autres emballages"
+           }, 
+           {
+            "name": "Emballages perdus"
+           }, 
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables"
+           }
+          ], 
+          "name": "EMBALLAGES"
+         }, 
+         {
+          "name": "AUTRES MATI\u00c8RES"
+         }, 
+         {
+          "name": "FOURNITURES D'ATELIER ET D'USINE"
+         }, 
+         {
+          "name": "FOURNITURES DE MAGASIN"
+         }
+        ], 
+        "name": "AUTRES APPROVISIONNEMENTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PRODUITS FINIS EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "AUTRES APPROVISIONNEMENTS EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "MARCHANDISES EN COURS DE ROUTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Stock en d\u00e9p\u00f4t"
+           }, 
+           {
+            "name": "Stock en consignation"
+           }
+          ], 
+          "name": "STOCK EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+         }, 
+         {
+          "name": "STOCK PROVENANT D'IMMOBILISATIONS MISES HORS SERVICE OU AU REBUT"
+         }
+        ], 
+        "name": "STOCKS EN COURS DE ROUTE, EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+       }, 
+       {
+        "children": [
+         {
+          "name": "FOURNITURES (A,B)"
+         }, 
+         {
+          "name": "Marfuri in curs de aprovizionare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Emballages \u00e0 usage mixte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Emballages perdus", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animale in curs de aprovizionare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mati\u00e8re (ou groupe) D", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8re (ou groupe) C", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES A"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Combustibles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de bureau", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de magasin", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures d'atelier et d usine", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES B"
+         }, 
+         {
+          "name": "Ambalaje in curs de aprovizionare"
+         }
+        ], 
+        "name": "MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Marchandises A2"
+           }, 
+           {
+            "name": "Marchandises A1"
+           }, 
+           {
+            "name": "Marchandises en cours de route"
+           }, 
+           {
+            "name": "Autres marchandises"
+           }
+          ], 
+          "name": "MARCHANDISES A"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Biens r\u00e9siduels en cours"
+             }, 
+             {
+              "name": "Biens interm\u00e9diaires en cours"
+             }, 
+             {
+              "name": "Biens produits en cours"
+             }
+            ], 
+            "name": "Biens en cours"
+           }, 
+           {
+            "name": "Autres produits en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "\u00c9tudes en cours"
+             }, 
+             {
+              "name": "Prestations en cours"
+             }, 
+             {
+              "name": "Travaux en cours"
+             }
+            ], 
+            "name": "Services en cours"
+           }
+          ], 
+          "name": "Produits en cours"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits finis (groupe B)"
+           }, 
+           {
+            "name": "Produits finis (groupe A)"
+           }, 
+           {
+            "name": "Produits finis en cours de route"
+           }, 
+           {
+            "name": "Autres produits finis"
+           }
+          ], 
+          "name": "Produits finis"
+         }, 
+         {
+          "name": "MARCHANDISES HORS ACTIVIT\u00c9S ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres mati\u00e8res et fournitures consommables"
+           }, 
+           {
+            "name": "Mati\u00e8res et fournitures consommables en cours de route"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages perdus"
+             }, 
+             {
+              "name": "Emballages \u00e0\u00a0 usage mixte"
+             }, 
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables non identifiables"
+             }
+            ], 
+            "name": "Emballages"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mati\u00e8res premi\u00e8res (groupe B)"
+             }, 
+             {
+              "name": "Mati\u00e8res premi\u00e8res (groupe A)"
+             }
+            ], 
+            "name": "Marchandises B1"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournitures de magasin"
+             }, 
+             {
+              "name": "Fournitures de bureau"
+             }, 
+             {
+              "name": "Produits d'entretien"
+             }, 
+             {
+              "name": "Mati\u00e8res consommables (groupe B)"
+             }, 
+             {
+              "name": "Mati\u00e8res consommables (groupe A)"
+             }, 
+             {
+              "name": "Fournitures d'atelier et d'usine"
+             }, 
+             {
+              "name": "Combustibles"
+             }
+            ], 
+            "name": "Marchandises B2"
+           }
+          ], 
+          "name": "MARCHANDISES B"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits interm\u00e9diaires et produits r\u00e9siduels"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D\u00e9chets"
+             }, 
+             {
+              "name": "Mati\u00e8res de r\u00e9cup\u00e9ration"
+             }, 
+             {
+              "name": "Rebuts"
+             }
+            ], 
+            "name": "Produits r\u00e9siduels (ou mati\u00e8res de r\u00e9cup\u00e9ration)"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Produits interm\u00e9diaires (groupe A)"
+             }, 
+             {
+              "name": "Produits interm\u00e9diaires (groupe B)"
+             }
+            ], 
+            "name": "Produits interm\u00e9diaires"
+           }
+          ], 
+          "name": "Produits interm\u00e9diaires et produits r\u00e9siduels"
+         }, 
+         {
+          "name": "Fournitures A, B, C, ..", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "MARCHANDISES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires A"
+           }, 
+           {
+            "name": "Produits interm\u00e9diaires B"
+           }
+          ], 
+          "name": "PRODUITS INTERM\u00c9DIAIRES"
+         }, 
+         {
+          "name": "Diferente de pret la marfuri"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9chets"
+           }, 
+           {
+            "name": "Rebuts"
+           }, 
+           {
+            "name": "Mati\u00e8res de R\u00e9cup\u00e9ration"
+           }
+          ], 
+          "name": "PRODUITS R\u00c9SIDUELS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des cr\u00e9ances circulantes"
+           }, 
+           {
+            "name": "Augmentation des dettes circulantes"
+           }
+          ], 
+          "name": "\u00c9cart de conversion - Actif (\u00e9l\u00e9ments circulant)"
+         }
+        ], 
+        "name": "PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS"
+       }
+      ], 
+      "name": "Comptes de stocks et d'en-cours"
+     }
+    ], 
+    "name": "Comptes de bilan"
+   }, 
+   {
+    "name": "COMPTES DE RESULTATS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Giruri si garantii acordate"
+           }, 
+           {
+            "name": "Alte angajamente acordate "
+           }
+          ], 
+          "name": "Angajamente acordate"
+         }, 
+         {
+          "name": "Certificate de emisii de gaze cu efect de sera"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valori materiale primite in pastrare sau custodie"
+           }, 
+           {
+            "name": "Bunuri publice primite in administrare, concesiune si cu chirie"
+           }, 
+           {
+            "name": "Alte valori in afara bilantului"
+           }, 
+           {
+            "name": "Debitori scosi din activ, urmariti in continuare"
+           }, 
+           {
+            "name": "Efecte scontate neajunse la scadenta"
+           }, 
+           {
+            "name": "Valori materiale primite spre prelucrare sau reparare"
+           }, 
+           {
+            "name": "Stocuri de natura obiectelor de inventar date in folosinta"
+           }, 
+           {
+            "name": "Redevente, locatii de gestiune, chirii si alte datorii asimilate"
+           }, 
+           {
+            "name": "Imobilizari corporale luate cu chirie"
+           }
+          ], 
+          "name": "Alte conturi in afara bilantului"
+         }, 
+         {
+          "name": "Datorii contingente"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte angajamente primite"
+           }, 
+           {
+            "name": "Giruri si garantii primite"
+           }
+          ], 
+          "name": "Angajamente primite"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizarea aferenta gradului de neutilizare a mijloacelor fixe "
+           }
+          ], 
+          "name": "Amortizarea aferenta gradului de neutilizare a mijloacelor fixe"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi de incasat"
+           }, 
+           {
+            "name": "Dobanzi de platit"
+           }
+          ], 
+          "name": "Dobanzi aferente contractelor de leasing si altor contracte asimilate, neajunse la scadenta"
+         }, 
+         {
+          "name": "Active contingente"
+         }
+        ], 
+        "name": "CONTURI IN AFARA BILANTULUI"
+       }
+      ], 
+      "name": "CONTURI SPECIALE"
+     }, 
+     {
+      "name": "CONTURI DE GESTIUNE"
+     }
+    ], 
+    "name": "Conturi in afara bilantului"
+   }, 
+   {
+    "children": [
+     {
+      "name": "COMPTES DE PRODUITS"
+     }, 
+     {
+      "name": "COMPTES DE CHARGES"
+     }
+    ], 
+    "name": "COMPTES DE GESTION"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Comptes de produits"
+     }, 
+     {
+      "name": "Comptes de charges"
+     }
+    ], 
+    "name": "Comptes de gestion"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Comptes financiers"
+     }, 
+     {
+      "name": "Comptes de tiers"
+     }, 
+     {
+      "name": "Comptes de capitaux"
+     }, 
+     {
+      "name": "Comptes de stocks et d'en-cours"
+     }, 
+     {
+      "name": "Comptes d'immobilisations"
+     }
+    ], 
+    "name": "Comptes de bilan"
+   }, 
+   {
+    "children": [
+     {
+      "name": "COMPTES D'ECARTS SUR COUTS PREETABLIS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Costul productiei de executie"
+       }, 
+       {
+        "name": "Costul productiei obtinute"
+       }
+      ], 
+      "name": "COMPTES DE RECLASSEMENTS"
+     }, 
+     {
+      "name": "COMPTES DE RESULTATS"
+     }, 
+     {
+      "name": "COMPTES DE LIAISONS INTERNES"
+     }, 
+     {
+      "name": "COMPTES DE CO\u00dbTS"
+     }, 
+     {
+      "name": "COMPTES DE DIFFERENCES DE TRAITEMENT COMPTABLE\n        "
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Divers engagements obtenus"
+         }, 
+         {
+          "name": "Abandons de cr\u00e9ances conditionnels"
+         }, 
+         {
+          "name": "Ventes avec clause de r\u00e9serve de propri\u00e9t\u00e9"
+         }
+        ], 
+        "name": "AUTRES ENGAGEMENTS OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres engagements de financement obtenus"
+         }, 
+         {
+          "name": "Facilit\u00e9s de financement renouvelables"
+         }, 
+         {
+          "name": "Emprunts restant \u00e0 encaisser"
+         }, 
+         {
+          "name": " Facilit\u00e9s d'\u00e9mission"
+         }, 
+         {
+          "name": "Cr\u00e9dits confirm\u00e9s obtenus"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE FINANCEMENT OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Commandes fermes des clients"
+         }, 
+         {
+          "name": "Achats de marchandises \u00e0 terme"
+         }, 
+         {
+          "name": "Achats \u00e0 terme de devises"
+         }, 
+         {
+          "name": "Autres engagements r\u00e9ciproques"
+         }
+        ], 
+        "name": "ENGAGEMENTS R\u00c9CIPROQUES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Avals accord\u00e9s"
+         }, 
+         {
+          "name": "Cautions, garanties accord\u00e9es"
+         }, 
+         {
+          "name": "Effets endoss\u00e9s par l'entreprise"
+         }, 
+         {
+          "name": "Autres garanties accord\u00e9es"
+         }, 
+         {
+          "name": "Hypoth\u00e8ques accord\u00e9es"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE GARANTIE ACCORD\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets endoss\u00e9s par des tiers"
+         }, 
+         {
+          "name": "Hypoth\u00e8ques obtenues"
+         }, 
+         {
+          "name": "Autres garanties obtenues"
+         }, 
+         {
+          "name": "Cautions, garanties obtenues"
+         }, 
+         {
+          "name": "Avals obtenus"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE GARANTIE OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Achats avec clause de r\u00e9serve de propri\u00e9t\u00e9"
+         }, 
+         {
+          "name": "Divers engagements accord\u00e9s"
+         }, 
+         {
+          "name": "Annulations conditionnelles de dettes"
+         }, 
+         {
+          "name": "Engagements de retraite"
+         }
+        ], 
+        "name": "AUTRES ENGAGEMENTS ACCORD\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Commandes fermes aux fournisseurs"
+         }, 
+         {
+          "name": "Ventes de marchandises \u00e0 terme"
+         }, 
+         {
+          "name": "Autres engagements r\u00e9ciproques"
+         }, 
+         {
+          "name": "Ventes \u00e0 terme de devises"
+         }
+        ], 
+        "name": "ENGAGEMENTS R\u00c9CIPROQUES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9dits accord\u00e9s non d\u00e9caiss\u00e9s"
+         }, 
+         {
+          "name": "Autres engagements de financement accord\u00e9s"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE FINANCEMENT ACCORD\u00c9S"
+       }
+      ], 
+      "name": "ENGAGEMENTS OBTENUS ET ENGAGEMENTS ACCORD\u00c9S"
+     }, 
+     {
+      "children": [
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }
+      ], 
+      "name": "CONTREPARTIES DES ENGAGEMENTS"
+     }, 
+     {
+      "name": "COMPTES DE STOCKS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cheltuieli generale de administratie"
+       }, 
+       {
+        "name": "Cheltuieli indirecte de productie"
+       }, 
+       {
+        "name": "Cheltuielile activitatii de baza"
+       }, 
+       {
+        "name": "Cheltuieli de desfacere"
+       }, 
+       {
+        "name": "Cheltuielile activitatilor auxiliare"
+       }
+      ], 
+      "name": "COMPTES REFLECHIS"
+     }
+    ], 
+    "name": "Comptes des engagements hors bilan et comptabilit\u00e9 analytique"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotations aux amortissements des immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations pour d\u00e9pr\u00e9ciations des immobilisations incorporelles et corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cr\u00e9ances", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Stocks et en-cours", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciation des actifs circulants"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux amortissements des charges immobilis\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux amortissements des immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli de exploatare privind ajustarile pentru deprecierea activelor circulante", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX AMORTISSEMENTS D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotations aux amortissements des primes de remboursement des obligations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges financiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind amortizarea primelor de rambursare a obligatiunilor", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a imobilizarilor financiare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations financi\u00e8res", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Valeurs mobili\u00e8res de placement", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux d\u00e9pr\u00e9ciation des \u00e9l\u00e9ments financiers"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a activelor circulante", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli financiare privind amortizarile si ajustarile pentru pierdere de valoare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotations aux provisions r\u00e9glement\u00e9es (stocks)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux amortissements exceptionnels des immobilisations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements d\u00e9rogatoires", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux amortissements des primes de remboursement des obligations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux d\u00e9pr\u00e9ciations exceptionnelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions exceptionnelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres dotations aux amortissements \u00e0 caract\u00e8re financier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux autres provisions r\u00e9glement\u00e9es", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX AMORTISSEMENTS \u00c0 CARACT\u00c8RE FINANCIER", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "DOTATIONS AUX AMORTISSEMENTS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "QUOTE-PART DE R\u00c9SULTAT ANNUL\u00c9E SUR EX\u00c9CUTION PARTIELLE DE CONTRATS PLURI-EXERCICES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances des exercices ant\u00e9rieurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9ances de l'exercice", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "VALEUR COMPTABLE DES CESSIONS COURANTES D'IMMOBILISATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part transf\u00e9r\u00e9e de b\u00e9n\u00e9fices (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Pertes imput\u00e9es par transfert (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR OP\u00c9RATIONS FAITES EN COMMUN", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges provisionn\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur stocks", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. aux provisions pour risques et charges durables"
+             }, 
+             {
+              "name": "D.N.C. aux provisions pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Dotations non courantes aux provisions pour risques et charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. pour plus-values en instance d'imposition"
+             }, 
+             {
+              "name": "D.N.C. pour reconstitution de gisements"
+             }, 
+             {
+              "name": "D.N.C. pour acquisition et construction de logements"
+             }, 
+             {
+              "name": "D.N.C. pour investissements"
+             }, 
+             {
+              "name": "D.N.C. pour amortissements d\u00e9rogatoires"
+             }
+            ], 
+            "name": "sur cr\u00e9ances", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. aux provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+             }, 
+             {
+              "name": "D.N.C. aux provisions pour d\u00e9pr\u00e9ciation de l'actif immobilis\u00e9"
+             }
+            ], 
+            "name": "Dotations non courantes aux provisions pour d\u00e9pr\u00e9ciation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.A.E. de l'immobilisation en non-valeurs"
+             }, 
+             {
+              "name": "D.A.E. des immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.A.E. des immobilisations corporelles"
+             }
+            ], 
+            "name": "sur risques \u00e0 court terme", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES PROVISIONN\u00c9ES D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte cheltuieli de exploatare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9ances devenues irr\u00e9couvrables"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Dons"
+             }, 
+             {
+              "name": "Lots"
+             }, 
+             {
+              "name": "Lib\u00e9ralit\u00e9s"
+             }
+            ], 
+            "name": "Dons, lib\u00e9ralit\u00e9s et lots"
+           }, 
+           {
+            "name": "Dons", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "P\u00e9nalit\u00e9s et amendes fiscales"
+             }, 
+             {
+              "name": "P\u00e9nalit\u00e9s et amendes p\u00e9nales"
+             }
+            ], 
+            "name": "M\u00e9c\u00e9nat", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D\u00e9dits"
+             }, 
+             {
+              "name": "P\u00e9nalit\u00e9s sur march\u00e9s"
+             }
+            ], 
+            "name": "Jetons de pr\u00e9sence et autres r\u00e9mun\u00e9rations d'administrateurs", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES DIVERSES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part de perte support\u00e9e (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Quote-part de b\u00e9n\u00e9fice transf\u00e9r\u00e9e (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Quotes-parts de r\u00e9sultat sur op\u00e9rations faites en commun"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions accord\u00e9es de l'exercice"
+           }, 
+           {
+            "name": "Subventions accord\u00e9es des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Subventions accord\u00e9es"
+         }, 
+         {
+          "children": [
+           {
+            "name": "VNA des immobilisations c\u00e9d\u00e9es des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Clients", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "VNA des immobilisations corporelles c\u00e9d\u00e9es"
+           }, 
+           {
+            "name": "VNA des immobilisations incorporelles c\u00e9d\u00e9es"
+           }, 
+           {
+            "name": "Autres d\u00e9biteurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "VNA provisions des immobilisations financi\u00e8res c\u00e9d\u00e9es (droits de propri\u00e9t\u00e9)"
+           }, 
+           {
+            "name": "Droits d'auteur et de reproduction", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PERTES SUR CR\u00c9ANCES CLIENTS ET AUTRES D\u00c9BITEURS", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "AUTRES CHARGES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "M\u00e9decine du travail pharmacie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres amendes p\u00e9nales et fiscales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s d'assiette, imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s de recouvrement, imp\u00f4ts directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s d'assiette, imp\u00f4ts directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s de recouvrement, imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00c9NALIT\u00c9S ET AMENDES FISCALES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "AUTRES IMP\u00d4TS ET TAXES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu tichetele de masa acordate salariatilor", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres imp\u00f4ts et taxes directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes d'apprentissage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Patentes, licences et taxes annexes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes sur appointements et salaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Formation professionnelle continue", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts fonciers et taxes annexes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "IMP\u00d4TS ET TAXES DIRECTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Droits de mutation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres droits", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes sur les v\u00e9hicules de soci\u00e9t\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Droits de timbre", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Vignettes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DROITS D'ENREGISTREMENT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu renumerarea in instrumente de capitaluri proprii", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contributia unitatii la asigurarile sociale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii pentru ajutorul de somaj", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia angajatorului pentru asigurarile sociale de sanatate", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de garantare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de concedii medicale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la schemele de pensii facultative", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Alte cheltuieli privind asigurarile si protectia sociala", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la primele de asigurare voluntara de sanatate", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "IMP\u00d4TS ET TAXES INDIRECTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu primele reprezentand participarea personalului la profit", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "IMP\u00d4TS ET TAXES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PERTES SUR CESSIONS DE TITRES DE PLACEMENT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges exceptionnelles diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur instruments de tr\u00e9sorerie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur rentes viag\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur op\u00e9rations financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Malis provenant du rachat par l'entreprise d'actions et obligations \u00e9mises par elle-m\u00eame", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PERTES SUR RISQUES FINANCIERS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats sur dettes commerciales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats sur obligations cautionn\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats sur dettes diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Avances re\u00e7ues et d\u00e9p\u00f4ts cr\u00e9diteurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Comptes courants bloqu\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats bancaires et sur op\u00e9rations de tr\u00e9sorerie et d\u2019escompte", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES INT\u00c9R\u00caTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "PERTES DE CHANGE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges provisionn\u00e9es financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur titres de placement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur risques financiers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES PROVISIONN\u00c9ES FINANCI\u00c8RES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "ESCOMPTES ACCORD\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats dans loyers de cr\u00e9dit-bail immobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats dans loyers des autres contrats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats dans loyers de cr\u00e9dit-bail mobilier", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DANS LOYERS DE CR\u00c9DIT-BAIL ET CONTRATS ASSIMIL\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances devenues irr\u00e9couvrables dans l'exercice", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Subventions accord\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emprunts obligataires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rappels d'imp\u00f4ts (autres qu'imp\u00f4ts sur les b\u00e9n\u00e9fices)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres charges exceptionnelles sur op\u00e9ration de gestion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DES EMPRUNTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imposition minimale annuelle des soci\u00e9t\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts sur les b\u00e9n\u00e9fices"
+           }, 
+           {
+            "name": "Rappels et d\u00e9gr\u00e8vements d'imp\u00f4ts sur les r\u00e9sultats"
+           }
+          ], 
+          "name": "Imp\u00f4ts sur les r\u00e9sultats"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres \u00e9l\u00e9ments d'actif", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Immobilisations financi\u00e8res", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ESCOMPTES DES EFFETS DE COMMERCE", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "FRAIS FINANCIERS ET CHARGES ASSIMIL\u00c9ES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "D.E. aux amortissements des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "D.E. aux provisions des exercices ant\u00e9rieurs"
+             }
+            ], 
+            "name": "Dotations d'exploitation des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des immobilisations corporelles"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour d\u00e9pr\u00e9ciation des immobilisations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des stocks"
+             }, 
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des cr\u00e9ances de l'actif circulant"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour d\u00e9pr\u00e9ciations de l'actif circulant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour risques et charges durables"
+             }, 
+             {
+              "name": "D.E.P. pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour risques et charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des frais pr\u00e9liminaires"
+             }, 
+             {
+              "name": "D.E.A. des charges \u00e0\u00a0 r\u00e9partir"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements de l'immobilisation en non valeur"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des mobiliers, mat\u00e9riels de bureau et am\u00e9nagements divers"
+             }, 
+             {
+              "name": "D.E.A. du mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "D.E.A. des autres immobilisations corporelles"
+             }, 
+             {
+              "name": "D.E.A. des terrains"
+             }, 
+             {
+              "name": "D.E.A. des installations techniques, mat\u00e9riel et outillage"
+             }, 
+             {
+              "name": "D.E.A. des constructions"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements des immobilisations corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des autres immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.E.A. de l'immobilisation en recherche et d\u00e9veloppement"
+             }, 
+             {
+              "name": "D.E.A. du fonds commercial"
+             }, 
+             {
+              "name": "D.E.A. des brevets, marques, droits et valeurs similaires"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements des immobilisations incorporelles"
+           }
+          ], 
+          "name": "Dotations d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges d'exploitation des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Transports administratifs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Voyages et d\u00e9placements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transports entre \u00e9tablissements ou chantiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transfert de profits sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Pertes sur op\u00e9rations faites en commun"
+           }
+          ], 
+          "name": "AUTRES FRAIS DE TRANSPORT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Achats de marchandises \"groupe A\""
+           }, 
+           {
+            "name": "Achats de marchandises \"groupe B\""
+           }, 
+           {
+            "name": "Rabais, remises et ristournes obtenus sur achats de marchandises"
+           }, 
+           {
+            "name": "Achats revendus de marchandises des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Variation de stocks de marchandises"
+           }
+          ], 
+          "name": "TRANSPORTS SUR ACHATS()", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Honoraires"
+             }, 
+             {
+              "name": "Commissions et courtages"
+             }, 
+             {
+              "name": "Frais d'actes et de contentieux"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations d'interm\u00e9diaires et honoraires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Assurances - Mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "Assurances multirisque (vol, incendie,R,C,)"
+             }, 
+             {
+              "name": "Autres assurances"
+             }, 
+             {
+              "name": "Assurances - risques d'exploitation"
+             }
+            ], 
+            "name": "Primes d'assurances"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres redevances"
+             }, 
+             {
+              "name": "Redevances pour brevets"
+             }
+            ], 
+            "name": "Redevances pour brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel occasionnel"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0\u00a0 l'entreprise"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel int\u00e9rimaire"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations du personnel ext\u00e9rieur \u00e0\u00a0 l'entreprise"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Maintenance"
+             }, 
+             {
+              "name": "Entretien et r\u00e9parations des biens immobiliers"
+             }, 
+             {
+              "name": "Entretien et r\u00e9parations des biens mobiliers"
+             }
+            ], 
+            "name": "Entretien et r\u00e9parations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Redevances de cr\u00e9dit-bail - mobilier et mat\u00e9riel"
+             }
+            ], 
+            "name": "Redevances de cr\u00e9dit-bail"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Locations de constructions"
+             }, 
+             {
+              "name": "Locations et charges locatives diverses"
+             }, 
+             {
+              "name": "Locations de terrains"
+             }, 
+             {
+              "name": "Malis sur emballages rendus"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel informatique"
+             }, 
+             {
+              "name": "Locations de mobilier et de mat\u00e9riel de bureau"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel et d'outillage"
+             }
+            ], 
+            "name": "Locations et charges locatives"
+           }
+          ], 
+          "name": "TRANSPORTS POUR LE COMPTE DE TIERS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de travaux, \u00e9tudes et prestations de service"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res et fournitures consommables"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats des emballages"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res premi\u00e8res"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res et fournitures des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats non stock\u00e9s"
+             }
+            ], 
+            "name": "Rabais, remises et ristournes obtenus sur achats consomm\u00e9s de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks des emballages"
+             }, 
+             {
+              "name": "Variation des stocks de mati\u00e8res et fournitures consommables"
+             }, 
+             {
+              "name": "Variation des stocks de mati\u00e8res premi\u00e8res"
+             }
+            ], 
+            "name": "Variation des stocks de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de fournitures d'entretien"
+             }, 
+             {
+              "name": "Achats de fournitures non stockables (eau, \u00e9lectricit\u00e9,,)"
+             }, 
+             {
+              "name": "Achats de fournitures de bureau"
+             }, 
+             {
+              "name": "Achats de petit outillage et petit \u00e9quipement"
+             }
+            ], 
+            "name": "Achats non stock\u00e9s de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats des prestations de service"
+             }, 
+             {
+              "name": "Achats des \u00e9tudes"
+             }, 
+             {
+              "name": "Achats des travaux"
+             }
+            ], 
+            "name": "Achats de travaux, \u00e9tudes et prestations de service"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats d'emballages perdus"
+             }, 
+             {
+              "name": "Achats d'emballages r\u00e9cup\u00e9rables non identifiables"
+             }, 
+             {
+              "name": "Achats d'emballages \u00e0\u00a0 usage mixte"
+             }
+            ], 
+            "name": "Achats d'emballages"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de mati\u00e8res et fournitures B"
+             }, 
+             {
+              "name": "Achats de combustibles"
+             }, 
+             {
+              "name": "Achats de mati\u00e8res et fournitures A"
+             }, 
+             {
+              "name": "Achats de fournitures de bureau"
+             }, 
+             {
+              "name": "Achats de fournitures d'atelier et d'usine"
+             }, 
+             {
+              "name": "Achats de produits d'entretien"
+             }, 
+             {
+              "name": "Achats de fournitures de magasin"
+             }
+            ], 
+            "name": "Achats de mati\u00e8res et fournitures consommables"
+           }, 
+           {
+            "name": "Achats de mati\u00e8res et de fournitures des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de mati\u00e8res premi\u00e8res B"
+             }, 
+             {
+              "name": "Achats de mati\u00e8res premi\u00e8res A"
+             }
+            ], 
+            "name": "Achats de mati\u00e8res premi\u00e8res"
+           }
+          ], 
+          "name": "TRANSPORTS SUR VENTES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Dons"
+             }, 
+             {
+              "name": "Cotisations"
+             }
+            ], 
+            "name": "Cotisations et dons"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais sur effets de commerce"
+             }, 
+             {
+              "name": "Frais d'achat et de vente des titres"
+             }, 
+             {
+              "name": "Frais et commissions sur services bancaires"
+             }
+            ], 
+            "name": "Services bancaires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres transports"
+             }, 
+             {
+              "name": "Transports sur ventes"
+             }, 
+             {
+              "name": "Transports du personnel"
+             }, 
+             {
+              "name": "Transports sur achats"
+             }
+            ], 
+            "name": "Transports"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes obtenus sur autres charges externes"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais de t\u00e9l\u00e9phone"
+             }, 
+             {
+              "name": "Frais de t\u00e9lex et de t\u00e9l\u00e9grammes"
+             }, 
+             {
+              "name": "Frais postaux"
+             }
+            ], 
+            "name": "Frais postaux et frais de t\u00e9l\u00e9communication"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Documentation g\u00e9n\u00e9rale"
+             }, 
+             {
+              "name": "Recherches"
+             }, 
+             {
+              "name": "Documentation technique"
+             }, 
+             {
+              "name": "\u00c9tudes g\u00e9n\u00e9rales"
+             }
+            ], 
+            "name": "\u00c9tudes, recherches et documentation"
+           }, 
+           {
+            "name": "Autres charges externes des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Foires et expositions"
+             }, 
+             {
+              "name": "Publications"
+             }, 
+             {
+              "name": "Cadeaux \u00e0\u00a0 la client\u00e8le"
+             }, 
+             {
+              "name": "Primes de publicit\u00e9"
+             }, 
+             {
+              "name": "\u00c9chantillons, catalogues et imprim\u00e9s publicitaires"
+             }, 
+             {
+              "name": "Annonces et insertions"
+             }, 
+             {
+              "name": "Autres charges de publicit\u00e9 et relations publiques"
+             }
+            ], 
+            "name": "Publicit\u00e9, publications et relations publiques"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Missions"
+             }, 
+             {
+              "name": "Voyages et d\u00e9placements"
+             }, 
+             {
+              "name": "R\u00e9ceptions"
+             }, 
+             {
+              "name": "Frais de d\u00e9m\u00e9nagement"
+             }
+            ], 
+            "name": "D\u00e9placements, missions et r\u00e9ceptions"
+           }
+          ], 
+          "name": "TRANSPORTS DU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Charges sociales sur appointements et salaires de l'exploitant"
+             }, 
+             {
+              "name": "Appointements et salaires"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9ration de l'exploitant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres charges sociales diverses"
+             }, 
+             {
+              "name": "Indemnit\u00e9s de pr\u00e9avis et de licenciement"
+             }, 
+             {
+              "name": "Assurances groupe"
+             }, 
+             {
+              "name": "M\u00e9decine de travail, pharmacie"
+             }, 
+             {
+              "name": "Habillement et v\u00eatements de travail"
+             }, 
+             {
+              "name": "Allocations aux oeuvres sociales"
+             }, 
+             {
+              "name": "Prestations de retraites"
+             }
+            ], 
+            "name": "Charges sociales diverses"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Primes de repr\u00e9sentation"
+             }, 
+             {
+              "name": "Commissions au personnel"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations des administrateurs, g\u00e9rants et associ\u00e9s"
+             }, 
+             {
+              "name": "Indemnit\u00e9s et avantages divers"
+             }, 
+             {
+              "name": "Primes et gratifications"
+             }, 
+             {
+              "name": "Appointements et salaires"
+             }, 
+             {
+              "name": "Indemnit\u00e9s de d\u00e9placement"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations du personnel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations familiales"
+             }, 
+             {
+              "name": "Assurances accidents de travail"
+             }, 
+             {
+              "name": "Cotisations de s\u00e9curit\u00e9 sociale"
+             }, 
+             {
+              "name": "Cotisations aux mutuelles"
+             }, 
+             {
+              "name": "Cotisations aux caisses de retraite"
+             }
+            ], 
+            "name": "Charges sociales"
+           }, 
+           {
+            "name": "Charges du personnel des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Charges de personnel"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- sur biens immobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- sur biens mobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Maintenance", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Entretien et r\u00e9parations"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Taxe urbaine et taxe d'\u00e9dilit\u00e9"
+             }, 
+             {
+              "name": "Patente"
+             }, 
+             {
+              "name": "Taxes locales"
+             }
+            ], 
+            "name": "Imp\u00f4ts et taxes directs"
+           }, 
+           {
+            "name": "Assurance obligatoire dommage construction ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Risques d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes directs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Assurance transport sur autres biens", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Assurance transport sur achats", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Assurance transportsur ventes", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Assurance transport"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Droits d'enregistrement et de timbre"
+             }, 
+             {
+              "name": "Taxes sur les v\u00e9hicules"
+             }, 
+             {
+              "name": "Autres imp\u00f4ts, taxes et droits assimil\u00e9s"
+             }, 
+             {
+              "name": "La vignette"
+             }
+            ], 
+            "name": "Imp\u00f4ts, taxes et droits assimil\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "TRANSPORTS DE PLIS", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "TRANSPORTS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournitures non stockables - Electricit\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'entretien non stockables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures de bureau non stockables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats de petit mat\u00e9riel et outillage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables -Eau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables \u2013 Autres \u00e9nergies", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats de travaux, mat\u00e9riels et \u00e9quipements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats d'\u00e9tudes et prestations de services", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES ACHATS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournitures administratives", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables (eau, \u00e9nergie...) ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'entretien et de petit \u00e9quipement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres mati\u00e8res et fournitures", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli privind animalele si pasarile", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournitures de bureau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures de magasin", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Mati\u00e8res combustibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Mati\u00e8res consommables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'atelier et d'usine", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS STOCK\u00c9S DE MATI\u00c8RES ET FOURNITURES CONSOMMABLES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournitures d'atelier et d'usine", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Combustibles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Produits d'entretien", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fournitures de magasin", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fournitures de bureau", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Emballages perdus", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Emballages \u00e0 usage mixte", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Cheltuieli privind furajele", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli privind alte materiale consumabile", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli privind semintele si materialele de plantat", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mati\u00e8res (ou groupe) D", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mati\u00e8res (ou groupe) C", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS DE MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variation des stocks de marchandises", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks de mati\u00e8res premi\u00e8res et fournitures li\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks d'autres approvisionnements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks de marchandises", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE BIENS ACHET\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures A, B, C, ..", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS DE MARCHANDISES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages \u00e0 usage mixte", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emballages perdus", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS D'EMBALLAGES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- de mat\u00e9riel, \u00e9quipements et travaux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes non affect\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- de mati\u00e8res premi\u00e8res (et fournitures)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'autres approvisionnements stock\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'\u00e9tudes et prestations de services", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'approvisionnements non stock\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- de marchandises", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Rabais, remises et ristournes obtenus sur achats"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marchandise (ou groupe) B", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Marchandise (ou groupe) A", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Achats de marchandises"
+         }, 
+         {
+          "name": "Cheltuieli privind marfurile", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reduceri comerciale primite", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "ACHATS ET VARIATIONS DE STOCKS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges financi\u00e8res"
+           }, 
+           {
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciations des immobilisations financi\u00e8res"
+           }, 
+           {
+            "name": "Dotation aux provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Dotations financi\u00e8res des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Dotations aux amortissements des primes de remboursement des obligations"
+           }
+          ], 
+          "name": "Dotations financi\u00e8res"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9ceptions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de recrutement du personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de d\u00e9m\u00e9nagement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Missions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES CHARGES EXTERNES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Redevances pour logiciels", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour brevets, licences, concessions et droits similaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour marques", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "REDEVANCES POUR BREVETS, LICENCES, LOGICIELS ET DROITS SIMILAIRES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Concours divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres imp\u00f4ts locaux", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxes fonci\u00e8res", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxe professionnelle", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxe sur les v\u00e9hicules des soci\u00e9t\u00e9s", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Cotisations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Droits de mutation", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Droits d'enregistrement et de timbre"
+           }, 
+           {
+            "name": "Taxes sur le chiffre d'affaires non r\u00e9cup\u00e9rables ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "COTISATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes exigibles \u00e0 l'\u00e9tranger", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l'entreprise", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes diverses", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DE PERSONNEL EXT\u00c9RIEUR \u00c0 L'ENTREPRISE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participation des employeurs \u00e0 la formation professionnelle continue", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Allocation logement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements lib\u00e9ratoires ouvrant droit \u00e0 l'exon\u00e9ration de la taxe d'apprentissage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Participation des employeurs \u00e0 l'effort de construction", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Pertes de change des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Pertes de change propres \u00e0\u00a0 l'exercice"
+           }
+          ], 
+          "name": "FRAIS DE FORMATION DU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9mun\u00e9rations des transitaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'actes et de contentieux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions et courtages sur achats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers frais", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions et courtages sur ventes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS D'INTERM\u00c9DIAIRES ET DE CONSEILS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Commissions sur cartes de cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'\u00e9mission d'emprunts", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cotisation pour d\u00e9faut d'investissement obligatoire dans la construction", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres frais bancaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Location de coffres", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais sur effets", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des comptes courants et d\u00e9p\u00f4ts cr\u00e9diteurs"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des dettes rattach\u00e9es \u00e0\u00a0 des participations"
+             }, 
+             {
+              "name": "Autres int\u00e9r\u00eats des emprunts et dettes"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats bancaires et sur op\u00e9rations de financement"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des emprunts"
+             }
+            ], 
+            "name": "Frais sur titres (achat, vente, garde)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "FRAIS BANCAIRES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SERVICES EXT\u00c9RIEURS B", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rabais, remises et ristournes obtenus sur autres services ext\u00e9rieurs", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurances risques d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances insolvabilit\u00e9 clients", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances transport sur achats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances mat\u00e9riel de transport", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances multirisques", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances transport sur ventes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances responsabilit\u00e9 du producteur", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres primes d'assurances", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PRIMES D'ASSURANCE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Annonces et insertions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9dit-bail immobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9dit-bail mobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cadeaux \u00e0 la client\u00e8le", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contrats assimil\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Catalogues et imprim\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Publications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers (pourboires, dons courants...)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "REDEVANCES DE CR\u00c9DIT-BAIL ET CONTRATS ASSIMIL\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres frais de t\u00e9l\u00e9communications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9l\u00e9phone", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9l\u00e9copie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9lex", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de recrutement de personnel", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "FRAIS DE T\u00c9L\u00c9COMMUNICATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Documentation g\u00e9n\u00e9rale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Documentation technique", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "\u00c9tudes et recherches", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\u00c9TUDES, RECHERCHES ET DOCUMENTATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l'entreprise", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "SOUS-TRAITANCE G\u00c9N\u00c9RALE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Transports administratifs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transports collectifs du personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Entretien et r\u00e9parations des biens immobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Maintenance", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres entretiens et r\u00e9parations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Entretien et r\u00e9parations des biens mobiliers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ENTRETIEN, R\u00c9PARATIONS ET MAINTENANCE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9chantillons", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres charges de publicit\u00e9 et relations publiques", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Publications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cadeaux \u00e0 la client\u00e8le", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Annonces, insertions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Catalogues, imprim\u00e9s publicitaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Foires et expositions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de colloques, s\u00e9minaires, conf\u00e9rences", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PUBLICIT\u00c9, PUBLICATIONS, RELATIONS PUBLIQUES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Locations et charges locatives diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de b\u00e2timents", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'actes et de contentieux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Malis sur emballages", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de terrains", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de mat\u00e9riels et outillages", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations d'emballages", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "LOCATIONS ET CHARGES LOCATIVES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SERVICES EXT\u00c9RIEURS A", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Int\u00e9gration fiscale - Produits", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9gration fiscale - Charges", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli cu impozitul pe venit si cu alte impozite care nu apar in elementele de mai sus", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX PROVISIONS FINANCI\u00c8RES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ment d'imp\u00f4t sur les soci\u00e9t\u00e9s li\u00e9 aux distributions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Produits, Reports en arri\u00e8re des d\u00e9ficits", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour grosses r\u00e9parations", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX PROVISIONS D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contribution additionnelle \u00e0 l'imp\u00f4t sur les b\u00e9n\u00e9fices", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts dus \u00e0 l'\u00e9tranger", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts dus en France", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Imp\u00f4ts sur les b\u00e9n\u00e9fices"
+         }
+        ], 
+        "name": "DOTATIONS AUX PROVISIONS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cong\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Primes et gratifications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Avantages en nature", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de pr\u00e9avis, de licenciement et de recherche d'embauche", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Suppl\u00e9ment familial", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de maladie vers\u00e9es aux travailleurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des dettes commerciales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des dettes diverses", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Autres r\u00e9mun\u00e9rations directes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des dettes rattach\u00e9es \u00e0 des participations", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des emprunts et dettes assimil\u00e9es", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Appointements salaires et commissions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DIRECTES VERS\u00c9ES AU PERSONNEL NATIONAL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges sociales sur r\u00e9mun\u00e9ration du personnel non national", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Charges sociales sur r\u00e9mun\u00e9ration du personnel national", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES SOCIALES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avantages en nature", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Suppl\u00e9ment familial", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de maladie vers\u00e9es aux travailleurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cong\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Primes et gratifications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Appointements salaires et commissions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres r\u00e9mun\u00e9rations directes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de pr\u00e9avis, de licenciement et de recherche d'embauche", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DIRECTES VERS\u00c9ES AU PERSONNEL NON NATIONAL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Indemnit\u00e9s d'expatriation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres indemnit\u00e9s et avantages divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de logement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de repr\u00e9sentation", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INDEMNIT\u00c9S FORFAITAIRES VERS\u00c9ES AU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli din diferente de curs valutar", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l\u2019entreprise", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATION TRANSF\u00c9R\u00c9E DE PERSONNEL EXT\u00c9RIEUR", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges sociales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "R\u00e9mun\u00e9ration du travail de l'exploitant", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS ET CHARGES SOCIALES DE L'EXPLOITANT INDIVIDUEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "M\u00e9decine du travail et pharmacie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux Syndicats et Comit\u00e9s d'entreprise, d'\u00e9tablissement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux autres oeuvres sociales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux Comit\u00e9s d'hygi\u00e8ne et de s\u00e9curit\u00e9", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES CHARGES SOCIALES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "CHARGES DE PERSONNEL", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Comptes de charges"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferts de charges financi\u00e8res", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE PROVISIONS FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations corporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour grosses r\u00e9parations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations incorporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE PROVISIONS D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REPRISES D'AMORTISSEMENTS", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "REPRISES DE PROVISIONS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reprises sur provisions exceptionnelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises pour d\u00e9pr\u00e9ciations exceptionnelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur provisions r\u00e9glement\u00e9es (stocks) ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur autres provisions r\u00e9glement\u00e9es ", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements d\u00e9rogatoires", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Plus-values r\u00e9investies", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision sp\u00e9ciale de r\u00e9\u00e9valuation", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur provisions r\u00e9glement\u00e9es (immobilisations)"
+           }
+          ], 
+          "name": "TRANSFERTS DE CHARGES FINANCIERES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Venituri financiare din ajustari pentru pierderea de valoare a imobilizarilor financiare", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Valeurs mobili\u00e8res de placement", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations financi\u00e8res", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des \u00e9l\u00e9ments financiers"
+           }, 
+           {
+            "name": "Venituri financiare din ajustari pentru pierderea de valoare a activelor circulante", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur provisions financiers", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Venituri financiare din ajustari pentru pierdere de valoare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Venituri din ajustari pentru deprecierea activelor circulante ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din provizioane", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cr\u00e9ances", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Stocks et en-cours", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des actifs circulants"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des immobilisations corporelles et incorporelles"
+           }, 
+           {
+            "name": "Venituri din fondul comercial negativ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din ajustari pentru deprecierea imobilizarilor", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur amortissements des immobilisations incorporelles et corporelles "
+           }
+          ], 
+          "name": "TRANSFERTS DE CHARGES D'EXPLOITATION", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "TRANSFERTS DE CHARGES", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "GAINS SUR CESSIONS DE TITRES DE PLACEMENT", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "ESCOMPTES OBTENUS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REVENUS DE TITRES DE PLACEMENT", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur instruments de tr\u00e9sorerie", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonis provenant du rachat par l'entreprise d'actions et d'obligations \u00e9mises par elle-m\u00eame", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur op\u00e9rations financi\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur rentes viag\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits exceptionnels divers", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "GAINS SUR RISQUES FINANCIERS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur titres de placement", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur risques financiers", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "autres charges provisionn\u00e9es financi\u00e8res", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE CHARGES PROVISIONN\u00c9ES FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REVENUS DE PARTICIPATIONS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits exceptionnels sur op\u00e9rations de gestion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Rentr\u00e9es sur cr\u00e9ances amorties", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "D\u00e9gr\u00e8vements d'imp\u00f4ts autres qu'imp\u00f4ts sur les b\u00e9n\u00e9fices", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "D\u00e9dits et p\u00e9nalit\u00e9s per\u00e7us sur achats et sur ventes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Lib\u00e9ralit\u00e9s re\u00e7ues", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Subventions d'\u00e9quilibre", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DE PR\u00caTS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "GAINS DE CHANGE", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisations incorporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Immobilisations corporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Immobilisations financi\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Autres \u00e9l\u00e9ments d'actif", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Produits des cessions d'\u00e9l\u00e9ments d'actif"
+         }
+        ], 
+        "name": "REVENUS FINANCIERS ET PRODUITS ASSIMIL\u00c9S", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits des cessions des immobilisations des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations corporelles"
+           }, 
+           {
+            "name": "Droits d'auteur et de reproduction", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations financi\u00e8res (droits de propri\u00e9t\u00e9)"
+           }, 
+           {
+            "name": "Redevances pour concessions, brevets, licences, marques, proc\u00e9d\u00e9s, logiciels ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Produits des cessions d'immobilisations"
+         }, 
+         {
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR EX\u00c9CUTION PARTIELLE DE CONTRATS PLURIEXERCICES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part de b\u00e9n\u00e9fice attribu\u00e9e (comptabilit\u00e9 des associ\u00e9s non-g\u00e9rants)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Quote-part de perte transf\u00e9r\u00e9e (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Quotes-parts de r\u00e9sultats sur op\u00e9rations faites en commun"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "P\u00e9nalit\u00e9s re\u00e7ues sur march\u00e9s"
+             }, 
+             {
+              "name": "D\u00e9dits re\u00e7us"
+             }
+            ], 
+            "name": "Jetons de pr\u00e9sence et autres r\u00e9mun\u00e9rations d'administrateurs", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Indemnit\u00e9s d\u2019assurances re\u00e7ues", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Lib\u00e9ralit\u00e9s"
+             }, 
+             {
+              "name": "Lots"
+             }, 
+             {
+              "name": "Dons"
+             }
+            ], 
+            "name": "Dons, lib\u00e9ralit\u00e9s et lots re\u00e7us"
+           }, 
+           {
+            "name": "Alte venituri din exploatare", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din vanzarea activelor si alte operatii de capital", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din subventii pentru investitii", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Rentr\u00e9es sur cr\u00e9ances sold\u00e9es"
+           }
+          ], 
+          "name": "PRODUITS DIVERS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'\u00e9quilibre re\u00e7ues des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Subventions d'\u00e9quilibre re\u00e7ues de l'exercice"
+           }
+          ], 
+          "name": "Subventions d'\u00e9quilibre"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur subventions d'investissement de l'exercice"
+           }, 
+           {
+            "name": "Reprises sur subventions d'investissement des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Reprise sur subventions d'investissements"
+         }, 
+         {
+          "name": "PRODUITS DES CESSIONS COURANTES D'IMMOBILISATIONS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Reprises sur plus-values en instance d'imposition"
+             }, 
+             {
+              "name": "Reprises sur amortissements d\u00e9rogatoires"
+             }, 
+             {
+              "name": "Reprises sur provisions pour acquisition et construction de logements"
+             }, 
+             {
+              "name": "Reprises sur provisions pour reconstitution de gisements"
+             }, 
+             {
+              "name": "Reprises sur provisions pour investissements"
+             }
+            ], 
+            "name": "sur cr\u00e9ances", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reprises sur provisions pour risques et charges durables"
+             }, 
+             {
+              "name": "Reprises sur provisions pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Reprises non courantes sur provisions pour risques et charges"
+           }, 
+           {
+            "name": "sur autres charges provisionn\u00e9es", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R,N,C sur provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+             }, 
+             {
+              "name": "R,N,C sur provisions pour d\u00e9pr\u00e9ciation de l'actif immobilis\u00e9"
+             }
+            ], 
+            "name": "Reprises non courantes sur provisions pour d\u00e9pr\u00e9ciation"
+           }, 
+           {
+            "name": "Transferts de charges non courantes"
+           }, 
+           {
+            "name": "sur stocks", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R,A,E des immobilisations en non valeur"
+             }, 
+             {
+              "name": "R,A,E des immobilisations incorporelles"
+             }, 
+             {
+              "name": "R,A,E des immobilisations corporelles"
+             }
+            ], 
+            "name": "sur risques \u00e0 court terme", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE CHARGES PROVISIONN\u00c9ES D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "B\u00e9n\u00e9fices attribu\u00e9s par transfert (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Quote-part transf\u00e9r\u00e9e de pertes (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR OP\u00c9RATIONS FAITES EN COMMUN", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "AUTRES PRODUITS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "IMMOBILISATIONS INCORPORELLES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "IMMOBILISATIONS CORPORELLES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "IMMOBILISATIONS FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "PRODUCTION IMMOBILIS\u00c9E", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "VARIATIONS DES STOCKS DE PRODUITS FINIS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gains de change des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Gains de change propres \u00e0\u00a0 l'exercice"
+           }
+          ], 
+          "name": "Gains de change"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des pr\u00eats"
+             }, 
+             {
+              "name": "Revenus des autres cr\u00e9ances financi\u00e8res"
+             }
+            ], 
+            "name": "Int\u00e9r\u00eats et produits assimil\u00e9s"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats et autres produits financiers des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Revenus des cr\u00e9ances rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "name": "Escomptes obtenus"
+           }, 
+           {
+            "name": "Produits nets sur cessions de titres et valeurs de placement"
+           }, 
+           {
+            "name": "Revenus des titres et valeurs de placement"
+           }
+          ], 
+          "name": "Int\u00e9r\u00eats et autres produits financiers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur dotations financi\u00e8res des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res"
+           }, 
+           {
+            "name": "Reprises sur provisions pour risques et charges financi\u00e8res"
+           }, 
+           {
+            "name": "Reprises sur amortissements des primes de remboursement des obligations"
+           }, 
+           {
+            "name": "Reprise sur provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Transfert - Pertes de change"
+             }, 
+             {
+              "name": "Transfert - Charges d'int\u00e9r\u00eats"
+             }, 
+             {
+              "name": "Transfert - Autres charges financi\u00e8res"
+             }
+            ], 
+            "name": "Transfert de charges financi\u00e8res"
+           }
+          ], 
+          "name": "Reprises financi\u00e8res, transferts de charges"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tudes en cours", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Prestations de services en cours", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES EN-COURS DE SERVICES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits r\u00e9siduels", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Travaux en cours", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits en cours", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE PRODUITS EN COURS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits des titres de participation et des autres titres immobilis\u00e9s des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Revenus des titres de participation"
+           }, 
+           {
+            "name": "Revenus des titres immobilis\u00e9s"
+           }
+          ], 
+          "name": "Produits des titres de participation et des autres titres immobilis\u00e9s"
+         }
+        ], 
+        "name": "VARIATIONS DES STOCKS DE BIENS ET DE SERVICES PRODUITS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Bonis sur reprises et cessions d'emballages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Redevances pour brevets, logiciels, marques et droits similaires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Commissions et courtages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Locations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Autres produits accessoires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ports, emballages perdus et autres frais factur\u00e9s", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Mise \u00e0 disposition de personnel", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "PRODUITS ACCESSOIRES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "TRAVAUX FACTUR\u00c9S", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS FINIS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE MARCHANDISES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits d'activit\u00e9s annexes (cessions d'approvisionnements...)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Commissions et courtages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits des services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Locations diverses", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Mise \u00e0 disposition de personnel factur\u00e9e ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ports et frais accessoires factur\u00e9s", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonifications obtenues des clients et primes sur ventes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonis sur reprises d'emballages consign\u00e9s", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Venituri din activitati diverse", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS INTERM\u00c9DIAIRES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Venituri din vanzarea marfurilor", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- sur ventes de produits interm\u00e9diaires ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur produits des activit\u00e9s annexes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur ventes de produits finis", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur ventes de marchandises", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur prestations de services", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur \u00e9tudes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur travaux", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reduceri comerciale acordate", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "SERVICES VENDUS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS R\u00c9SIDUELS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes de marchandises"
+         }
+        ], 
+        "name": "VENTES", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventes de biens et services produits des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventes de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Ventes de produits finis"
+             }
+            ], 
+            "name": "Ventes de biens produits \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ports et frais accessoires factur\u00e9s"
+             }, 
+             {
+              "name": "Autres ventes et produits accessoires"
+             }, 
+             {
+              "name": "Bonis sur reprises d'emballages consign\u00e9s"
+             }, 
+             {
+              "name": "Locations divers es re\u00e7ues"
+             }, 
+             {
+              "name": "Produits de services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel"
+             }, 
+             {
+              "name": "Commissions et courtages re\u00e7us"
+             }
+            ], 
+            "name": "Ventes de produits accessoires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations de services"
+             }, 
+             {
+              "name": "Travaux"
+             }, 
+             {
+              "name": "Etudes"
+             }
+            ], 
+            "name": "Ventes de services produits \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations de services"
+             }, 
+             {
+              "name": "Travaux"
+             }, 
+             {
+              "name": "Etudes"
+             }
+            ], 
+            "name": "Ventes de services produits au Maroc"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Rabais, remises et ristournes accord\u00e9s sur ventes de B et S produits des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes au Maroc des biens produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes au Maroc des services produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes \u00e0\u00a0 l'\u00e9tranger des biens produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes \u00e0\u00a0 l'\u00e9tranger des services produits"
+             }
+            ], 
+            "name": "Rabais, remises et ristournes accord\u00e9s par l'entreprise"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventes de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Ventes de produits finis"
+             }, 
+             {
+              "name": "Ventes de produits r\u00e9siduels"
+             }
+            ], 
+            "name": "Ventes de biens produits au Maroc"
+           }, 
+           {
+            "name": "Redevances pour brevets, marques, droits et valeurs similaires"
+           }
+          ], 
+          "name": "SUR PRODUITS \u00c0 L'IMPORTATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisation en non valeurs produite"
+           }, 
+           {
+            "name": "Immobilisations corporelles produites"
+           }, 
+           {
+            "name": "Immobilisations incorporelles produites"
+           }, 
+           {
+            "name": "Immobilisations produites des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Immobilisations produites par l'entreprise pour elle m\u00eame"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'exploitation re\u00e7ues des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Subventions d'exploitations re\u00e7ues de l'exercice"
+           }
+          ], 
+          "name": "Subventions d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Profits sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Vers\u00e9es par l'\u00c9tat et les collectivit\u00e9s publiques", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Vers\u00e9es par des tiers", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Vers\u00e9es par les organismes internationaux", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Transfert de pertes sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Autres produits d'exploitation des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "AUTRES SUBVENTIONS D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "T,C,E - Autres charges d'exploitation"
+             }, 
+             {
+              "name": "T,C,E - Achats consomm\u00e9s de mati\u00e8res et fournitures"
+             }, 
+             {
+              "name": "T,C,E-Autres charges externes"
+             }, 
+             {
+              "name": "T,C,E - Achats de marchandises"
+             }, 
+             {
+              "name": "T,C,E - Charges de personnel"
+             }, 
+             {
+              "name": "T,C,E - Imp\u00f4ts et taxes"
+             }
+            ], 
+            "name": "Transferts des charges d'exploitation"
+           }, 
+           {
+            "name": "Reprises sur provisions pour risques et charges"
+           }, 
+           {
+            "name": "Reprises sur amortissements des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Reprises sur amortissements de l'immobilisation en non valeurs"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des immobilisations"
+           }, 
+           {
+            "name": "Reprises sur amortissements des immobilisations corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reprises sur amortissements des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "Reprises sur provisions des exercices ant\u00e9rieurs"
+             }
+            ], 
+            "name": "Reprises sur amortissements et provisions des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Reprise d'exploitation, transferts de charges"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Produits en cours", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Travaux en cours", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Variation des en-cours de production de biens"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks d'\u00e9tudes en cours"
+             }, 
+             {
+              "name": "Variation des stocks de prestations en cours"
+             }, 
+             {
+              "name": "Prestations de services en cours", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Variation des stocks de travaux en cours"
+             }
+            ], 
+            "name": "Variation des stocks de services en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Produits interm\u00e9diaires ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produits finis", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produits r\u00e9siduels", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Variation des stocks de produits"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks de produits interm\u00e9diaires en cours"
+             }, 
+             {
+              "name": "Variation des stocks de biens produits en cours"
+             }, 
+             {
+              "name": "Variation des stocks de produits r\u00e9siduels en cours"
+             }
+            ], 
+            "name": "Variation des stocks de produits en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks de produits r\u00e9siduels"
+             }, 
+             {
+              "name": "Variation des stocks de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Variation des stocks de produits finis"
+             }
+            ], 
+            "name": "Variation des stocks de biens produits"
+           }
+          ], 
+          "name": "SUR PRODUITS DE P\u00c9R\u00c9QUATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventes de marchandises \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "name": "Ventes de marchandises des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Ventes de marchandises au Maroc"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes accord\u00e9s par l'entreprise"
+           }
+          ], 
+          "name": "SUR PRODUITS \u00c0 L'EXPORTATION", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "SUBVENTIONS D'EXPLOITATION", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Comptes de produits"
+     }
+    ], 
+    "name": "Comptes de gestion"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dits de tr\u00e9sorerie"
+           }
+          ], 
+          "name": "Cr\u00e9dits de tr\u00e9sorerie"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Banques (solde cr\u00e9diteur)"
+           }, 
+           {
+            "name": "Autres \u00e9tablissements financiers et assimil\u00e9s (soldes cr\u00e9diteurs)"
+           }
+          ], 
+          "name": "Banques (solde cr\u00e9diteur)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dits d'escompte"
+           }
+          ], 
+          "name": "Cr\u00e9dits d'escompte"
+         }
+        ], 
+        "name": "TRESORERIE - PASSIF"
+       }
+      ], 
+      "name": "COMPTES DE TRESORERIE"
+     }, 
+     {
+      "name": "COMPTES D'ACTIF IMMOBILISE"
+     }, 
+     {
+      "name": "COMPTES D'ACTIF CIRCULANT (HORS TRESORERIE)"
+     }, 
+     {
+      "name": "COMPTES DU PASSIF CIRCULANT (HORS TRESORERIE)"
+     }, 
+     {
+      "name": "COMPTES DE FINANCEMENT PERMANENT"
+     }
+    ], 
+    "name": "COMPTES DE BILAN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "PERTES SUR CR\u00c9ANCES H.A.O."
+       }, 
+       {
+        "name": "DONS ET LIB\u00c9RALIT\u00c9S ACCORD\u00c9S"
+       }, 
+       {
+        "name": "CHARGES PROVISIONN\u00c9ES H.A.O."
+       }, 
+       {
+        "name": "ABANDONS DE CR\u00c9ANCES CONSENTIS"
+       }, 
+       {
+        "name": "CHARGES H.A.O. CONSTAT\u00c9ES"
+       }
+      ], 
+      "name": "CHARGES HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMMOBILISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "name": "R\u00e9sultat d'exploitation"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Insuffisance brute d'exploitation (d\u00e9biteur)"
+         }, 
+         {
+          "name": "Exc\u00e9dent brut d'exploitation (cr\u00e9diteur)"
+         }
+        ], 
+        "name": "Exc\u00e9dent brut d'exploitation"
+       }, 
+       {
+        "name": "Valeur ajout\u00e9e"
+       }, 
+       {
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }
+      ], 
+      "name": "VALEURS COMPTABLES DES CESSIONS D'IMMOBILISATIONS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "REPRISES DE SUBVENTIONS D\u2019INVESTISSEMENT"
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS POUR D\u00c9PR\u00c9CIATION H.A.O."
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS R\u00c9GLEMENT\u00c9ES"
+       }, 
+       {
+        "name": "REPRISES D\u2019AMORTISSEMENTS"
+       }, 
+       {
+        "name": "AUTRES REPRISES H.A.O."
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS POUR RISQUES ET CHARGES H.A.O."
+       }
+      ], 
+      "name": "REPRISES HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DOTATIONS AUX PROVISIONS POUR RISQUES ET CHARGES H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX AMORTISSEMENTS H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX PROVISIONS R\u00c9GLEMENT\u00c9ES"
+       }, 
+       {
+        "name": "AUTRES DOTATIONS H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX PROVISIONS POUR D\u00c9PR\u00c9CIATION H.A.O."
+       }
+      ], 
+      "name": "DOTATIONS HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DONS ET LIB\u00c9RALIT\u00c9S OBTENUS"
+       }, 
+       {
+        "name": "ABANDONS DE CR\u00c9ANCES OBTENUS"
+       }, 
+       {
+        "name": "TRANSFERTS DE CHARGES H.A.O"
+       }, 
+       {
+        "name": "REPRISES DES CHARGES PROVISIONN\u00c9ES H.A.O."
+       }, 
+       {
+        "name": "PRODUITS H.A.O CONSTAT\u00c9S"
+       }
+      ], 
+      "name": "PRODUITS HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "RAPPEL D'IMP\u00d4TS SUR R\u00c9SULTATS ANT\u00c9RIEURS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "D\u00e9gr\u00e8vements"
+         }, 
+         {
+          "name": "Annulations pour pertes r\u00e9troactives"
+         }
+        ], 
+        "name": "D\u00c9GR\u00c8VEMENTS ET ANNULATIONS D\u2019IMP\u00d4TS SUR R\u00c9SULTATS ANT\u00c9RIEURS"
+       }, 
+       {
+        "name": "IMP\u00d4T MINIMUM FORFAITAIRE (I.M.F.)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activit\u00e9s exerc\u00e9es dans l'\u00c9tat"
+         }, 
+         {
+          "name": "Activit\u00e9s exerc\u00e9es hors R\u00e9gion"
+         }, 
+         {
+          "name": "Activit\u00e9s exerc\u00e9es dans les autres \u00c9tats de la R\u00e9gion"
+         }
+        ], 
+        "name": "IMP\u00d4TS SUR LES B\u00c9N\u00c9FICES DE L'EXERCICE"
+       }
+      ], 
+      "name": "IMP\u00d4TS SUR LE R\u00c9SULTAT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "COLLECTIVIT\u00c9S PUBLIQUES"
+       }, 
+       {
+        "name": "AUTRES"
+       }, 
+       {
+        "name": "\u00c9TAT"
+       }, 
+       {
+        "name": "GROUPE"
+       }
+      ], 
+      "name": "SUBVENTIONS D'\u00c9QUILIBRE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PARTICIPATION L\u00c9GALE AUX B\u00c9N\u00c9FICES"
+       }, 
+       {
+        "name": "AUTRES PARTICIPATIONS"
+       }, 
+       {
+        "name": "PARTICIPATION CONTRACTUELLE AUX B\u00c9N\u00c9FICES"
+       }
+      ], 
+      "name": "PARTICIPATION DES TRAVAILLEURS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMMOBILISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }
+      ], 
+      "name": "PRODUITS DES CESSIONS D'IMMOBILISATIONS"
+     }
+    ], 
+    "name": "Comptes sp\u00e9ciaux"
+   }
+  ], 
+  "name": "Plan Comptable SYSCOA"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/gr_l10n_gr_chart_template.json b/setup/doctype/company/charts/gr_l10n_gr_chart_template.json
new file mode 100644
index 0000000..96fa860
--- /dev/null
+++ b/setup/doctype/company/charts/gr_l10n_gr_chart_template.json
@@ -0,0 +1,6 @@
+{
+ "name": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03bf\u03cd \u039b\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5", 
+ "root": {
+  "name": "\u0393\u03b5\u03bd\u03b9\u03ba\u03cc \u039b\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/hn_cuentas_plantilla.json b/setup/doctype/company/charts/hn_cuentas_plantilla.json
new file mode 100644
index 0000000..b5bdd5d
--- /dev/null
+++ b/setup/doctype/company/charts/hn_cuentas_plantilla.json
@@ -0,0 +1,365 @@
+{
+ "name": "Plantilla de cuentas de Honduras (sencilla)", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos de Ventas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Gastos de Ventas"
+         }
+        ], 
+        "name": "Gastos de Ventas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos no Deducibles", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Gastos no Deducibles"
+         }
+        ], 
+        "name": "Gastos no Deducibles"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos de Administraci\u00f3n", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Gastos de Administraci\u00f3n"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros Gastos de Operaci\u00f3n", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Otros Gastos de Operaci\u00f3n"
+         }
+        ], 
+        "name": "Gastos de Operaci\u00f3n"
+       }
+      ], 
+      "name": "Gastos"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costos de Ventas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costos de Ventas"
+         }
+        ], 
+        "name": "Costos"
+       }
+      ], 
+      "name": "Egresos"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intereses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros Gastos Financieros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Otros Gastos y Productos Financieros"
+         }
+        ], 
+        "name": "Otros Gastos y Productos Financieros"
+       }
+      ], 
+      "name": "Otros Gastos y Productos Financieros"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Descuentos Sobre Ventas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas Netas"
+         }
+        ], 
+        "name": "Ventas"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros Ingresos", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Otros Ingresos"
+         }
+        ], 
+        "name": "Otros Ingresos"
+       }
+      ], 
+      "name": "Ingresos"
+     }
+    ], 
+    "name": "Estado de Resultados"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "ISV por Pagar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "ISV por Pagar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas y Documentos por Pagar", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas y Documentos por Pagar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Impuestos", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Impuestos"
+         }
+        ], 
+        "name": "Pasivo Corto Plazo"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Anticipos", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cr\u00e9ditos Diferidos"
+         }
+        ], 
+        "name": "Cr\u00e9ditos Diferidos"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisi\u00f3n para Indemnizaciones", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Provisi\u00f3n para Indemnizaciones"
+         }
+        ], 
+        "name": "Pasivo a Largo Plazo"
+       }
+      ], 
+      "name": "Pasivo"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reservas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Perdidas y Ganancias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Capital Autorizado, Suscr\u00edto y Pagado", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de los Accionistas"
+         }
+        ], 
+        "name": "Patrimonio de los Accionistas"
+       }
+      ], 
+      "name": "Patrimonio"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inventario"
+         }, 
+         {
+          "children": [
+           {
+            "name": "ISV por Cobrar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Retenciones de ISV recibidas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "ISV por Cobrar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestamos al Personal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por Cobrar Empresas Afilidas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por Cobrar Generales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras Cuentas por Cobrar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y Documentos por Cobrar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Caja Chica", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y Bancos"
+         }
+        ], 
+        "name": "Activo Corriente"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Propiedad, Planta y Equipo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Propiedad, Planta y Equipo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaciones Acumuladas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaciones Acumuladas"
+         }
+        ], 
+        "name": "No Corriente"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos de Organizaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Gastos de Organizaci\u00f3n"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos por Amortizar", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Gastos por Amortizar"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos Anticipados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Gastos Anticipados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros Activos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros Activos"
+         }
+        ], 
+        "name": "Diferido"
+       }
+      ], 
+      "name": "Activo"
+     }
+    ], 
+    "name": "Balance General"
+   }
+  ], 
+  "name": "Plan contable de Honduras (sencillo)"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/import_from_openerp.py b/setup/doctype/company/charts/import_from_openerp.py
new file mode 100644
index 0000000..ebf8d0d
--- /dev/null
+++ b/setup/doctype/company/charts/import_from_openerp.py
@@ -0,0 +1,141 @@
+"""
+Import chart of accounts from OpenERP sources
+"""
+from __future__ import unicode_literals
+
+import os, json
+from xml.etree import ElementTree as ET
+from webnotes.utils.datautils import read_csv_content
+
+path = "/Users/rmehta/Downloads/openerp/openerp/addons"
+chart_roots = []
+
+accounts = {}
+charts = {}
+types = {}
+
+def go():
+	find_charts()
+	make_maps()
+	make_trees()
+	make_charts()
+
+def make_charts():
+	"""write chart files in app/setup/doctype/company/charts"""
+	for chart_id in charts:
+		src = charts[chart_id]
+		
+		if not src.get("name") or not src.get("account_root_id"):
+			continue
+			
+		if not src["account_root_id"] in accounts:
+			continue
+
+		filename = src["id"][5:] + "_" + chart_id
+		
+		print "building " + filename
+		chart = {}
+		chart["name"] = src["name"]
+		chart["root"] = accounts[src["account_root_id"]]
+		
+		with open(os.path.join("app", "setup", "doctype", "company", 
+			"charts", filename + ".json"), "w") as chartfile:
+			chartfile.write(json.dumps(chart, indent=1, sort_keys=True))
+
+def make_trees():
+	"""build tree hierarchy"""
+	print "making trees..."
+	for id in accounts.keys():
+		account = accounts[id]
+		if account.get("parent_id") and accounts[account["parent_id"]]:
+			accounts[account["parent_id"]]["children"].append(account)
+			del account["parent_id"]
+
+	# remove empty children
+	for id in accounts.keys():
+		if "children" in accounts[id] and not accounts[id].get("children"):
+			del accounts[id]["children"]
+
+def make_maps():
+	"""make maps for `charts` and `accounts`"""
+	print "making maps..."
+	for root in chart_roots:
+		for node in root[0].findall("record"):
+			if node.get("model")=="account.account.template":
+				data = {}
+				for field in node.findall("field"):
+					if field.get("name")=="name":
+						data["name"] = field.text
+					if field.get("name")=="parent_id":
+						data["parent_id"] = field.get("ref")
+					if field.get("name")=="user_type":
+						value = field.get("ref")
+						if types.get(value, {}).get("root_type"):
+							data["root_type"] = types[value]["root_type"]
+						else:
+							if "asset" in value: data["root_type"] = "Asset"
+							if "liability" in value: data["root_type"] = "Liability"
+							if "income" in value: data["root_type"] = "Income"
+							if "expense" in value: data["root_type"] = "Expense"
+					
+				data["children"] = []
+					
+				accounts[node.get("id")] = data
+	
+			if node.get("model")=="account.chart.template":
+				data = {}
+				for field in node.findall("field"):
+					if field.get("name")=="name":
+						data["name"] = field.text
+					if field.get("name")=="account_root_id":
+						data["account_root_id"] = field.get("ref")
+					data["id"] = root.get("folder")
+				charts.setdefault(node.get("id"), {}).update(data)
+			
+			if node.get("model")=="account.account.type":
+				data = {}
+				for field in node.findall("field"):
+					if field.get("name")=="report_type":
+						data["root_type"] = field.text.title()
+				types[node.get("id")] = data
+					
+def find_charts():
+	print "finding charts..."
+	for basepath, folders, files in os.walk(path):
+		basename = os.path.basename(basepath)
+		if basename.startswith("l10n"):
+			for fname in files:
+				filepath = os.path.join(basepath, fname)
+				if fname.endswith(".xml"):
+					tree = ET.parse(filepath)
+					root = tree.getroot()
+					for node in root[0].findall("record"):
+						if node.get("model") in ["account.account.template", 
+							"account.chart.template", "account.account.type"]:
+							chart_roots.append(root)
+							root.set("folder", basename)
+							break
+				
+				if fname.endswith(".csv"):
+					with open(filepath, "r") as csvfile:
+						try:
+							content = read_csv_content(csvfile.read())
+						except Exception, e:
+							continue
+					
+					if content[0][0]=="id":
+						for row in content[1:]:
+							data = dict(zip(content[0], row))
+							account = {
+								"name": data.get("name"),
+								"parent_id": data.get("parent_id:id"),
+								"children": []
+							}
+							accounts[data.get("id")] = account
+							if not account.get("parent_id"):
+								chart_id = data.get("chart_id:id")
+								charts.setdefault(chart_id, {}).update({
+									"account_root_id": data.get("id")})
+
+if __name__=="__main__":
+	go()
\ No newline at end of file
diff --git a/setup/doctype/company/charts/in_indian_chart_template_private.json b/setup/doctype/company/charts/in_indian_chart_template_private.json
new file mode 100644
index 0000000..cd5d309
--- /dev/null
+++ b/setup/doctype/company/charts/in_indian_chart_template_private.json
@@ -0,0 +1,1126 @@
+{
+ "name": "India - Chart of Accounts for Private Ltd/Partnership", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Loss on Sale of Assets", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Non-Operating Expenses and Losses", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Produits finis", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valeur d'acquisition", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "PRODUITS FINIS", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rebuts", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "D\u00e9chets", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Travaux en cours", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Produits en cours de fabrication", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Produits semi-ouvr\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Travaux en association momentan\u00e9e", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valeur d'acquisition", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "EN COURS DE FABRICATION", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valeur d'acquisition", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Product Sales", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imprim\u00e9s et fournitures de bureau", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de services sociaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Emballages perdus", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Emballages commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8res d'approvisionnement", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Energie, charbon, coke, Mazout, essence, propane", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures diverses et petit outillage", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Service Revenues", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Operating Revenue Accounts", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Interest Revenues", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Gain on Sale of Assets", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Non-Operating Revenue and Gains", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Income", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "name": "B\u00e9n\u00e9fice pris en compte", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Valeur d'acquisition", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "COMMANDES EN COURS D'EXECUTION", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acomptes vers\u00e9s", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "ACOMPTES VERSES SUR ACHATS POUR STOCKS", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "R\u00e9ductions de valeurs act\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Immeuble B", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Immeuble A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Immeubles construits en vue de leur revente", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Immeuble A", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Immeuble B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valeur d'acquisition", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMEUBLES DESTINES A LA VENTE", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Groupe B", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Groupe A", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Valeur d'acquisition", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "MARCHANDISES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Rent Expense", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Supplies Expense", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Revenus des actions", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Revenus des obligations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Revenus des cr\u00e9ances \u00e0 plus d'un an", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Depreciation Expense", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Salaries Expense", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es"
+         }, 
+         {
+          "name": "Wages Expense", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Caisse principale"
+           }
+          ], 
+          "name": "Utilities Expense", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Loyers divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Charges locatives", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Advertising Expense", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Telephone Expense", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Operating Expense Accounts", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Expense", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Profit And Loss"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Plus-values act\u00e9es sur terrains", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements sur frais d'acquisition", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "R\u00e9ductions de valeur sur terrains", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements et r\u00e9ductions de valeur", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Terrains", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Frais d'acquisition sur terrains", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Wages Payable", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Co\u00fbt des frais de restructuration", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur frais de restructuration", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Frais de restructuration", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortissements sur agios sur emprunts et frais d'\u00e9mission d'emprunts", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Agios sur emprunts et frais d'\u00e9mission d'emprunts", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Frais d'\u00e9mission d'emprunts et primes de remboursement", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortissements sur frais de constitution et d'augmentation de capital", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Frais de constitution et d'augmentation de capital", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Frais de constitution et d'augmentation de capital", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortissements sur int\u00e9r\u00eats intercalaires", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Int\u00e9r\u00eats intercalaires", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Int\u00e9r\u00eats intercalaires", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres frais d'\u00e9tablissement", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur autres frais d'\u00e9tablissement", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres frais d'\u00e9tablissement", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Plus-values act\u00e9es sur mat\u00e9riel de bureau et service social", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Plus-values act\u00e9es sur mobilier", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements sur mobilier", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Amortissements sur mat\u00e9riel de bureau et service social", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mobilier oeuvres sociales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mobilier des autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mobilier des b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mobilier des b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Mobilier", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Des b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Des b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Des autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Des oeuvres sociales", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Mat\u00e9riel de bureau et de service social", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Unearned Revenues", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserve and Surplus Account", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Installation de conditionnement d'air", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installation de chauffage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installation de chargement", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installation d'\u00e9lectricit\u00e9", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installation d'eau", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installation de gaz", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installation de vapeur", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Interest Payable", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Frais de recherche et de mise au point", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur frais de recherche et de mise au point", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es sur frais de recherche et de mise au point", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Notes Payable", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Exice Duty Payable", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Sales Tax Payable", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Service Tax Payable", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "VAT Payable", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tax payable", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Accounts Payable"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Terrains", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements et r\u00e9ductions de valeur sur terrains et constructions en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values sur emphyt\u00e9ose, leasing et droits similaires : terrains et constructions", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mortgage Loan Payable", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Liabilities", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Montants transf\u00e9r\u00e9s aux r\u00e9sultats", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "SUBSIDES EN CAPITAL", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Perte report\u00e9e", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "BENEFICE (PERTE) REPORTE(E)", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acomptes re\u00e7us sur commandes", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Autres emprunts", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Banque B", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Banque A", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Promesses", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Banque A", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Banque B", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Dettes en compte", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Banque A", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Banque B", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cr\u00e9dits d'acceptation", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Etablissements de cr\u00e9dit", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes sur droits r\u00e9els sur immeubles", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Dettes de location-financement de biens immobiliers", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Dettes de location-financement de biens mobiliers", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Dettes de location-financement et assimil\u00e9s", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Non convertibles", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Convertibles", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Emprunts obligataires non subordonn\u00e9s", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes envers les coparticipants des associations momentan\u00e9es et en participation", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Autres entreprises avec lesquelles il existe un lien de participation", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Autres dettes diverses", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Administrateurs, g\u00e9rants, associ\u00e9s", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Entreprises li\u00e9es", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Rentes viag\u00e8res capitalis\u00e9es", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Dettes diverses", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "DETTES A PLUS D'UN AN", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisions pour grosses r\u00e9parations et gros entretiens", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisions pour s\u00fbret\u00e9s personnelles ou r\u00e9elles constitu\u00e9es \u00e0 l'appui de dettes et d'engagements de tiers", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisions pour engagements relatifs \u00e0 l'acquisition ou \u00e0 la cession d'immobilisations", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisions pour ex\u00e9cution de commandes pass\u00e9es ou re\u00e7ues", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisions pour positions et march\u00e9s \u00e0 terme en devises ou positions et march\u00e9s \u00e0 terme en marchandises", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisions pour charges fiscales", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisions pour autres risques et charges", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisions pour garanties techniques attach\u00e9es aux ventes et prestations d\u00e9j\u00e0 effectu\u00e9es par l'entreprise", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pour risques divers ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Provision pour d\u00e9part de personnel", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Provision pour charge de liquidation", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pour propre assureur", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pour risques inh\u00e9rents aux op\u00e9rations de cr\u00e9dits \u00e0 moyen ou long terme", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pour litiges en cours", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pour amendes, doubles droits, p\u00e9nalit\u00e9s", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Provisions pour autres risques et charges", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "PROVISIONS POUR RISQUES ET CHARGES", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "PRIMES D'EMISSION", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Fournisseurs C.E.E.", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Fournisseurs belges", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Fournisseurs importation", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Fournisseurs ordinaires", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Entreprises li\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises avec lesquelles il existe un lien de participation", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Entreprises apparent\u00e9es", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Effets \u00e0 payer", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Entreprises avec lesquelles il existe un lien de participation", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises li\u00e9es", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Entreprises apparent\u00e9es", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournisseurs importation", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Fournisseurs belges", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Fournisseurs C.E.E.", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Fournisseurs ordinaires", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Fournisseurs : dettes en compte", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Buildings", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Non convertibles", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Convertibles", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Land", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Accumulated Depreciation - Buildings", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Prepaid Insurance", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Merchandise Inventory", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises de r\u00e9ductions de valeur", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Plus-values de r\u00e9\u00e9valuation", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Accounts Receivable"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital amorti", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital non amorti", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital souscrit ou capital personnel", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Cash"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Op\u00e9rations courantes", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Imp\u00f4ts personnels", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "R\u00e9mun\u00e9rations et autres avantages", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Compte de l'exploitant", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Supplies", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Accumulated Depreciation - Equipment", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Equipment", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Tax Receivable", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Assets", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "R\u00e9serve pour renouvellement des immobilisations", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "R\u00e9serve pour r\u00e9gularisation de dividendes", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "R\u00e9serve pour installations en faveur du personnel  1333 R\u00e9serves libres", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "R\u00e9serves disponibles", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "R\u00e9serves immunis\u00e9es", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres r\u00e9serves indisponibles", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "R\u00e9serve pour actions propres", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "R\u00e9serves indisponibles", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "R\u00e9serve l\u00e9gale", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "RESERVES", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Reprises de r\u00e9ductions de valeur", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Plus-values de r\u00e9\u00e9valuation", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Plus-values de r\u00e9\u00e9valuation sur immobilisations financi\u00e8res", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Plus-values de r\u00e9\u00e9valuation sur stocks", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reprises de r\u00e9ductions de valeur sur placements de tr\u00e9sorerie", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Plus-values de r\u00e9\u00e9valuation", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Reprises de r\u00e9ductions de valeur", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Plus-values de r\u00e9\u00e9valuation sur immobilisations corporelles", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "PLUS-VALUES DE REEVALUATION", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "COMPTES DE LIAISON DES ETABLISSEMENTS ET SUCCURSALES", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Balance Sheet"
+   }
+  ], 
+  "name": "Partnership/Private Firm Chart of Account"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/in_indian_chart_template_public.json b/setup/doctype/company/charts/in_indian_chart_template_public.json
new file mode 100644
index 0000000..972627a
--- /dev/null
+++ b/setup/doctype/company/charts/in_indian_chart_template_public.json
@@ -0,0 +1,313 @@
+{
+ "name": "India - Chart of Accounts for Public Ltd", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Payroll Dept. Telephone", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Payroll Dept. Supplies", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Payroll Dept. Payroll Taxes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Payroll Dept. Salaries", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Payroll Dept. Expenses", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "COGS - Division #3, Product Line 110", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "COGS - Division #2, Product Line 015", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "COGS - Division #1, Product Line 022", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "COGS - Division #1, Product Line 010", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Cost of Goods Sold", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Loss on Sale of Assets", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Non-Operating Expenses and Losses", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Marketing Dept. Supplies", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Marketing Dept. Salaries", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Marketing Dept. Telephone", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Marketing Dept. Payroll Taxes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Marketing Expenses", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Expense", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gain on Sale of Assets", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Non-Operating Revenue and Gains", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sales - Division #1, Product Line 010", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sales - Division #1, Product Line 022", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sales - Division #3, Product Line 110", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sales - Division #2, Product Line 015", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Operating Revenues", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Income", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Profit And Loss"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Equipment", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Accumulated Depreciation - Equipment", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Accumulated Depreciation - Vehicles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Buildings", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Accumulated Depreciation - Buildings", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Vehicles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Land", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Property, Plant, and Equipment", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tax Receivable", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inventory", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cash - Regular Checking"
+         }, 
+         {
+          "name": "Petty Cash Fund"
+         }, 
+         {
+          "name": "Allowance for Doubtful Accounts", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Supplies", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cash - Payroll Checking"
+         }, 
+         {
+          "name": "Accounts Receivable"
+         }, 
+         {
+          "name": "Prepaid Insurance", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Current Assets", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Assets", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Discount on Bonds Payable", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Mortgage Loan Payable", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Bonds Payable", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Long-term Liabilities", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserve and Surplus Account", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "VAT Payable", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Exice Duty Payable", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Service Tax Payable", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Sales Tax Payable", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tax payable", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Interest Payable", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Accounts Payable"
+         }, 
+         {
+          "name": "Notes Payable - Credit Line #2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Notes Payable - Credit Line #1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Unearned Revenues", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Wages Payable", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Current Liabilities", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Common Stock, No Par", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Retained Earnings", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Treasury Stock", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Stockholders' Equity", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Liabilities", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Balance Sheet"
+   }
+  ], 
+  "name": "Public Firm Chart of Account"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/it_l10n_it_chart_template_generic.json b/setup/doctype/company/charts/it_l10n_it_chart_template_generic.json
new file mode 100644
index 0000000..ed09a20
--- /dev/null
+++ b/setup/doctype/company/charts/it_l10n_it_chart_template_generic.json
@@ -0,0 +1,11 @@
+{
+ "name": "Italy - Generic Chart of Accounts", 
+ "root": {
+  "children": [
+   {
+    "name": "CUENTAS DE ORDEN"
+   }
+  ], 
+  "name": "PLAN DE CTAS. ECUADOR"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/lu_lu_2011_chart_1.json b/setup/doctype/company/charts/lu_lu_2011_chart_1.json
new file mode 100644
index 0000000..8c55ff0
--- /dev/null
+++ b/setup/doctype/company/charts/lu_lu_2011_chart_1.json
@@ -0,0 +1,7 @@
+{
+ "name": "PCMN Luxembourg", 
+ "root": {
+  "name": "Plan de compte Luxembourgeois - Loi de Juin 2009 (THAMINI & ADN & ACSONE)", 
+  "parent_id": null
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/ma_l10n_kzc_temp_chart.json b/setup/doctype/company/charts/ma_l10n_kzc_temp_chart.json
new file mode 100644
index 0000000..dadedd7
--- /dev/null
+++ b/setup/doctype/company/charts/ma_l10n_kzc_temp_chart.json
@@ -0,0 +1,9881 @@
+{
+ "name": "compta Kazacube", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Venituri din sconturi obtinute", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Venituri din actiuni detinute la entitatile afiliate", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus sur autres formes de participation ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances rattach\u00e9es \u00e0 des participations", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din interese de participare", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din imobilizari financiare"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Revenus des titres immobilis\u00e9s", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des pr\u00eats", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances immobilis\u00e9es", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din investitii financiare pe termen scurt", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Alte venituri financiare", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din diferente de curs valutar", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Revenus des cr\u00e9ances diverses", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances commerciales ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din creante imobilizate", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Venituri din imobilizari financiare cedate", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Castiguri din investitii pe termen scurt cedate", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din investitii financiare cedate"
+           }, 
+           {
+            "name": "Venituri din dobanzi", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENITURI FINANCIARE"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Venituri din subventii de exploatare pentru alte cheltuieli externe", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare aferente altor venituri", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru asigurari si protectie sociala", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru dobanda datorata", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru materii prime si materiale consumabile ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru alte cheltuieli de exploatare", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare aferente cifrei de afaceri", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru plata personalului", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din subventii de exploatare"
+           }
+          ], 
+          "name": "VENITURI DIN SUBVENTII DE EXPLOATARE"
+         }
+        ], 
+        "name": "CONTURI DE VENITURI"
+       }, 
+       {
+        "name": "CONTURI DE CHELTUIELI"
+       }
+      ], 
+      "name": "Conturile de venituri si cheltuieli"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Diferente de pret la materii prime si materiale"
+           }, 
+           {
+            "name": "Materiale de natura obiectelor de inventar"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Seminte si materiale de plantat"
+             }, 
+             {
+              "name": "Combustibili"
+             }, 
+             {
+              "name": "Materiale auxiliare"
+             }, 
+             {
+              "name": "Furaje"
+             }, 
+             {
+              "name": "Alte materiale consumabile"
+             }, 
+             {
+              "name": "Materiale pentru ambalat"
+             }, 
+             {
+              "name": "Piese de schimb"
+             }
+            ], 
+            "name": "Materiale consumabile"
+           }, 
+           {
+            "name": "Materii prime"
+           }
+          ], 
+          "name": "STOCURI DE MATERII PRIME SI MATERIALE"
+         }
+        ], 
+        "name": "CONTURI DE STOCURI SI PRODUCTIE IN CURS DE EXECUTIE"
+       }, 
+       {
+        "name": "CONTURI DE IMOBILIZARI"
+       }, 
+       {
+        "name": "CONTURI DE TREZORERIE"
+       }, 
+       {
+        "name": "Conturi de capitaluri"
+       }, 
+       {
+        "name": "CONTURI DE TERTI"
+       }
+      ], 
+      "name": "Conturi de bilant"
+     }
+    ], 
+    "name": "Conturi financiare"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Decontari privind interesele de participare"
+         }, 
+         {
+          "name": "OP\u00c9RATIONS AVEC LES AUTRES ORGANISMES INTERNATIONAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour garanties donn\u00e9es aux clients"
+           }, 
+           {
+            "name": "Provisions pour amendes, doubles droits et p\u00e9nalit\u00e9s"
+           }, 
+           {
+            "name": "Autres provisions pour risques et charges"
+           }, 
+           {
+            "name": "Provisions pour pertes de change"
+           }, 
+           {
+            "name": "Provisions pour imp\u00f4ts"
+           }, 
+           {
+            "name": "Provisions pour litiges"
+           }
+          ], 
+          "name": "Autres provisions pour risques et charges"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente decontarilor intre entitatile afiliate"
+           }, 
+           {
+            "name": "Decontari privind interesele de participare"
+           }, 
+           {
+            "name": "Dobanzi aferente decontarilor privind interesele de participare"
+           }, 
+           {
+            "name": "Decontari intre entitatile afiliate"
+           }
+          ], 
+          "name": "OP\u00c9RATIONS AVEC LES ORGANISMES AFRICAINS"
+         }, 
+         {
+          "name": "Dividende de plata"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionari/asociati dobanzi la conturi curente"
+           }, 
+           {
+            "name": "Actionari/asociati - conturi curente"
+           }
+          ], 
+          "name": "Sume datorate actionarilor/asociatilor"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Organismes internationaux, subventions \u00e0 recevoir"
+           }, 
+           {
+            "name": "Organismes internationaux, fonds de dotation \u00e0 recevoir"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "ORGANISMES INTERNATIONAUX, FONDS DE DOTATION ET SUBVENTIONS \u00c0 RECEVOIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionnaires d\u00e9faillants"
+           }, 
+           {
+            "name": "Associ\u00e9s - Versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Apports en num\u00e9raire"
+             }, 
+             {
+              "name": "Apports en nature"
+             }
+            ], 
+            "name": "Associ\u00e9s - Comptes d'apport en soci\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Associ\u00e9s - Capital \u00e0 rembourser"
+           }, 
+           {
+            "name": "Associ\u00e9s - Versements anticip\u00e9s"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Associ\u00e9s - Capital appel\u00e9, non vers\u00e9"
+             }, 
+             {
+              "name": "Actionnaires - Capital souscrit et appel\u00e9, non vers\u00e9"
+             }
+            ], 
+            "name": "Apporteurs - Capital appel\u00e9, non vers\u00e9"
+           }
+          ], 
+          "name": "Decontari cu actionarii/asociatii privind capitalul"
+         }
+        ], 
+        "name": "ORGANISMES INTERNATIONAUX"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres repr\u00e9sentants du personnel"
+           }, 
+           {
+            "name": "D\u00e9l\u00e9gu\u00e9s du personnel"
+           }, 
+           {
+            "name": "Syndicats et Comit\u00e9s d'entreprises, d'\u00c9tablissement"
+           }
+          ], 
+          "name": "REPR\u00c9SENTANTS DU PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte creante in legatura cu personalul"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Dettes provisionn\u00e9es pour cong\u00e9s \u00e0 payer"
+           }, 
+           {
+            "name": "Dettes provisionn\u00e9es pour participation des salari\u00e9s aux r\u00e9sultats", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres Charges \u00e0 payer"
+           }
+          ], 
+          "name": "PERSONNEL, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "PERSONNEL \u2013 D\u00c9P\u00d4TS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serve sp\u00e9ciale", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Organismes sociaux rattach\u00e9s \u00e0 l'entreprise"
+           }, 
+           {
+            "name": "Assistance m\u00e9dicale"
+           }, 
+           {
+            "name": "Allocations familiales"
+           }, 
+           {
+            "name": "Autres oeuvres sociales internes"
+           }
+          ], 
+          "name": "PERSONNEL, OEUVRES SOCIALES INTERNES"
+         }, 
+         {
+          "name": "PERSONNEL, R\u00c9MUN\u00c9RATIONS DUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel, acomptes"
+           }, 
+           {
+            "name": "Personnel, avances"
+           }, 
+           {
+            "name": "Frais avanc\u00e9s et fournitures au personnel"
+           }
+          ], 
+          "name": "PERSONNEL, AVANCES ET ACOMPTES"
+         }, 
+         {
+          "name": "PERSONNEL, PARTICIPATION AUX B\u00c9N\u00c9FICES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel, saisies-arr\u00eats"
+           }, 
+           {
+            "name": "Personnel, avis \u00e0 tiers d\u00e9tenteur"
+           }, 
+           {
+            "name": "Personnel, oppositions"
+           }
+          ], 
+          "name": "PERSONNEL, OPPOSITIONS, SAISIES-ARR\u00caTS"
+         }
+        ], 
+        "name": "PERSONNEL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances litigieuses"
+           }, 
+           {
+            "name": "Cr\u00e9ances douteuses"
+           }
+          ], 
+          "name": "CR\u00c9ANCES CLIENTS LITIGIEUSES OU DOUTEUSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances en compte"
+           }, 
+           {
+            "name": "Effets \u00e0 recevoir"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR CESSIONS D'IMMOBILISATIONS"
+         }, 
+         {
+          "name": "Clients et comptes rattach\u00e9s "
+         }, 
+         {
+          "name": "Efecte de primit de la clienti"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - Groupe"
+           }, 
+           {
+            "name": "Clients, \u00c9tat et Collectivit\u00e9s publiques"
+           }, 
+           {
+            "name": "Clients"
+           }, 
+           {
+            "name": "Clients, d\u00e9gr\u00e8vement de Taxes sur la Valeur Ajout\u00e9e (T.V.A.)"
+           }, 
+           {
+            "name": "Clients, organismes internationaux"
+           }, 
+           {
+            "name": "Clients - Ventes de biens ou de prestations de services"
+           }, 
+           {
+            "name": "Clienti"
+           }, 
+           {
+            "name": "Client, retenues de garantie"
+           }
+          ], 
+          "name": "CLIENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients, factures \u00e0 \u00e9tablir"
+           }, 
+           {
+            "name": "Clients - Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Clients, int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "CLIENTS, PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "CLIENTS, \u00c9FFETS ESCOMPT\u00c9S NON \u00c9CHUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat et Collectivit\u00e9s publiques, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Organismes Internationaux, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Clients - Groupe, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Clients, Effets \u00e0 recevoir"
+           }
+          ], 
+          "name": "CLIENTS, \u00c9FFETS \u00c0 RECEVOIR EN PORTEFEUILLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - Groupe, avances et acomptes re\u00e7us"
+           }, 
+           {
+            "name": "Clients, avances et acomptes re\u00e7us"
+           }, 
+           {
+            "name": "Clients - Autres avoirs ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Clients - Dettes pour emballages et mat\u00e9riels consign\u00e9s ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Clients, dettes pour emballages et mat\u00e9riels consign\u00e9s"
+           }, 
+           {
+            "name": "Rabais, Remises, Ristournes et autres avoirs \u00e0 accorder"
+           }
+          ], 
+          "name": "CLIENTS CR\u00c9DITEURS"
+         }
+        ], 
+        "name": "CLIENTS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES FOURNISSEURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres comptes d\u00e9biteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s, comptes courants"
+           }, 
+           {
+            "name": "Associ\u00e9s, op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Groupe, comptes courants"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions de valeurs mobili\u00e8res de placement"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ASSOCI\u00c9S ET GROUPE"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES D\u00c9BITEURS DIVERS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur op\u00e9rations H.A.O."
+           }, 
+           {
+            "name": "Sur op\u00e9rations d'exploitation"
+           }
+          ], 
+          "name": "RISQUES PROVISIONN\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances sur cessions d'immobilisations"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions de titres de placement"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances H.A.O."
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES DE CR\u00c9ANCES H.A.O."
+         }, 
+         {
+          "children": [
+           {
+            "name": "Op\u00e9rations faites en commun et en GIE", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Comptes du groupe", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Comptes courants des associ\u00e9s", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ORGANISMES INTERNATIONAUX"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES \u00c9TAT ET COLLECTIVIT\u00c9S PUBLIQUES"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ORGANISMES SOCIAUX"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances douteuses"
+           }, 
+           {
+            "name": "Cr\u00e9ances litigieuses"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES CLIENTS"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS ET RISQUES PROVISIONN\u00c9S (TIERS)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "DETTES SUR ACQUISITION DE TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "Quotas d'\u00e9mission allou\u00e9s par l'\u00c9tat"
+         }, 
+         {
+          "name": "AUTRES DETTES HORS ACTIVITES ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Produits"
+           }
+          ], 
+          "name": "AUTRES CR\u00c9ANCES HORS ACTIVIT\u00c9S ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "name": "CR\u00c9ANCES SUR CESSIONS DE TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "Produits constat\u00e9s d'avance", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Factures non parvenues"
+           }, 
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Immobilisations corporelles"
+           }, 
+           {
+            "name": "Immobilisations incorporelles"
+           }
+          ], 
+          "name": "FOURNISSEURS D'INVESTISSEMENTS"
+         }, 
+         {
+          "name": "FOURNISSEURS D'INVESTISSEMENTS, EFFETS \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "En compte"
+           }, 
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Factures \u00e0 \u00e9tablir"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR CESSIONS D'IMMOBILISATIONS"
+         }
+        ], 
+        "name": "CR\u00c9ANCES ET DETTES HORS ACTIVIT\u00c9S ORDINAIRES (HAO)"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Alte sume primite cu caracter de subventii pentru investitii"
+           }, 
+           {
+            "name": "Plusuri de inventar de natura imobilizarilor"
+           }, 
+           {
+            "name": "Subventii guvernamentale pentru investitii"
+           }, 
+           {
+            "name": "Donatii pentru investitii"
+           }, 
+           {
+            "name": "Imprumuturi nerambursabile cu caracter de subventii pentru investitii"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR TRAVAUX NON ENCORE FACTURABLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits"
+           }, 
+           {
+            "name": "Charges"
+           }
+          ], 
+          "name": "R\u00c9PARTITION P\u00c9RIODIQUE DES CHARGES ET DES PRODUITS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des dettes", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Augmentation des cr\u00e9ances", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PRODUITS CONSTAT\u00c9S D'AVANCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }, 
+           {
+            "name": "Diminution des cr\u00e9ances"
+           }, 
+           {
+            "name": "Augmentation des dettes"
+           }
+          ], 
+          "name": "CHARGES CONSTAT\u00c9ES D'AVANCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9biteurs divers"
+           }, 
+           {
+            "name": "Cr\u00e9diteurs divers"
+           }
+          ], 
+          "name": "COMPTES D'ATTENTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances circulantes"
+           }, 
+           {
+            "name": "Diminution des dettes circulantes"
+           }
+          ], 
+          "name": "Ecarts de conversion - passif (El\u00e9ments circulants)"
+         }, 
+         {
+          "name": "Decontari din operatiuni in curs de clarificare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres de participation"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Titres de placement"
+           }
+          ], 
+          "name": "VERSEMENTS RESTANT \u00c0 EFFECTUER SUR TITRES NON LIB\u00c9R\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des cr\u00e9ances"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }, 
+           {
+            "name": "Augmentation des dettes"
+           }
+          ], 
+          "name": "\u00c9CARTS DE CONVERSION - ACTIF"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances"
+           }, 
+           {
+            "name": "Diminution des dettes"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }
+          ], 
+          "name": "\u00c9CARTS DE CONVERSION - PASSIF"
+         }
+        ], 
+        "name": "D\u00c9BITEURS ET CR\u00c9DITEURS DIVERS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Charges \u00e0 payer"
+           }, 
+           {
+            "name": "Dettes sur acquisitions de titres et valeurs de placement"
+           }, 
+           {
+            "name": "Divers cr\u00e9anciers"
+           }, 
+           {
+            "name": "Obligations, coupons \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Obligations \u00e9chues \u00e0\u00a0 rembourser"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Alte datorii fata de bugetul statului"
+           }, 
+           {
+            "name": "Alte creante privind bugetul statului"
+           }
+          ], 
+          "name": "\u00c9TAT, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat, fonds r\u00e9glement\u00e9 provisionn\u00e9"
+           }, 
+           {
+            "name": "\u00c9tat, avances et acomptes vers\u00e9s sur imp\u00f4ts"
+           }, 
+           {
+            "name": "\u00c9tat, fonds de dotation \u00e0 recevoir"
+           }, 
+           {
+            "name": "\u00c9tat, obligations cautionn\u00e9es"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'\u00e9quilibre \u00e0 recevoir"
+           }, 
+           {
+            "name": "Comptes transitoires ou d'attente - cr\u00e9diteurs"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'\u00e9quipement \u00e0 recevoir"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'exploitation \u00e0 recevoir"
+           }
+          ], 
+          "name": "\u00c9TAT, CR\u00c9ANCES ET DETTES DIVERSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs - retenues de garantie"
+           }, 
+           {
+            "name": "Impozitul pe venit"
+           }, 
+           {
+            "name": "Avances sur subventions"
+           }, 
+           {
+            "name": "Fournisseurs - effets \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Impozitul pe profit"
+           }, 
+           {
+            "name": "Fournisseurs - factures non parvenues"
+           }
+          ], 
+          "name": "\u00c9TAT, IMP\u00d4T SUR LES B\u00c9N\u00c9FICES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4ts et taxes recouvrables sur des obligataires"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes d'Etat"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes pour les collectivit\u00e9s publiques"
+           }, 
+           {
+            "name": "Autres imp\u00f4ts et taxes"
+           }, 
+           {
+            "name": "TVA colectata"
+           }, 
+           {
+            "name": "Droits de douane"
+           }, 
+           {
+            "name": "Clients - dettes pour emballages et mat\u00e9riel consign\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes recouvrables sur des associ\u00e9s"
+           }
+          ], 
+          "name": "\u00c9TAT, AUTRES IMP\u00d4TS ET TAXES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat, cr\u00e9dit de T.V.A. \u00e0 reporter"
+           }, 
+           {
+            "name": "Autres organismes sociaux"
+           }, 
+           {
+            "name": "Mutuelles"
+           }, 
+           {
+            "name": "Charges sociales \u00e0\u00a0 payer"
+           }, 
+           {
+            "children": [
+             {
+              "name": "ALLOCATION FAMILIALES"
+             }
+            ], 
+            "name": "\u00c9tat, T.V.A. due"
+           }, 
+           {
+            "name": "Caisses de retraite"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. DUE OU CR\u00c9DIT DE T.V.A."
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Etat, TVA factur\u00e9e 10%"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA \u00e0 d\u00e9caisser", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 7%"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 20%"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 14%"
+             }
+            ], 
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur factures non parvenues"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "TVA collect\u00e9e 5,5%", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "TVA collect\u00e9e 19,6%", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "TVA collect\u00e9e (autre taux)", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "TVA collect\u00e9e"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Etat, imp\u00f4ts et taxes \u00e0\u00a0 payer"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Taxes sur le chiffre d'affaires sur factures non parvenues", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Remboursement de taxes sur le chiffre d'affaires demand\u00e9", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Acomptes - R\u00e9gime simplifi\u00e9 d'imposition", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Taxes sur le chiffre d'affaires sur factures \u00e0 \u00e9tablir", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA r\u00e9cup\u00e9r\u00e9e d'avance", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Acomptes - R\u00e9gime du forfait", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Alte sume primite cu caracter de subventii"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur immobilisations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "TVA transf\u00e9r\u00e9e par d'autres entreprises", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA sur immobilisations", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA sur autres biens et services", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA d\u00e9ductible intracommunautaire", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Cr\u00e9dit de TVA \u00e0 reporter", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "T.V.A. transf\u00e9r\u00e9e par d'autres entreprises"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur services ext\u00e9rieurs et autres charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "TVA due intracommunautaire 5,5%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA due intracommunautaire (autre taux)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA due intracommunautaire 19,6%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat, IR"
+             }, 
+             {
+              "name": "Etat, taxe urbaine et taxe d'\u00e9dilit\u00e9"
+             }, 
+             {
+              "name": "Etat, Taxe professionnelle (ex patente)"
+             }
+            ], 
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur achats"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur transport"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. R\u00c9CUP\u00c9RABLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Comptes courants des associ\u00e9s cr\u00e9diteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s - versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "name": "Associ\u00e9s - capital \u00e0\u00a0 rembourser"
+           }, 
+           {
+            "name": "Associ\u00e9s - dividendes \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Associ\u00e9s - op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Autres comptes d'associ\u00e9s - cr\u00e9diteurs"
+           }
+          ], 
+          "name": "\u00c9TAT, AUTRES TAXES SUR LE CHIFFRE D'AFFAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4t G\u00e9n\u00e9ral sur le revenu"
+           }, 
+           {
+            "name": "Imp\u00f4ts sur salaires"
+           }, 
+           {
+            "name": "Contribution nationale de solidarit\u00e9"
+           }, 
+           {
+            "name": "Contribution nationale"
+           }, 
+           {
+            "name": "Autres imp\u00f4ts et contributions"
+           }
+          ], 
+          "name": "\u00c9TAT, IMP\u00d4TS RETENUS \u00c0 LA SOURCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges du personnel \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Personnel - autres cr\u00e9diteurs"
+           }, 
+           {
+            "name": "Oppositions sur salaires"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur ventes"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur prestations de services"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur travaux"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. FACTUR\u00c9E"
+         }
+        ], 
+        "name": "\u00c9TAT ET COLLECTIVIT\u00c9S PUBLIQUES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournisseurs - Achats d'immobilisations"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisations - Retenues de garantie"
+           }
+          ], 
+          "name": "Furnizori de imobilizari"
+         }, 
+         {
+          "name": "Efecte de platit pentru imobilizari"
+         }, 
+         {
+          "name": "Fournisseurs et comptes rattach\u00e9s "
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs"
+           }, 
+           {
+            "name": "Fournisseurs Groupe"
+           }, 
+           {
+            "name": "Fournisseurs - Achats de biens et prestations de services"
+           }, 
+           {
+            "name": "Fournisseur, retenues de garantie"
+           }, 
+           {
+            "name": "Fournisseurs sous-traitants"
+           }
+          ], 
+          "name": "FOURNISSEURS, DETTES EN COMPTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs sous-traitants, Effets \u00e0 payer"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe, Effets \u00e0 payer"
+           }, 
+           {
+            "name": "Fournisseurs, Effets \u00e0 payer"
+           }
+          ], 
+          "name": "FOURNISSEURS, EFFETS \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs sous-traitants"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe"
+           }, 
+           {
+            "name": "Fournisseurs - Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Fournisseurs"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisations "
+           }, 
+           {
+            "name": "Fournisseurs, int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "FOURNISSEURS, FACTURES NON PARVENUES"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Fournisseurs d'exploitation", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fournisseurs d'immobilisations", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fournisseurs - Autres avoirs"
+           }, 
+           {
+            "name": "Fournisseurs cr\u00e9ances pour emballages et mat\u00e9riels \u00e0 rendre"
+           }, 
+           {
+            "name": "Fournisseurs avances et acomptes vers\u00e9s"
+           }, 
+           {
+            "name": "Rabais, Remises, Ristournes et autres avoirs \u00e0 obtenir"
+           }, 
+           {
+            "name": "Fournisseurs - Cr\u00e9ances pour emballages et mat\u00e9riel \u00e0 rendre", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournisseurs sous-traitants avances et acomptes vers\u00e9s"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe avances et acomptes vers\u00e9s"
+           }
+          ], 
+          "name": "FOURNISSEURS D\u00c9BITEURS"
+         }, 
+         {
+          "name": "Efecte de platit"
+         }, 
+         {
+          "name": "Furnizori"
+         }
+        ], 
+        "name": "FOURNISSEURS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes sur acquisitions de valeurs mobili\u00e8res de placement", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "ASSOCI\u00c9S, DIVIDENDES \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Charges \u00e0 payer", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Divers - Charges \u00e0 payer et produits \u00e0 recevoir"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Principal"
+           }
+          ], 
+          "name": "ASSOCI\u00c9S, COMPTES COURANTS"
+         }, 
+         {
+          "name": "ASSOCI\u00c9S, OP\u00c9RATIONS FAITES EN COMMUN"
+         }, 
+         {
+          "name": "GROUPE, COMPTES COURANTS"
+         }, 
+         {
+          "name": "ACTIONNAIRES, RESTANT D\u00db SUR CAPITAL APPEL\u00c9"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Associ\u00e9s, versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "name": "Actionnaires, capital souscrit appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Associ\u00e9s, capital appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Actionnaires d\u00e9faillants"
+           }, 
+           {
+            "name": "Associ\u00e9s, autres apports"
+           }, 
+           {
+            "name": "Associ\u00e9s, versements anticip\u00e9s"
+           }, 
+           {
+            "name": "Associ\u00e9s apports en nature"
+           }, 
+           {
+            "name": "Associ\u00e9s apports en num\u00e9raire"
+           }, 
+           {
+            "name": "Associ\u00e9s, capital \u00e0 rembourser"
+           }
+          ], 
+          "name": "ASSOCI\u00c9S, OP\u00c9RATIONS SUR LE CAPITAL"
+         }
+        ], 
+        "name": "ASSOCI\u00c9S ET GROUPE"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres charges \u00e0 payer"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Charges sociales sur cong\u00e9s \u00e0 payer"
+           }, 
+           {
+            "name": "Charges sociales sur gratifications \u00e0 payer"
+           }
+          ], 
+          "name": "ORGANISMES SOCIAUX, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "CAISSES DE RETRAITE COMPL\u00c9MENTAIRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Accidents de travail"
+           }, 
+           {
+            "name": "Autres cotisations sociales"
+           }, 
+           {
+            "name": "Contributia angajatorilor la fondul de asigurare pentru accidente de munca si boli profesionale"
+           }, 
+           {
+            "name": "Caisse de retraite obligatoire"
+           }, 
+           {
+            "name": "Contributia angajatorilor la fondul pentru concedii si indemnizatii"
+           }, 
+           {
+            "name": "Caisse de retraite facultative"
+           }, 
+           {
+            "name": "Prestations familiales"
+           }
+          ], 
+          "name": "S\u00c9CURIT\u00c9 SOCIALE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T.V.A. sur factures \u00e0 \u00e9tablir"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur production livr\u00e9e \u00e0 soi-m\u00eame"
+           }, 
+           {
+            "name": "Mutuelle"
+           }
+          ], 
+          "name": "AUTRES ORGANISMES SOCIAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contributia unitatii la fondul de garantare pentru plata creantelor salariale"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de somaj"
+           }, 
+           {
+            "name": "Contributia personalului la fondul de somaj"
+           }
+          ], 
+          "name": "Ajutor de somaj"
+         }
+        ], 
+        "name": "ORGANISMES SOCIAUX"
+       }
+      ], 
+      "name": "Comptes de tiers"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mobilier", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cheptel", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mat\u00e9riel de transport", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau et mat\u00e9riel informatique ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales agencements am\u00e9nagements divers", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES DROITS ET VALEURS INCORPORELS"
+         }, 
+         {
+          "name": "MARQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de recherche et de d\u00e9veloppement"
+           }, 
+           {
+            "name": "Logiciels"
+           }, 
+           {
+            "name": "Autres droits et valeurs incorporels"
+           }
+          ], 
+          "name": "IMMOBILISATIONS INCORPORELLES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Agencements et am\u00e9nagements du mat\u00e9riel et outillage industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Outillage industriel", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur sol d'autrui", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur sol propre", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Installations complexes sp\u00e9cialis\u00e9es"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur sol propre", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur sol d'autrui", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique"
+           }, 
+           {
+            "name": "Mat\u00e9riel industriel", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "FONDS COMMERCIAL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mijloace de transport"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations non professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Autres ensembles immobiliers"
+             }, 
+             {
+              "name": "Ensembles immobiliers industriels (A, B, ...)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ensembles immobiliers administratifs et commerciaux (A, B, ...)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Echipamente tehnologice (masini, utilaje si instalatii de lucru)"
+           }, 
+           {
+            "name": "Primes de remboursement des obligations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Voies de fer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Voies d'eau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Barrages", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Pistes d'a\u00e9rodromes", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Voies de terre", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ouvrages d'infrastructure"
+           }, 
+           {
+            "name": "Aparate si instalatii de masurare, control si reglare"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales agencements am\u00e9nagements des constructions (m\u00eame ventilation que celle du compte 2131)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Animale si plantatii"
+           }
+          ], 
+          "name": "LOGICIELS"
+         }, 
+         {
+          "name": "INVESTISSEMENTS DE CR\u00c9ATION"
+         }, 
+         {
+          "name": "DROIT AU BAIL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Autres charges \u00e0\u00a0 r\u00e9partir"
+           }, 
+           {
+            "name": "Frais d acquisition des immobilisations"
+           }
+          ], 
+          "name": "BREVETS, LICENCES, CONCESSIONS ET DROITS SIMILAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de publicit\u00e9"
+           }, 
+           {
+            "name": "Frais de prospection"
+           }, 
+           {
+            "name": "Terenuri"
+           }, 
+           {
+            "name": "Amenajari de terenuri"
+           }, 
+           {
+            "name": "Frais d'augmentation du capital"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations non professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Autres ensembles immobiliers"
+             }, 
+             {
+              "name": "Ensembles immobiliers administratifs et commerciaux (A, B, ...)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ensembles immobiliers industriels (A, B, ...)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Terrains b\u00e2tis"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Carri\u00e8res", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Frais sur op\u00e9rations de fusions, scissions et transformations"
+           }, 
+           {
+            "name": "Autres frais pr\u00e9liminaires"
+           }
+          ], 
+          "name": "FRAIS DE RECHERCHE ET DE D\u00c9VELOPPEMENT"
+         }
+        ], 
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pistes d\u2019a\u00e9rodrome"
+           }, 
+           {
+            "name": "Barrages, Digues"
+           }, 
+           {
+            "name": "Voies de terre"
+           }, 
+           {
+            "name": "Voies d\u2019eau"
+           }, 
+           {
+            "name": "Autres"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Outillage"
+             }, 
+             {
+              "name": "Mat\u00e9riel"
+             }
+            ], 
+            "name": "Voies de fer"
+           }
+          ], 
+          "name": "OUVRAGES D\u2019INFRASTRUCTURE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Installations complexes sp\u00e9cialis\u00e9es sur sol propre"
+           }, 
+           {
+            "name": "Installations complexes sp\u00e9cialis\u00e9es sur sol d\u2019autrui"
+           }, 
+           {
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique sur sol d\u2019autrui"
+           }, 
+           {
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique sur sol propre"
+           }
+          ], 
+          "name": "INSTALLATIONS TECHNIQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avances et acomptes vers\u00e9s sur commandes d'immobilisations corporelles"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours de mobilier, mat\u00e9riel de bureau et am\u00e9nagements divers"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours de mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours des installations techniques, mat\u00e9riel et outillage"
+           }, 
+           {
+            "name": "Autres immobilisations corporelles en cours"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours des terrains et constructions"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS ET INSTALLATIONS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres immobilisations corporelles"
+           }, 
+           {
+            "name": "Terrains", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Constructions", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Installations techniques mat\u00e9riel et outillage industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres immobilisations corporelles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES INSTALLATIONS ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immeubles de rapport"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "B\u00e2timents affect\u00e9s au logement du personnel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres b\u00e2timents"
+             }, 
+             {
+              "name": "B\u00e2timents industriels (A,B,,,)"
+             }, 
+             {
+              "name": "B\u00e2timents Administratifs et commerciaux"
+             }
+            ], 
+            "name": "B\u00e2timents industriels"
+           }, 
+           {
+            "name": "B\u00e2timents agricoles"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements des constructions"
+           }, 
+           {
+            "name": "Autres constructions"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES, ADMINISTRATIFS ET COMMERCIAUX SUR SOL D\u2019AUTRUI"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres terrains"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements de terrains"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "B\u00e2timents agricoles"
+           }, 
+           {
+            "name": "B\u00e2timents industriels"
+           }, 
+           {
+            "name": "Immeubles de rapport"
+           }, 
+           {
+            "name": "B\u00e2timents affect\u00e9s au logement du personnel"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES, ADMINISTRATIFS ET COMMERCIAUX SUR SOL PROPRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Agencements, installations et am\u00e9nagements divers (biens n'appartenant pas \u00e0\u00a0 l'entreprise)"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales"
+           }, 
+           {
+            "name": "Mat\u00e9riel informatique"
+           }, 
+           {
+            "name": "Autres"
+           }
+          ], 
+          "name": "AMENAGEMENTS DE BUREAUX"
+         }, 
+         {
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES ET COMMERCIAUX MIS EN CONCESSION"
+         }
+        ], 
+        "name": "B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS CORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres divers"
+           }, 
+           {
+            "name": "Actions"
+           }
+          ], 
+          "name": "Autres titres immobilis\u00e9s"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres de participation"
+           }
+          ], 
+          "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS INCORPORELLES"
+         }
+        ], 
+        "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (groupe)"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des soci\u00e9t\u00e9s en participation"
+           }, 
+           {
+            "name": "Avances \u00e0 des Groupements d'int\u00e9r\u00eat \u00e9conomique (G.I.E.)"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (hors groupe)"
+           }
+          ], 
+          "name": "CR\u00c9ANCES RATTACH\u00c9ES \u00c0 DES PARTICIPATIONS ET AVANCES \u00c0 DES G.I.E."
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00eats au personnel"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur titres immobilis\u00e9s (droits de cr\u00e9ance)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur d\u00e9p\u00f4ts et cautionnements", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur pr\u00eats", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur cr\u00e9ances diverses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Immobilisations financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur l'Etat"
+           }, 
+           {
+            "name": "Pr\u00eats et cr\u00e9ances non commerciales"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9p\u00f4ts pour le gaz"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour l\u2019\u00e9lectricit\u00e9"
+           }, 
+           {
+            "name": "Cautionnements sur autres op\u00e9rations"
+           }, 
+           {
+            "name": "Cautionnements sur march\u00e9s publics"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour le t\u00e9l\u00e9phone, le t\u00e9lex, la t\u00e9l\u00e9copie"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour l\u2019eau"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour loyers d\u2019avance"
+           }, 
+           {
+            "name": "Autres d\u00e9p\u00f4ts et cautionnements"
+           }
+          ], 
+          "name": "D\u00c9P\u00d4TS ET CAUTIONNEMENTS VERS\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Parts de fonds commun de placement (F.C.P.)"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s de l\u2019activit\u00e9 de portefeuille (T.I.A.P.)"
+           }, 
+           {
+            "name": "Titres participatifs"
+           }, 
+           {
+            "name": "Autres titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Certificats d\u2019investissement"
+           }
+          ], 
+          "name": "TITRES IMMOBILIS\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00eats aux associ\u00e9s"
+           }, 
+           {
+            "name": "Titres pr\u00eat\u00e9s"
+           }, 
+           {
+            "name": "Autres titres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Pr\u00eats participatifs"
+           }, 
+           {
+            "name": "Diminution des cr\u00e9ances immobilis\u00e9es"
+           }
+          ], 
+          "name": "PR\u00caTS ET CR\u00c9ANCES NON COMMERCIALES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances divers hors groupe"
+           }, 
+           {
+            "name": "Or et m\u00e9taux pr\u00e9cieux ()"
+           }, 
+           {
+            "name": "Cr\u00e9ances diverses groupe"
+           }
+          ], 
+          "name": "IMMOBILISATIONS FINANCI\u00c8RES DIVERSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Fonds r\u00e9glement\u00e9"
+           }, 
+           {
+            "name": "Autres"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR L\u2019\u00c9TAT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des dettes de financement"
+           }, 
+           {
+            "name": "Pr\u00eats immobiliers"
+           }, 
+           {
+            "name": "Pr\u00eats mobiliers et d\u2019installation"
+           }, 
+           {
+            "name": "Autres pr\u00eats (frais d\u2019\u00e9tudes\u2026)"
+           }
+          ], 
+          "name": "PR\u00caTS AU PERSONNEL"
+         }, 
+         {
+          "name": "Versements restant \u00e0 effectuer sur titres immobilis\u00e9s non lib\u00e9r\u00e9s", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AUTRES IMMOBLISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PARTICIPATIONS DANS DES ORGANISMES PROFESSIONNELS"
+         }, 
+         {
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S CONF\u00c9RANT UNE INFLUENCE NOTABLE"
+         }, 
+         {
+          "name": "Titluri puse in echivalenta"
+         }, 
+         {
+          "name": "PARTS DANS DES GROUPEMENTS D\u2019INT\u00c9R\u00caT \u00c9CONOMIQUE (G.I.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte creante imobilizate"
+           }, 
+           {
+            "name": "Dobanda aferenta creantelor legate de interesele de participare"
+           }, 
+           {
+            "name": "Imprumuturi acordate pe termen lung"
+           }, 
+           {
+            "name": "Dobanda aferenta imprumuturilor acordate pe termen lung"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances rattach\u00e9es \u00e0 des participations ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sume datorate de entitatile afiliate"
+           }, 
+           {
+            "name": "Dobanda aferenta sumelor datorate de entitatile afiliate"
+           }, 
+           {
+            "name": "Creante legate de interesele de participare"
+           }, 
+           {
+            "name": "Dob\u00e2nzi aferente altor creante imobilizate"
+           }
+          ], 
+          "name": "Creante imobilizate"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres titres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S SOUS CONTR\u00d4LE EXCLUSIF"
+         }, 
+         {
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S SOUS CONTR\u00d4LE CONJOINT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES TITRES DE PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Varsaminte de efectuat pentru alte imobilizari financiare"
+           }, 
+           {
+            "name": "Varsaminte de efectuat privind actiunile detinute la entitatile afiliate"
+           }, 
+           {
+            "name": "Varsaminte de efectuat privind interesele de participare"
+           }
+          ], 
+          "name": "Varsaminte de efectuat pentru imobilizari financiare"
+         }
+        ], 
+        "name": "TITRES DE PARTICIPATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel d'emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et outillage industriel et commercial"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations animales et agricoles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et mobilier"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation de mat\u00e9riel en cours"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DE MAT\u00c9RIEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances rattach\u00e9es \u00e0 des participations et avances \u00e0 des GIE"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances immobilis\u00e9es (m\u00eame ventilation que celle du compte 276)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des pr\u00eats au personnel"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des pr\u00eats et cr\u00e9ances non commerciales"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances sur l'Etat"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des d\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES AUTRES IMMOBILISATIONS FINANCI\u00c8RES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans des soci\u00e9t\u00e9s sous contr\u00f4le exclusif"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres titres de participation"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des participations dans des organismes professionnels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des parts dans des GIE"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (m\u00eame ventilation que celle du compte 267)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans les soci\u00e9t\u00e9s sous contr\u00f4le conjoint"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans les soci\u00e9t\u00e9s conf\u00e9rant une influence notable"
+           }, 
+           {
+            "name": "Ajustari pentru pierderea de valoare a sumelor datorate entitatilor afiliate"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES TITRES DE PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea terenurilor si amenajarilor de terenuri"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du droit au bail"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres droits et valeurs incorporels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des logiciels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des marques"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations incorporelles en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des brevets, licences, concessions et droits similaires"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du fonds commercial"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des investissements de cr\u00e9ation"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES IMMOBILISATIONS INCORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea fondului comercial"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea altor imobilizari necorporale"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea concesiunilor, brevetelor, licentelor, marcilor comerciale, drepturilor si activelor similare"
+           }, 
+           {
+            "name": "Droit au bail", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea cheltuielilor de dezvoltare"
+           }
+          ], 
+          "name": "Ajustari pentru deprecierea imobilizarilor necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents et installations en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol propre"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations corporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des installations techniques"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des ouvrages d'infrastructures"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol d'autrui"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles et commerciaux mis en concession"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des am\u00e9nagements de bureaux"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres installations et agencements"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains de gisement"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains nus"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains b\u00e2tis"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres terrains"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains am\u00e9nag\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des travaux de mise en valeur des terrains"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des am\u00e9nagements de terrains en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains mis en concession"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des avances et acomptes vers\u00e9s sur immobilisations incorporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des avances et acomptes vers\u00e9s sur immobilisations corporelles"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS"
+         }
+        ], 
+        "name": "PROVISIONS POUR DEPRECIATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligations convertibles"
+           }, 
+           {
+            "name": "Autres emprunts obligataires"
+           }, 
+           {
+            "name": "Obligations ordinaires"
+           }
+          ], 
+          "name": "PRIMES DE REMBOURSEMENT DES OBLIGATIONS"
+         }, 
+         {
+          "name": "Alte imobilizari necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Charges diff\u00e9r\u00e9es"
+           }, 
+           {
+            "name": "Frais d'acquisition d'immobilisations"
+           }, 
+           {
+            "name": "Charges \u00e0 \u00e9taler"
+           }
+          ], 
+          "name": "CHARGES \u00c0 R\u00c9PARTIR SUR PLUSIEURS EXERCICES"
+         }, 
+         {
+          "name": "Cheltuieli de dezvoltare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de restructuration"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais de publicit\u00e9", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Frais de prospection", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Frais de prospection"
+           }, 
+           {
+            "name": "Frais de fonctionnement ant\u00e9rieurs au d\u00e9marrage"
+           }, 
+           {
+            "name": "Frais d'entr\u00e9e \u00e0 la Bourse"
+           }, 
+           {
+            "name": "Frais de constitution"
+           }, 
+           {
+            "name": "Frais de publicit\u00e9 et de lancement"
+           }, 
+           {
+            "name": "Frais divers d'\u00e9tablissement"
+           }, 
+           {
+            "name": "Frais de modification du capital (fusions, scissions, transformations)"
+           }
+          ], 
+          "name": "FRAIS D'\u00c9TABLISSEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fond comercial negativ"
+           }, 
+           {
+            "name": "Fond comercial pozitiv"
+           }
+          ], 
+          "name": "Fond comercial"
+         }, 
+         {
+          "name": "Concesiuni, brevete, licente, marci comerciale, drepturi si active similare"
+         }
+        ], 
+        "name": "CHARGES IMMOBILIS\u00c9ES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres terrains"
+           }, 
+           {
+            "name": "Terrains nus"
+           }, 
+           {
+            "name": "Terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Terrains de gisement"
+           }
+          ], 
+          "name": "AM\u00c9NAGEMENTS DE TERRAINS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres travaux"
+           }, 
+           {
+            "name": "Plantation d'arbres et d'arbustes"
+           }
+          ], 
+          "name": "TRAVAUX DE MISE EN VALEUR DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Carri\u00e8res"
+           }
+          ], 
+          "name": "TERRAINS DE GISEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Parkings"
+           }
+          ], 
+          "name": "TERRAINS AM\u00c9NAG\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains des logements affect\u00e9s au personnel"
+           }, 
+           {
+            "name": "Terrains des immeubles de rapport"
+           }, 
+           {
+            "name": "Autres terrains"
+           }
+          ], 
+          "name": "AUTRES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains \u00e0 b\u00e2tir"
+           }, 
+           {
+            "name": "Brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "name": "Autres terrains nus"
+           }
+          ], 
+          "name": "TERRAINS NUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fonds commercial"
+           }, 
+           {
+            "name": "pour b\u00e2timents industriels et agricoles"
+           }, 
+           {
+            "name": "pour b\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "pour b\u00e2timents affect\u00e9s aux autres op\u00e9rations professionnelles"
+           }, 
+           {
+            "name": "pour b\u00e2timents affect\u00e9s aux autres op\u00e9rations non professionnelles"
+           }, 
+           {
+            "name": "Autres terrains b\u00e2tis"
+           }
+          ], 
+          "name": "TERRAINS B\u00c2TIS"
+         }, 
+         {
+          "name": "TERRAINS MIS EN CONCESSION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains d'exploitation foresti\u00e8re"
+           }, 
+           {
+            "name": "Immobilisation en recherche et d\u00e9veloppement"
+           }, 
+           {
+            "name": "Terrains d'exploitation agricole"
+           }, 
+           {
+            "name": "Autres terrains"
+           }
+          ], 
+          "name": "TERRAINS AGRICOLES ET FORESTIERS"
+         }
+        ], 
+        "name": "TERRAINS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "MAT\u00c9RIEL D\u2019EMBALLAGE R\u00c9CUP\u00c9RABLE ET IDENTIFIABLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel industriel"
+           }, 
+           {
+            "name": "Outillage commercial"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Autres pr\u00eats"
+           }, 
+           {
+            "name": "Pr\u00eats aux associ\u00e9s"
+           }, 
+           {
+            "name": "Outillage industriel"
+           }, 
+           {
+            "name": "Mat\u00e9riel commercial"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET OUTILLAGE INDUSTRIEL ET COMMERCIAL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel informatique"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier des logements du personnel"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier des immeubles de rapport"
+           }, 
+           {
+            "name": "Mobilier de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel bureautique"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET MOBILIER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bons divers"
+             }, 
+             {
+              "name": "Bons d'\u00e9quipement"
+             }, 
+             {
+              "name": "Obligations"
+             }
+            ], 
+            "name": "Collections et oeuvres d\u2019art"
+           }, 
+           {
+            "name": "Cr\u00e9ances immobilis\u00e9es"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cautionnements"
+             }, 
+             {
+              "name": "D\u00e9p\u00f4ts"
+             }
+            ], 
+            "name": "D\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }
+          ], 
+          "name": "AUTRES MAT\u00c9RIELS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Immobilisations animales et agricoles"
+           }, 
+           {
+            "name": "Mat\u00e9riel d\u2019emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Mat\u00e9riel et outillage industriel et commercial"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres"
+           }, 
+           {
+            "name": "Cheptel, animaux de trait"
+           }, 
+           {
+            "name": "Plantations agricoles"
+           }, 
+           {
+            "name": "Cheptel, animaux reproducteurs"
+           }, 
+           {
+            "name": "Animaux de garde"
+           }
+          ], 
+          "name": "IMMOBILISATIONS ANIMALES ET AGRICOLES"
+         }, 
+         {
+          "name": "AGENCEMENTS ET AM\u00c9NAGEMENTS DU MAT\u00c9RIEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel naval"
+           }, 
+           {
+            "name": "Mat\u00e9riel hippomobile"
+           }, 
+           {
+            "name": "Mat\u00e9riel automobile"
+           }, 
+           {
+            "name": "Mat\u00e9riel ferroviaire"
+           }, 
+           {
+            "name": "Mat\u00e9riel fluvial, lagunaire"
+           }, 
+           {
+            "name": "Mat\u00e9riel a\u00e9rien"
+           }, 
+           {
+            "name": "Autres (v\u00e9lo, mobylette, moto)"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL DE TRANSPORT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel agricole"
+           }, 
+           {
+            "name": "Outillage agricole"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET OUTILLAGE AGRICOLE"
+         }
+        ], 
+        "name": "MAT\u00c9RIEL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortissements des autres droits et valeurs incorporels"
+           }, 
+           {
+            "name": "Amortissements des investissements de cr\u00e9ation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des frais pr\u00e9liminaires au d\u00e9marrage"
+             }, 
+             {
+              "name": "Amortissements des frais de prospection"
+             }, 
+             {
+              "name": "Amortissements des frais de publicit\u00e9"
+             }, 
+             {
+              "name": "Amortissements des frais sur op\u00e9rations de fusions, scissions, et transformations"
+             }, 
+             {
+              "name": "Amortissements des frais d'augmentation du capital"
+             }, 
+             {
+              "name": "Amortissements des frais de constitution"
+             }, 
+             {
+              "name": "Amortissements des autres frais pr\u00e9liminaires"
+             }
+            ], 
+            "name": "Amortissements des frais de recherche et de d\u00e9veloppement"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des frais d'acquisition des immobilisations"
+             }, 
+             {
+              "name": "Amortissements des frais d'\u00e9mission des emprunts"
+             }, 
+             {
+              "name": "Amortissements des autres charges \u00e0\u00a0 r\u00e9partir"
+             }
+            ], 
+            "name": "Amortissements des brevets, licences, concessions et droits similaires"
+           }, 
+           {
+            "name": "Amortissements du droit au bail"
+           }, 
+           {
+            "name": "Amortissements des logiciels"
+           }, 
+           {
+            "name": "Amortissements des marques"
+           }, 
+           {
+            "name": "Amortissements du fonds commercial"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES IMMOBILISATIONS INCORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements des autres immobilisations incorporelles"
+           }, 
+           {
+            "name": "Amortissements des terrains de gisement"
+           }, 
+           {
+            "name": "Amortissements des terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Amortissements du fonds commercial"
+           }, 
+           {
+            "name": "Amortissements des brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "name": "Amortissements des travaux de mise en valeur des terrains"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Amortissements des installations techniques"
+             }, 
+             {
+              "name": "Amortissements du mat\u00e9riel et outillage"
+             }, 
+             {
+              "name": "Amortissements des emballages r\u00e9cup\u00e9rables identifiables"
+             }, 
+             {
+              "name": "Amortissements des autres installations techniques, mat\u00e9riel et outillage"
+             }
+            ], 
+            "name": "Amortissements des ouvrages d'infrastructure"
+           }, 
+           {
+            "name": "Amortissements des b\u00e2timents industriels, agricoles et commerciaux mis en concession"
+           }, 
+           {
+            "name": "Amortissements des autres installations et agencements"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des b\u00e2timents"
+             }, 
+             {
+              "name": "Amortissements des constructions sur terrains d'autrui"
+             }, 
+             {
+              "name": "Amortissements des ouvrages d'infrastructure"
+             }, 
+             {
+              "name": "Amortissements des installations, agencements et am\u00e9nagements des constructions"
+             }, 
+             {
+              "name": "Amortissements des autres constructions"
+             }
+            ], 
+            "name": "Amortissements des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol d'autrui"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des autres terrains"
+             }, 
+             {
+              "name": "Amortissements des terrains nus"
+             }, 
+             {
+              "name": "Amortissements des terrains am\u00e9nag\u00e9s"
+             }, 
+             {
+              "name": "Amortissements des terrains b\u00e2tis"
+             }, 
+             {
+              "name": "Amortissements des terrains de gisement"
+             }, 
+             {
+              "name": "Amortissements des agencements et am\u00e9nagements de terrains"
+             }
+            ], 
+            "name": "Amortissements des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol propre"
+           }, 
+           {
+            "name": "Amortissements des installations techniques"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements du mat\u00e9riel informatique"
+             }, 
+             {
+              "name": "Amortissements des agencements, installations et am\u00e9nagements divers"
+             }, 
+             {
+              "name": "Amortissements du mobilier de bureau"
+             }, 
+             {
+              "name": "Amortissements du mat\u00e9riel de bureau"
+             }, 
+             {
+              "name": "Amortissements des autres mobilier, mat\u00e9riel de bureau et am\u00e9nagements divers"
+             }
+            ], 
+            "name": "Amortissements des am\u00e9nagements de bureaux"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizarea altor imobilizari necorporale"
+           }, 
+           {
+            "name": "Amortizarea concesiunilor, brevetelor, licentelor, marcilor comerciale, drepturilor si activelor similare"
+           }, 
+           {
+            "name": "Amortizarea cheltuielilor de dezvoltare"
+           }, 
+           {
+            "name": "Amortizarea cheltuielilor de constituire"
+           }, 
+           {
+            "name": "Amortizarea fondului comercial"
+           }
+          ], 
+          "name": "Amortizari privind amortizarile necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements du mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel d'emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel et outillage industriel et commercial"
+           }, 
+           {
+            "name": "Amortissements des agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel et mobilier"
+           }, 
+           {
+            "name": "Amortissements des autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Amortissements des immobilisations animales et agricoles"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DU MAT\u00c9RIEL"
+         }
+        ], 
+        "name": "AMORTISSEMENTS"
+       }
+      ], 
+      "name": "Comptes d'immobilisations"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances immobilis\u00e9es"
+           }
+          ], 
+          "name": "Augmentation des cr\u00e9ances immobilis\u00e9es"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des dettes de financement"
+           }
+          ], 
+          "name": "EMPRUNTS \u00c9QUIVALENTS DE CR\u00c9DIT - BAIL IMMOBILIER"
+         }, 
+         {
+          "name": "EMPRUNTS \u00c9QUIVALENTS DE CR\u00c9DIT - BAIL MOBILIER"
+         }, 
+         {
+          "name": "Dettes rattach\u00e9es \u00e0 des participations (hors groupe)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur emprunts \u00e9quivalents d\u2019autres contrats"
+           }, 
+           {
+            "name": "sur emprunts \u00e9quivalents de cr\u00e9dit \u2013 bail mobilier"
+           }, 
+           {
+            "name": "sur emprunts \u00e9quivalents de cr\u00e9dit \u2013 bail immobilier"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "EMPRUNTS \u00c9QUIVALENTS D\u2019AUTRES CONTRATS"
+         }
+        ], 
+        "name": "DETTES DE CR\u00c9DIT - BAIL ET CONTRATS ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9sultat de l'exercice (b\u00e9n\u00e9fice)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "REPORT \u00c0 NOUVEAU CR\u00c9DITEUR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Perte - Amortissements r\u00e9put\u00e9s diff\u00e9r\u00e9s"
+           }, 
+           {
+            "name": "Perte nette \u00e0 reporter"
+           }
+          ], 
+          "name": "REPORT \u00c0 NOUVEAU D\u00c9BITEUR"
+         }
+        ], 
+        "name": "REPORT \u00c0 NOUVEAU"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PROVISIONS POUR PERTES DE CHANGE"
+         }, 
+         {
+          "name": "PROVISIONS POUR LITIGES"
+         }, 
+         {
+          "name": "PROVISIONS POUR PERTES SUR MARCH\u00c9S \u00c0 ACH\u00c8VEMENT FUTUR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres provisions financi\u00e8res pour risques et charges"
+           }, 
+           {
+            "name": "Provisions de propre assureur"
+           }, 
+           {
+            "name": "Provisions pour renouvellement des immobilisations (entreprises concessionnaires)"
+           }, 
+           {
+            "name": "Provisions pour amendes et p\u00e9nalit\u00e9s"
+           }
+          ], 
+          "name": "AUTRES PROVISIONS FINANCI\u00c8RES POUR RISQUES ET CHARGES"
+         }, 
+         {
+          "name": "PROVISIONS POUR PENSIONS ET OBLIGATIONS SIMILAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour grosses r\u00e9parations"
+           }
+          ], 
+          "name": "PROVISIONS POUR CHARGES \u00c0 REPARTIR SUR PLUSIEURS EXERCICES"
+         }, 
+         {
+          "name": "PROVISIONS POUR IMP\u00d4TS"
+         }, 
+         {
+          "name": "PROVISIONS POUR GARANTIES DONN\u00c9ES AUX CLIENTS"
+         }
+        ], 
+        "name": "PROVISIONS FINANCIERES POUR RISQUES ET CHARGES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hausse des prix", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Fluctuation des cours", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Provisions r\u00e9glement\u00e9es relatives aux stocks"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour investissement (participation des salari\u00e9s)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Provisions reconstitution des gisements miniers et p\u00e9troliers", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "SUBVENTIONS D'\u00c9QUIPEMENT B"
+         }, 
+         {
+          "name": "Plus-values r\u00e9investies", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9p\u00f4ts et cautionnements re\u00e7ues"
+           }, 
+           {
+            "name": "Avances de l'Etat"
+           }, 
+           {
+            "name": "Dettes de financement diverses"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Avances re\u00e7ues et comptes courants bloqu\u00e9s"
+           }, 
+           {
+            "name": "Dettes rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "name": "Emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisation"
+           }
+          ], 
+          "name": "AUTRES SUBVENTIONS D'INVESTISSEMENT"
+         }, 
+         {
+          "name": "Amortissements d\u00e9rogatoires", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Provision sp\u00e9ciale de r\u00e9\u00e9valuation", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pierderi legate de emiterea, rascumpararea, vanzarea, cedarea cu titlu gratuit sau anularea instrumentelor de capitaluri proprii."
+         }, 
+         {
+          "name": "Provisions r\u00e9glement\u00e9es relatives aux autres \u00e9l\u00e9ments de l'actif", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres"
+           }, 
+           {
+            "name": "\u00c9tat"
+           }, 
+           {
+            "name": "Emprunts obligataires"
+           }, 
+           {
+            "name": "D\u00e9partements"
+           }, 
+           {
+            "name": "R\u00e9gions"
+           }, 
+           {
+            "name": "Entreprises publiques ou mixtes"
+           }, 
+           {
+            "name": "Organismes internationaux"
+           }, 
+           {
+            "name": "Entreprises et organismes priv\u00e9s"
+           }, 
+           {
+            "name": "Communes et collectivit\u00e9s publiques d\u00e9centralis\u00e9es"
+           }
+          ], 
+          "name": "SUBVENTIONS D'\u00c9QUIPEMENT A"
+         }
+        ], 
+        "name": "SUBVENTIONS D'INVESTISSEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PLUS-VALUES DE CESSION \u00c0 R\u00c9INVESTIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour remises en \u00e9tat", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AUTRES PROVISIONS ET FONDS R\u00c9GLEMENTES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9l\u00e8vement pour le Budget"
+           }, 
+           {
+            "name": "Fonds National"
+           }
+          ], 
+          "name": "FONDS R\u00c9GLEMENT\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte provizioane"
+           }, 
+           {
+            "name": "Provizioane pentru pensii si obligatii similare"
+           }, 
+           {
+            "name": "Provizioane pentru litigii"
+           }, 
+           {
+            "name": "Provizioane pentru garantii acordate clientilor"
+           }, 
+           {
+            "name": "Provizioane pentru dezafectare imobilizari corporale si alte actiuni legate de acestea"
+           }, 
+           {
+            "name": "Provizioane pentru restructurare"
+           }, 
+           {
+            "name": "Provizioane pentru impozite"
+           }
+          ], 
+          "name": "AMORTISSEMENTS D\u00c9ROGATOIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hausse de prix"
+           }, 
+           {
+            "name": "Fluctuation des cours"
+           }
+          ], 
+          "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES RELATIVES AUX STOCKS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour gros entretien ou grandes r\u00e9visions ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PROVISIONS POUR INVESTISSEMENT"
+         }, 
+         {
+          "name": "PROVISION SP\u00c9CIALE DE R\u00c9\u00c9VALUATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reconstitution des gisements miniers et p\u00e9troliers"
+           }, 
+           {
+            "name": "Autres provisions pour charges"
+           }, 
+           {
+            "name": "Provisions pour charges \u00e0\u00a0 r\u00e9partir sur plusieurs exercices"
+           }, 
+           {
+            "name": "Provisions pour pensions de retraite et obligations similaires"
+           }
+          ], 
+          "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES RELATIVES AUX IMMOBILISATIONS"
+         }
+        ], 
+        "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES ET FONDS ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "COMPTES PERMANENTS NON BLOQU\u00c9S DES \u00c9TABLISSEMENTS ET SUCCURSALES"
+         }, 
+         {
+          "name": "INT\u00c9R\u00caTS COURUS SUR DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS"
+         }, 
+         {
+          "name": "COMPTES PERMANENTS BLOQU\u00c9S DES \u00c9TABLISSEMENTS ET SUCCURSALES"
+         }, 
+         {
+          "name": "DETTES LI\u00c9ES \u00c0 DES SOCI\u00c9T\u00c9S EN PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations (groupe)"
+           }, 
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations (hors groupe)"
+           }
+          ], 
+          "name": "DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON PRODUITS"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON CHARGES"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON DES SOCI\u00c9T\u00c9S EN PARTICIPATION"
+         }
+        ], 
+        "name": "DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS ET COMPTES DE LIAISON DES ETABLISSEMENTS ET SOCI\u00c9T\u00c9S EN PARTICIPATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres dotations"
+           }, 
+           {
+            "name": "Dotation initiale"
+           }, 
+           {
+            "name": "Dotations compl\u00e9mentaires"
+           }
+          ], 
+          "name": "CAPITAL PAR DOTATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actiuni proprii detinute pe termen lung"
+           }, 
+           {
+            "name": "Actiuni proprii detinute pe termen scurt"
+           }
+          ], 
+          "name": "ACTIONNAIRES, CAPITAL SOUSCRIT, NON APPEL\u00c9"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Interese care nu controleaza - alte capitaluri proprii"
+           }, 
+           {
+            "name": "Interese care nu controleaza - rezultatul exercitiului financiar"
+           }
+          ], 
+          "name": "Interese care nu controleaza"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres primes"
+           }, 
+           {
+            "name": "Primes de fusion"
+           }, 
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation (autres op\u00e9rations l\u00e9gales)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Primes d'\u00e9mission"
+           }, 
+           {
+            "name": "Primes de conversion"
+           }, 
+           {
+            "name": "Autres \u00e9carts de r\u00e9\u00e9valuation en France", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Primes d'apport"
+           }
+          ], 
+          "name": "PRIMES LI\u00c9ES AUX CAPITAUX PROPRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9mun\u00e9rations, imp\u00f4ts et autres charges personnelles"
+           }, 
+           {
+            "name": "Pr\u00e9l\u00e8vements d\u2019autoconsommation"
+           }, 
+           {
+            "name": "Bons de souscription d'actions", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres pr\u00e9l\u00e8vements"
+           }, 
+           {
+            "name": "Op\u00e9rations courantes"
+           }, 
+           {
+            "name": "Prime de conversie a obligatiunilor in actiuni"
+           }, 
+           {
+            "name": "Apports temporaires"
+           }
+          ], 
+          "name": "COMPTE DE L'EXPLOITANT"
+         }, 
+         {
+          "name": "Rezerve din conversie"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Patrimoniul regiei"
+           }, 
+           {
+            "name": "Capital souscrit, non appel\u00e9"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Capital amorti", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Capital non amorti", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Capital souscrit, appel\u00e9, vers\u00e9, non amorti"
+           }, 
+           {
+            "name": "Capital souscrit, appel\u00e9, vers\u00e9, amorti"
+           }, 
+           {
+            "name": "Patrimoniul public"
+           }, 
+           {
+            "name": "Capital souscrit, appel\u00e9, non vers\u00e9"
+           }, 
+           {
+            "name": "Capital souscrit soumis \u00e0 des conditions particuli\u00e8res"
+           }
+          ], 
+          "name": "CAPITAL SOCIAL"
+         }, 
+         {
+          "name": "CAPITAL PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation libre"
+           }, 
+           {
+            "name": "Rezerve statutare sau contractuale"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00e9serves diverses", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serve de propre assureur", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Alte rezerve"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Plus-values nettes \u00e0 long terme", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serve l\u00e9gale proprement dite", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "\u00c9carts de r\u00e9\u00e9valuation l\u00e9gale"
+           }, 
+           {
+            "name": "Rezerve din diferente de curs valutar in relatie cu investitia neta intr-o entitate straina"
+           }, 
+           {
+            "name": "Rezerve reprezentand surplusul realizat din rezerve din reevaluare"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres r\u00e9serves r\u00e9glement\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Plus-values nettes \u00e0 long terme", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serves cons\u00e9cutives \u00e0 l'octroi de subventions d'investissement", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Rezerve de valoare justa"
+           }
+          ], 
+          "name": "\u00c9CARTS DE R\u00c9\u00c9VALUATION"
+         }
+        ], 
+        "name": "CAPITAL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Rezultatul reportat provenit din trecerea la aplicarea Reglementarilor contabile conforme cu Directiva a patra a Comunitatilor Economice Europene"
+           }, 
+           {
+            "name": "Rezultatul reportat provenit din corectarea erorilor contabile"
+           }, 
+           {
+            "name": "Rezultatul reportat provenit din adoptarea pentru prima data a IAS, mai pu\u00fein IAS 29"
+           }, 
+           {
+            "name": "Rezultatul reportat reprezentand profitul nerepartizat sau pierderea neacoperita"
+           }
+          ], 
+          "name": "Rezultatul reportat"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serve l\u00e9gale"
+           }
+          ], 
+          "name": "R\u00e9serve l\u00e9gale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Primes d'\u00e9mission"
+           }, 
+           {
+            "name": "Primes de fusion"
+           }, 
+           {
+            "name": "Primes d'apport"
+           }
+          ], 
+          "name": "R\u00c9SERVES STATUTAIRES OU CONTRACTUELLES"
+         }, 
+         {
+          "name": "Report \u00e0 nouveau (solde cr\u00e9diteur)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionnaires, capital souscrit-non appel\u00e9"
+           }, 
+           {
+            "name": "Capital social"
+           }, 
+           {
+            "name": "Fonds de dotation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Capital individuel"
+             }, 
+             {
+              "name": "Compte de l'exploitant"
+             }
+            ], 
+            "name": "Capital personnel"
+           }
+          ], 
+          "name": "R\u00c9SERVE L\u00c9GALE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves facultatives"
+           }, 
+           {
+            "name": "R\u00e9sultats nets en instance d'affectation (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "R\u00e9serves diverses"
+           }
+          ], 
+          "name": "AUTRES R\u00c9SERVES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9sultat net de l'exercice (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "R\u00e9sultat net de l'exercice (solde cr\u00e9diteur)"
+           }
+          ], 
+          "name": "R\u00e9sultat net de l'exercice"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves cons\u00e9cutives \u00e0 l'octroi de subventions d'investissement"
+           }, 
+           {
+            "name": "Autres r\u00e9serves r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "R\u00e9serves de plus-values nettes \u00e0 long terme"
+           }, 
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation"
+           }
+          ], 
+          "name": "R\u00c9SERVES R\u00c9GLEMENT\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "R\u00e9serves statutaires ou contractuelles"
+           }, 
+           {
+            "name": "R\u00e9serves facultatives"
+           }
+          ], 
+          "name": "Autres r\u00e9serves"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Report \u00e0\u00a0 nouveau (solde cr\u00e9diteur)"
+           }, 
+           {
+            "name": "Report \u00e0\u00a0 nouveau (solde d\u00e9biteur)"
+           }
+          ], 
+          "name": "Report \u00e0\u00a0 nouveau"
+         }
+        ], 
+        "name": "R\u00c9SERVES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "VALEUR AJOUT\u00c9E (V.A.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres subventions d'investissement (m\u00eame ventilation que celle du compte 1391)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises publiques", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises et organismes priv\u00e9s ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9gions", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "D\u00e9partements", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Collectivit\u00e9s publiques", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Communes", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Subventions d'\u00e9quipement"
+           }
+          ], 
+          "name": "R\u00c9SULTAT NET : PERTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres provisions r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "Provisions pour plus-values en instance d'imposition"
+           }, 
+           {
+            "name": "Provisions pour amortissements d\u00e9rogatoires"
+           }, 
+           {
+            "name": "Provisions pour investissements"
+           }, 
+           {
+            "name": "Provisions pour reconstitution des gisements"
+           }, 
+           {
+            "name": "Provisions pour acquisition et construction de logements"
+           }
+          ], 
+          "name": "R\u00c9SULTAT D'EXPLOITATION (R.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'investissement re\u00e7ues"
+           }, 
+           {
+            "name": "Subventions d'investissement inscrites au CPC"
+           }, 
+           {
+            "name": "Entreprises publiques", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Entreprises et organismes priv\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Communes", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Collectivit\u00e9s publiques", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00e9gions", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "D\u00e9partements", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "R\u00c9SULTAT NET : B\u00c9N\u00c9FICE"
+         }, 
+         {
+          "name": "R\u00c9SULTAT HORS ACTIVIT\u00c9S ORDINAIRES (R.H.A.O.)"
+         }, 
+         {
+          "name": "EXC\u00c9DENT BRUT D'EXPLOITATION (E.B.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9sultat en instance d'affectation : Perte"
+           }, 
+           {
+            "name": "R\u00e9sultat en instance d'affectation : B\u00e9n\u00e9fice"
+           }
+          ], 
+          "name": "R\u00c9SULTAT EN INSANCE D\u2019AFFECTATION"
+         }, 
+         {
+          "name": "R\u00c9SULTAT FINANCIER (R.F.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marge brute sur mati\u00e8res"
+           }, 
+           {
+            "name": "Marge brute sur marchandises"
+           }
+          ], 
+          "name": "MARGE BRUTE (M.B.)"
+         }, 
+         {
+          "name": "R\u00c9SULTAT DES ACTIVIT\u00c9S ORDINAIRES (R.A.O.)"
+         }
+        ], 
+        "name": "R\u00c9SULTAT NET DE L'EXERCICE"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Comptes de liaison des \u00e9tablissements"
+           }, 
+           {
+            "name": "Comptes de liaison du si\u00e8ge"
+           }
+          ], 
+          "name": "Comptes de liaison des \u00e9tablissements et succursales"
+         }, 
+         {
+          "name": "AVANCES RE\u00c7UES DE L'\u00c9TAT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Credite bancare pe termen lung nerambursate la scadenta"
+           }, 
+           {
+            "name": "Credite externe guvernamentale"
+           }, 
+           {
+            "name": "Credite bancare externe garantate de banci"
+           }, 
+           {
+            "name": "Credite bancare externe garantate de stat"
+           }, 
+           {
+            "name": "Credite bancare pe termen lung"
+           }, 
+           {
+            "name": "Credite de la trezoreria statului"
+           }, 
+           {
+            "name": "Credite bancare interne garantate de stat"
+           }
+          ], 
+          "name": "EMPRUNTS ET DETTES AUPR\u00c8S DES \u00c9TABLISSEMENTS DE CR\u00c9DIT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imprumuturi interne din emisiuni de obligatiuni garantate de stat"
+           }, 
+           {
+            "name": "Imprumuturi externe din emisiuni de obligatiuni garantate de banci"
+           }, 
+           {
+            "name": "Emprunts obligataires convertibles"
+           }, 
+           {
+            "name": "Autres emprunts obligataires"
+           }, 
+           {
+            "name": "Imprumuturi externe din emisiuni de obligatiuni garantate de stat"
+           }, 
+           {
+            "name": "Emprunts obligataires ordinaires"
+           }
+          ], 
+          "name": "EMPRUNTS OBLIGATAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avances bloqu\u00e9es pour augmentation du capital"
+           }, 
+           {
+            "name": "Droits du conc\u00e9dant exigibles en nature"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par l'\u00c9tat"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par les organismes internationaux"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par les autres organismes africains"
+           }, 
+           {
+            "name": "Emprunts participatifs", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AVANCES ASSORTIES DE CONDITIONS PARTICULI\u00c8RES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur autres emprunts et dettes"
+           }, 
+           {
+            "name": "sur avances re\u00e7ues et comptes courants bloqu\u00e9s"
+           }, 
+           {
+            "name": "sur d\u00e9p\u00f4ts et cautionnements re\u00e7us"
+           }, 
+           {
+            "name": "sur emprunts et dettes aupr\u00e8s des \u00e9tablissements de cr\u00e9dit"
+           }, 
+           {
+            "name": "sur avances re\u00e7ues de l'\u00c9tat"
+           }, 
+           {
+            "name": "sur avances assorties de conditions particuli\u00e8res"
+           }, 
+           {
+            "name": "sur emprunts obligataires"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cautionnements"
+           }, 
+           {
+            "name": "Cautionnements", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts"
+           }
+          ], 
+          "name": "D\u00c9P\u00d4TS ET CAUTIONNEMENTS RECUS"
+         }, 
+         {
+          "name": "AVANCES RE\u00c7UES ET COMPTES COURANTS BLOQU\u00c9S"
+         }, 
+         {
+          "name": "Prime privind rambursarea obligatiunilor"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente altor imprumuturi si datorii asimilate"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur participation des salari\u00e9s aux r\u00e9sultats", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur d\u00e9p\u00f4ts et cautionnements re\u00e7us", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur autres emprunts et dettes assimil\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts et dettes assortis de conditions particuli\u00e8res", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts obligataires convertibles ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur autres emprunts obligataires", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Dettes cons\u00e9cutives \u00e0 des titres emprunt\u00e9s"
+           }, 
+           {
+            "name": "Emprunts participatifs"
+           }, 
+           {
+            "name": "Rentes viag\u00e8res capitalis\u00e9es"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Dettes du conc\u00e9dant exigibles en nature"
+           }, 
+           {
+            "name": "Participation des travailleurs aux b\u00e9n\u00e9fices"
+           }
+          ], 
+          "name": "AUTRES EMPRUNTS ET DETTES"
+         }
+        ], 
+        "name": "EMPRUNTS ET DETTES ASSIMIL\u00c9ES"
+       }
+      ], 
+      "name": "Comptes de capitaux"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }, 
+           {
+            "name": "en devises"
+           }
+          ], 
+          "name": "CAISSE SUCCURSALE B"
+         }, 
+         {
+          "children": [
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }, 
+           {
+            "name": "en devises"
+           }
+          ], 
+          "name": "CAISSE SUCCURSALE A"
+         }, 
+         {
+          "children": [
+           {
+            "name": "en devises"
+           }, 
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }
+          ], 
+          "name": "CAISSE SI\u00c8GE SOCIAL"
+         }
+        ], 
+        "name": "CAISSE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "BANQUES, CREDITS DE TRESORERIE, INTERETS COURUS"
+         }, 
+         {
+          "name": "ESCOMPTE DE CR\u00c9DITS ORDINAIRES"
+         }, 
+         {
+          "name": "ESCOMPTE DE CR\u00c9DITS DE CAMPAGNE"
+         }, 
+         {
+          "name": "CR\u00c9DITS DE TR\u00c9SORERIE"
+         }
+        ], 
+        "name": "BANQUES, CR\u00c9DITS DE TR\u00c9SORERIE ET D'ESCOMPTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACCR\u00c9DITIFS"
+         }, 
+         {
+          "name": "VIREMENTS DE FONDS"
+         }, 
+         {
+          "name": "R\u00c9GIES D'AVANCE"
+         }, 
+         {
+          "name": "AUTRES VIREMENTS INTERNES"
+         }
+        ], 
+        "name": "R\u00c9GIES D'AVANCES, ACCR\u00c9DITIFS ET VIREMENTS INTERNES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "RISQUES PROVISIONN\u00c9S \u00c0 CARACT\u00c8RE FINANCIER"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES BANQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Autres valeurs mobili\u00e8res de placement et cr\u00e9ances assimil\u00e9es (provisions)"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de propri\u00e9t\u00e9 "
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES TITRES ET VALEURS \u00c0 ENCAISSER"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a obligatiunilor emise si recuperate"
+         }, 
+         {
+          "name": "Autres charges financi\u00e8res des exercices ant\u00e9rieurs"
+         }, 
+         {
+          "name": "Charges nettes sur cession de titres et valeurs de placement"
+         }, 
+         {
+          "name": "Escomptes accord\u00e9s"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES \u00c9TABLISSEMENTS FINANCIERS ET ASSIMIL\u00c9S"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a obligatiunilor"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES D\u2019INSTRUMENTS DE TR\u00c9SORERIE"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a altor invesitii pe termen scurt si creante asimilate"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS ET RISQUES PROVISIONN\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Alte titluri de plasament"
+           }, 
+           {
+            "name": "Dobanzi la obligatiuni si alte titluri de plasament"
+           }, 
+           {
+            "name": "Bons de souscription"
+           }
+          ], 
+          "name": "AUTRES VALEURS ASSIMIL\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Varsaminte de efctuat pentru alte investitii pe termen scurt"
+           }, 
+           {
+            "name": "Varsaminte de efctuat pentru actiunile detinute la institutiile afiliate"
+           }
+          ], 
+          "name": "Varsaminte de efctuat pentru investitiile pe termen scurt"
+         }, 
+         {
+          "name": "TITRES N\u00c9GOCIABLES HORS REGION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bons de souscription d'actions"
+           }, 
+           {
+            "name": "Bons de souscription d'obligations"
+           }
+          ], 
+          "name": "BONS DE SOUSCRIPTION"
+         }, 
+         {
+          "name": "Bons du Tr\u00e9sor et bons de caisse \u00e0 court terme"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions"
+           }, 
+           {
+            "name": "Titres du Tr\u00e9sor et bons de caisse \u00e0 court terme"
+           }, 
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Titres non cot\u00e9s"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bons de caisse \u00e0 court terme"
+           }, 
+           {
+            "name": "Titres du Tr\u00e9sor \u00e0 court terme"
+           }, 
+           {
+            "name": "Titres d'organismes financiers"
+           }
+          ], 
+          "name": "TITRES DU TR\u00c9SOR ET BONS DE CAISSE \u00c0 COURT TERME"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligations cot\u00e9es"
+           }, 
+           {
+            "name": "Obligations \u00e9mises par la soci\u00e9t\u00e9 et rachet\u00e9es par elle"
+           }, 
+           {
+            "name": "Obligations non cot\u00e9es"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de cr\u00e9ance"
+           }
+          ], 
+          "name": "OBLIGATIONS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions cot\u00e9es"
+           }, 
+           {
+            "name": "Actions propres"
+           }, 
+           {
+            "name": "Actions d\u00e9membr\u00e9es (certificats d'investissement ; droits de vote)"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de propri\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Actions non cot\u00e9es"
+           }
+          ], 
+          "name": "ACTIONS"
+         }
+        ], 
+        "name": "TITRES DE PLACEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Sume in curs de decontare"
+           }, 
+           {
+            "name": "Conturi la banci in valuta"
+           }, 
+           {
+            "name": "Conturi la banci in lei"
+           }
+          ], 
+          "name": "Conturi curente la banci"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Coupons \u00e9chus"
+           }, 
+           {
+            "name": "Ch\u00e8ques de voyage"
+           }, 
+           {
+            "name": "Warrants"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats \u00e9chus des obligations"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus \u00e0 recevoir"
+           }
+          ], 
+          "name": "AUTRES VALEURS \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "name": "EFFETS \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9gies d'avances et accr\u00e9ditifs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Caisse (succursale ou agence B)"
+             }, 
+             {
+              "name": "Caisse Centrale"
+             }, 
+             {
+              "name": "Caisse (succursale ou agence A)"
+             }
+            ], 
+            "name": "Caisses"
+           }
+          ], 
+          "name": "Caisses, r\u00e9gies d'avances et accr\u00e9ditifs"
+         }, 
+         {
+          "name": "Autres organismes financiers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tr\u00e9sorerie G\u00e9n\u00e9rale"
+           }, 
+           {
+            "name": "Banques (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "Autres \u00e9tablissements financiers et assimil\u00e9s (soldes d\u00e9biteurs)"
+           }, 
+           {
+            "name": "Ch\u00e8ques postaux"
+           }
+          ], 
+          "name": "CH\u00c8QUES \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "name": "Banques"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente creditelor pe termen scurt"
+           }, 
+           {
+            "name": "Credite externe garantate de stat"
+           }, 
+           {
+            "name": "Credite externe garantate de banci"
+           }, 
+           {
+            "name": "Credite de la trezoreria statului"
+           }, 
+           {
+            "name": "Credite interne garantate de stat"
+           }, 
+           {
+            "name": "Credite bancare pe termen scurt"
+           }, 
+           {
+            "name": "Credite bancare pe termen scurt nerambursate la scadenta"
+           }, 
+           {
+            "name": "Credite externe guvernamentale"
+           }
+          ], 
+          "name": "Credite bancare pe termen scurt"
+         }, 
+         {
+          "name": "CARTES DE CR\u00c9DIT \u00c0 ENCAISSER"
+         }, 
+         {
+          "name": "CH\u00c8QUES \u00c0 ENCAISSER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres valeurs \u00e0\u00a0 encaisser"
+           }, 
+           {
+            "name": "Efecte remise spre scontare"
+           }, 
+           {
+            "name": "Virement de fonds"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ch\u00e8ques \u00e0\u00a0 l'encaissement"
+             }, 
+             {
+              "name": "Ch\u00e8ques en portefeuille"
+             }
+            ], 
+            "name": "Ch\u00e8ques \u00e0\u00a0 encaisser ou \u00e0\u00a0 l'encaissement"
+           }, 
+           {
+            "name": "Cecuri de incasat"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Effets \u00e9chus \u00e0\u00a0 encaisser"
+             }, 
+             {
+              "name": "Effets \u00e0\u00a0 l'encaissement"
+             }
+            ], 
+            "name": "Efecte de incasat"
+           }
+          ], 
+          "name": "EFFETS \u00c0 ENCAISSER"
+         }
+        ], 
+        "name": "VALEURS \u00c0 ENCAISSER"
+       }, 
+       {
+        "children": [
+         {
+          "name": "BANQUES AUTRES \u00c9TATS REGION"
+         }, 
+         {
+          "name": "BANQUES, INTERETS COURUS"
+         }, 
+         {
+          "name": "BANQUES HORS ZONE MONETAIRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "BANQUE Y"
+           }, 
+           {
+            "name": "BANQUES X"
+           }
+          ], 
+          "name": "BANQUES LOCALES"
+         }, 
+         {
+          "name": "BANQUES AUTRES ETATS ZONE MONETAIRE"
+         }
+        ], 
+        "name": "BANQUES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Casa in lei"
+           }, 
+           {
+            "name": "Casa in valuta"
+           }
+          ], 
+          "name": "CH\u00c8QUES POSTAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte valori"
+           }, 
+           {
+            "name": "Timbre fiscale si postale"
+           }, 
+           {
+            "name": "Tichete si bilete de calatorie"
+           }, 
+           {
+            "name": "Bilete de tratament si odihna"
+           }
+          ], 
+          "name": "TR\u00c9SOR"
+         }, 
+         {
+          "name": "SOCI\u00c9T\u00c9S DE GESTION ET D'INTERM\u00c9DIATION (S.G.I.)"
+         }, 
+         {
+          "name": "ETABLISSEMENTS FINANCIERS, INTERETS COURUS"
+         }, 
+         {
+          "name": "AUTRES ORGANISMES FINANCIERS"
+         }
+        ], 
+        "name": "\u00c9TABLISSEMENTS FINANCIERS ET ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreditive in valuta"
+           }, 
+           {
+            "name": "Acreditive in lei"
+           }
+          ], 
+          "name": "OPTIONS DE TAUX D'INT\u00c9R\u00caT"
+         }, 
+         {
+          "name": "OPTIONS DE TAUX BOURSIERS"
+         }, 
+         {
+          "name": "AVOIRS D'OR ET AUTRES M\u00c9TAUX PR\u00c9CIEUX ()"
+         }, 
+         {
+          "name": "OPTIONS DE TAUX DE CHANGE"
+         }, 
+         {
+          "name": "INSTRUMENTS DE MARCH\u00c9S \u00c0 TERME"
+         }
+        ], 
+        "name": "INSTRUMENTS DE TR\u00c9SORERIE"
+       }
+      ], 
+      "name": "Comptes financiers"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "PRODUITS FINIS A"
+         }, 
+         {
+          "name": "PRODUITS FINIS B"
+         }, 
+         {
+          "name": "Diferente de pret la animale si pasari"
+         }
+        ], 
+        "name": "PRODUITS FINIS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits finis (ou groupe) A", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits finis (ou groupe) B", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Produits finis"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Autres titres et valeurs de placement similaires"
+           }, 
+           {
+            "name": "Actions, partie lib\u00e9r\u00e9e"
+           }, 
+           {
+            "name": "Actions, partie non lib\u00e9r\u00e9e"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bons de caisse"
+             }, 
+             {
+              "name": "Bons de tr\u00e9sor"
+             }
+            ], 
+            "name": "Bons de caisse et bons de tr\u00e9sor"
+           }
+          ], 
+          "name": "Titres et valeurs de placement"
+         }, 
+         {
+          "name": "Produse aflate la terti"
+         }, 
+         {
+          "name": "Animale aflate la terti"
+         }, 
+         {
+          "name": "Marfuri aflate la terti"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tudes en cours E1"
+           }, 
+           {
+            "name": "\u00c9tudes en cours E2"
+           }
+          ], 
+          "name": "\u00c9TUDES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestations de services S1"
+           }, 
+           {
+            "name": "Prestations de services S2"
+           }
+          ], 
+          "name": "PRESTATIONS DE SERVICES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9chets", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Rebuts", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8res de r\u00e9cup\u00e9ration", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ambalaje aflate la terti"
+         }
+        ], 
+        "name": "SERVICES EN COURS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits interm\u00e9diaires"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des marchandises"
+           }, 
+           {
+            "name": "Fournitures A, B, C, ..", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits finis"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des mati\u00e8res et fournitures"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE MARCHANDISES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea materialelor consumabile"
+           }, 
+           {
+            "name": "Emballages (m\u00eame ventilation que celle du compte 326)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea materialelor de natura obiectelor de inventar"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Travaux en cours (m\u00eame ventilation que celle du compte 335)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits en cours (m\u00eame ventilation que celle du compte 331)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS D'AUTRES APPOVISIONNEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea animalelor aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea marfurilor aflate la terti"
+           }, 
+           {
+            "name": "Produits finis (m\u00eame ventilation que celle du compte 355)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor reziduale aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor finite aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea semifabricatelor aflate la terti"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea materiilor prime si materialelor aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea ambalajelor aflate la terti"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES SERVICES EN COURS"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE PRODUITS FINIS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marchandises (ou groupe) A", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Marchandises (ou groupe) B", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS EN COURS DE ROUTE, EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du personnel - d\u00e9biteur"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor finite"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des clients et comptes rattach\u00e9s"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea semifabricatelor"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor reziduale"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres d\u00e9biteurs"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES PRODUCTIONS EN COURS"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Prestations de services S 2", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Etat - cr\u00e9dit de TVA (suivant d\u00e9claration)"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 7%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 20%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 14%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 10%"
+               }
+              ], 
+              "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges"
+             }, 
+             {
+              "name": "Etat - TVA r\u00e9cup\u00e9rable sur immobilisations"
+             }
+            ], 
+            "name": "Etat - TVA r\u00e9cup\u00e9rable"
+           }, 
+           {
+            "name": "Acomptes sur imp\u00f4ts sur les r\u00e9sultats"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Subventions d'\u00e9quilibre \u00e0\u00a0 recevoir"
+             }, 
+             {
+              "name": "Subventions d'exploitation \u00e0\u00a0 recevoir"
+             }, 
+             {
+              "name": "Subventions d'investissement \u00e0\u00a0 recevoir"
+             }
+            ], 
+            "name": "Subventions \u00e0\u00a0 recevoir"
+           }, 
+           {
+            "name": "Etat - autres comptes d\u00e9biteurs"
+           }
+          ], 
+          "name": "Produse finite"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits r\u00e9siduels B"
+           }, 
+           {
+            "name": "Produits r\u00e9siduels A"
+           }
+          ], 
+          "name": "PRODUITS R\u00c9SIDUELS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - retenues de garantie"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Clients - factures \u00e0\u00a0 \u00e9tablir"
+             }, 
+             {
+              "name": "Cr\u00e9ances sur travaux non encore factur\u00e9s"
+             }
+            ], 
+            "name": "Clients - factures \u00e0\u00a0 \u00e9tablir et cr\u00e9ances sur travaux non encore factur\u00e9s"
+           }, 
+           {
+            "name": "Clients douteux ou litigieux"
+           }, 
+           {
+            "name": "Clients - effets \u00e0\u00a0 recevoir"
+           }, 
+           {
+            "name": "Travaux en cours T2"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Clients - cat\u00e9gorie A"
+             }, 
+             {
+              "name": "Clients - cat\u00e9gorie B"
+             }
+            ], 
+            "name": "Travaux en cours T1"
+           }, 
+           {
+            "name": "Autres clients et comptes rattach\u00e9s"
+           }
+          ], 
+          "name": "TRAVAUX EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus et non \u00e9chus \u00e0\u00a0 percevoir"
+           }, 
+           {
+            "name": "Charges constat\u00e9es d'avance"
+           }, 
+           {
+            "name": "Comptes transitoires ou d'attente - d\u00e9biteurs"
+           }, 
+           {
+            "name": "Comptes de r\u00e9partition p\u00e9riodique des charges"
+           }
+          ], 
+          "name": "Comptes de r\u00e9gularisation - actif"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres comptes d'associ\u00e9s d\u00e9biteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s - comptes d'apport en soci\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Actionnaires - capital souscrit et appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Comptes courants des associ\u00e9s d\u00e9biteurs"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es aux comptes d'associ\u00e9s"
+           }, 
+           {
+            "name": "Associ\u00e9s - op\u00e9rations faites en commun"
+           }
+          ], 
+          "name": "Produse reziduale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires B"
+           }, 
+           {
+            "name": "Produits interm\u00e9diaires A"
+           }, 
+           {
+            "name": "Personnel - autres d\u00e9biteurs"
+           }
+          ], 
+          "name": "PRODUITS INTERM\u00c9DIAIRES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits en cours P2"
+           }, 
+           {
+            "name": "Produits en cours P1"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes \u00e0\u00a0 obtenir - avoirs non encore re\u00e7us"
+           }, 
+           {
+            "name": "Fournisseurs - cr\u00e9ances pour emballages et mat\u00e9riel \u00e0\u00a0 rendre"
+           }, 
+           {
+            "name": "Autres fournisseurs d\u00e9biteurs"
+           }
+          ], 
+          "name": "PRODUITS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances sur cessions d'immobilisations"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es aux autres d\u00e9biteurs"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions d'\u00e9l\u00e9ments d'actif circulant"
+           }, 
+           {
+            "name": "Divers d\u00e9biteurs"
+           }
+          ], 
+          "name": "Diferente de pret la produse"
+         }
+        ], 
+        "name": "PRODUITS EN COURS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produit en cours P 1", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produit en cours P 2", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES CONSOMMABLES"
+         }, 
+         {
+          "name": "FOURNITURES DE BUREAU"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages \u00e0 usage mixte"
+           }, 
+           {
+            "name": "Autres emballages"
+           }, 
+           {
+            "name": "Emballages perdus"
+           }, 
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables"
+           }
+          ], 
+          "name": "EMBALLAGES"
+         }, 
+         {
+          "name": "AUTRES MATI\u00c8RES"
+         }, 
+         {
+          "name": "FOURNITURES D'ATELIER ET D'USINE"
+         }, 
+         {
+          "name": "FOURNITURES DE MAGASIN"
+         }
+        ], 
+        "name": "AUTRES APPROVISIONNEMENTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PRODUITS FINIS EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "AUTRES APPROVISIONNEMENTS EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "MARCHANDISES EN COURS DE ROUTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Stock en d\u00e9p\u00f4t"
+           }, 
+           {
+            "name": "Stock en consignation"
+           }
+          ], 
+          "name": "STOCK EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+         }, 
+         {
+          "name": "STOCK PROVENANT D'IMMOBILISATIONS MISES HORS SERVICE OU AU REBUT"
+         }
+        ], 
+        "name": "STOCKS EN COURS DE ROUTE, EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+       }, 
+       {
+        "children": [
+         {
+          "name": "FOURNITURES (A,B)"
+         }, 
+         {
+          "name": "Marfuri in curs de aprovizionare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Emballages \u00e0 usage mixte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Emballages perdus", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animale in curs de aprovizionare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mati\u00e8re (ou groupe) D", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8re (ou groupe) C", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES A"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Combustibles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de bureau", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de magasin", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures d'atelier et d usine", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES B"
+         }, 
+         {
+          "name": "Ambalaje in curs de aprovizionare"
+         }
+        ], 
+        "name": "MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Marchandises A2"
+           }, 
+           {
+            "name": "Marchandises A1"
+           }, 
+           {
+            "name": "Marchandises en cours de route"
+           }, 
+           {
+            "name": "Autres marchandises"
+           }
+          ], 
+          "name": "MARCHANDISES A"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Biens r\u00e9siduels en cours"
+             }, 
+             {
+              "name": "Biens interm\u00e9diaires en cours"
+             }, 
+             {
+              "name": "Biens produits en cours"
+             }
+            ], 
+            "name": "Biens en cours"
+           }, 
+           {
+            "name": "Autres produits en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "\u00c9tudes en cours"
+             }, 
+             {
+              "name": "Prestations en cours"
+             }, 
+             {
+              "name": "Travaux en cours"
+             }
+            ], 
+            "name": "Services en cours"
+           }
+          ], 
+          "name": "Produits en cours"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits finis (groupe B)"
+           }, 
+           {
+            "name": "Produits finis (groupe A)"
+           }, 
+           {
+            "name": "Produits finis en cours de route"
+           }, 
+           {
+            "name": "Autres produits finis"
+           }
+          ], 
+          "name": "Produits finis"
+         }, 
+         {
+          "name": "MARCHANDISES HORS ACTIVIT\u00c9S ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres mati\u00e8res et fournitures consommables"
+           }, 
+           {
+            "name": "Mati\u00e8res et fournitures consommables en cours de route"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages perdus"
+             }, 
+             {
+              "name": "Emballages \u00e0\u00a0 usage mixte"
+             }, 
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables non identifiables"
+             }
+            ], 
+            "name": "Emballages"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mati\u00e8res premi\u00e8res (groupe B)"
+             }, 
+             {
+              "name": "Mati\u00e8res premi\u00e8res (groupe A)"
+             }
+            ], 
+            "name": "Marchandises B1"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournitures de magasin"
+             }, 
+             {
+              "name": "Fournitures de bureau"
+             }, 
+             {
+              "name": "Produits d'entretien"
+             }, 
+             {
+              "name": "Mati\u00e8res consommables (groupe B)"
+             }, 
+             {
+              "name": "Mati\u00e8res consommables (groupe A)"
+             }, 
+             {
+              "name": "Fournitures d'atelier et d'usine"
+             }, 
+             {
+              "name": "Combustibles"
+             }
+            ], 
+            "name": "Marchandises B2"
+           }
+          ], 
+          "name": "MARCHANDISES B"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits interm\u00e9diaires et produits r\u00e9siduels"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D\u00e9chets"
+             }, 
+             {
+              "name": "Mati\u00e8res de r\u00e9cup\u00e9ration"
+             }, 
+             {
+              "name": "Rebuts"
+             }
+            ], 
+            "name": "Produits r\u00e9siduels (ou mati\u00e8res de r\u00e9cup\u00e9ration)"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Produits interm\u00e9diaires (groupe A)"
+             }, 
+             {
+              "name": "Produits interm\u00e9diaires (groupe B)"
+             }
+            ], 
+            "name": "Produits interm\u00e9diaires"
+           }
+          ], 
+          "name": "Produits interm\u00e9diaires et produits r\u00e9siduels"
+         }, 
+         {
+          "name": "Fournitures A, B, C, ..", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "MARCHANDISES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires A"
+           }, 
+           {
+            "name": "Produits interm\u00e9diaires B"
+           }
+          ], 
+          "name": "PRODUITS INTERM\u00c9DIAIRES"
+         }, 
+         {
+          "name": "Diferente de pret la marfuri"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9chets"
+           }, 
+           {
+            "name": "Rebuts"
+           }, 
+           {
+            "name": "Mati\u00e8res de R\u00e9cup\u00e9ration"
+           }
+          ], 
+          "name": "PRODUITS R\u00c9SIDUELS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des cr\u00e9ances circulantes"
+           }, 
+           {
+            "name": "Augmentation des dettes circulantes"
+           }
+          ], 
+          "name": "\u00c9cart de conversion - Actif (\u00e9l\u00e9ments circulant)"
+         }
+        ], 
+        "name": "PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS"
+       }
+      ], 
+      "name": "Comptes de stocks et d'en-cours"
+     }
+    ], 
+    "name": "Comptes de bilan"
+   }, 
+   {
+    "name": "COMPTES DE RESULTATS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Giruri si garantii acordate"
+           }, 
+           {
+            "name": "Alte angajamente acordate "
+           }
+          ], 
+          "name": "Angajamente acordate"
+         }, 
+         {
+          "name": "Certificate de emisii de gaze cu efect de sera"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valori materiale primite in pastrare sau custodie"
+           }, 
+           {
+            "name": "Bunuri publice primite in administrare, concesiune si cu chirie"
+           }, 
+           {
+            "name": "Alte valori in afara bilantului"
+           }, 
+           {
+            "name": "Debitori scosi din activ, urmariti in continuare"
+           }, 
+           {
+            "name": "Efecte scontate neajunse la scadenta"
+           }, 
+           {
+            "name": "Valori materiale primite spre prelucrare sau reparare"
+           }, 
+           {
+            "name": "Stocuri de natura obiectelor de inventar date in folosinta"
+           }, 
+           {
+            "name": "Redevente, locatii de gestiune, chirii si alte datorii asimilate"
+           }, 
+           {
+            "name": "Imobilizari corporale luate cu chirie"
+           }
+          ], 
+          "name": "Alte conturi in afara bilantului"
+         }, 
+         {
+          "name": "Datorii contingente"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte angajamente primite"
+           }, 
+           {
+            "name": "Giruri si garantii primite"
+           }
+          ], 
+          "name": "Angajamente primite"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizarea aferenta gradului de neutilizare a mijloacelor fixe "
+           }
+          ], 
+          "name": "Amortizarea aferenta gradului de neutilizare a mijloacelor fixe"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi de incasat"
+           }, 
+           {
+            "name": "Dobanzi de platit"
+           }
+          ], 
+          "name": "Dobanzi aferente contractelor de leasing si altor contracte asimilate, neajunse la scadenta"
+         }, 
+         {
+          "name": "Active contingente"
+         }
+        ], 
+        "name": "CONTURI IN AFARA BILANTULUI"
+       }
+      ], 
+      "name": "CONTURI SPECIALE"
+     }, 
+     {
+      "name": "CONTURI DE GESTIUNE"
+     }
+    ], 
+    "name": "Conturi in afara bilantului"
+   }, 
+   {
+    "children": [
+     {
+      "name": "COMPTES DE PRODUITS"
+     }, 
+     {
+      "name": "COMPTES DE CHARGES"
+     }
+    ], 
+    "name": "COMPTES DE GESTION"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Comptes de produits"
+     }, 
+     {
+      "name": "Comptes de charges"
+     }
+    ], 
+    "name": "Comptes de gestion"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Comptes financiers"
+     }, 
+     {
+      "name": "Comptes de tiers"
+     }, 
+     {
+      "name": "Comptes de capitaux"
+     }, 
+     {
+      "name": "Comptes de stocks et d'en-cours"
+     }, 
+     {
+      "name": "Comptes d'immobilisations"
+     }
+    ], 
+    "name": "Comptes de bilan"
+   }, 
+   {
+    "children": [
+     {
+      "name": "COMPTES D'ECARTS SUR COUTS PREETABLIS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Costul productiei de executie"
+       }, 
+       {
+        "name": "Costul productiei obtinute"
+       }
+      ], 
+      "name": "COMPTES DE RECLASSEMENTS"
+     }, 
+     {
+      "name": "COMPTES DE RESULTATS"
+     }, 
+     {
+      "name": "COMPTES DE LIAISONS INTERNES"
+     }, 
+     {
+      "name": "COMPTES DE CO\u00dbTS"
+     }, 
+     {
+      "name": "COMPTES DE DIFFERENCES DE TRAITEMENT COMPTABLE\n        "
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Divers engagements obtenus"
+         }, 
+         {
+          "name": "Abandons de cr\u00e9ances conditionnels"
+         }, 
+         {
+          "name": "Ventes avec clause de r\u00e9serve de propri\u00e9t\u00e9"
+         }
+        ], 
+        "name": "AUTRES ENGAGEMENTS OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres engagements de financement obtenus"
+         }, 
+         {
+          "name": "Facilit\u00e9s de financement renouvelables"
+         }, 
+         {
+          "name": "Emprunts restant \u00e0 encaisser"
+         }, 
+         {
+          "name": " Facilit\u00e9s d'\u00e9mission"
+         }, 
+         {
+          "name": "Cr\u00e9dits confirm\u00e9s obtenus"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE FINANCEMENT OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Commandes fermes des clients"
+         }, 
+         {
+          "name": "Achats de marchandises \u00e0 terme"
+         }, 
+         {
+          "name": "Achats \u00e0 terme de devises"
+         }, 
+         {
+          "name": "Autres engagements r\u00e9ciproques"
+         }
+        ], 
+        "name": "ENGAGEMENTS R\u00c9CIPROQUES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Avals accord\u00e9s"
+         }, 
+         {
+          "name": "Cautions, garanties accord\u00e9es"
+         }, 
+         {
+          "name": "Effets endoss\u00e9s par l'entreprise"
+         }, 
+         {
+          "name": "Autres garanties accord\u00e9es"
+         }, 
+         {
+          "name": "Hypoth\u00e8ques accord\u00e9es"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE GARANTIE ACCORD\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets endoss\u00e9s par des tiers"
+         }, 
+         {
+          "name": "Hypoth\u00e8ques obtenues"
+         }, 
+         {
+          "name": "Autres garanties obtenues"
+         }, 
+         {
+          "name": "Cautions, garanties obtenues"
+         }, 
+         {
+          "name": "Avals obtenus"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE GARANTIE OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Achats avec clause de r\u00e9serve de propri\u00e9t\u00e9"
+         }, 
+         {
+          "name": "Divers engagements accord\u00e9s"
+         }, 
+         {
+          "name": "Annulations conditionnelles de dettes"
+         }, 
+         {
+          "name": "Engagements de retraite"
+         }
+        ], 
+        "name": "AUTRES ENGAGEMENTS ACCORD\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Commandes fermes aux fournisseurs"
+         }, 
+         {
+          "name": "Ventes de marchandises \u00e0 terme"
+         }, 
+         {
+          "name": "Autres engagements r\u00e9ciproques"
+         }, 
+         {
+          "name": "Ventes \u00e0 terme de devises"
+         }
+        ], 
+        "name": "ENGAGEMENTS R\u00c9CIPROQUES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9dits accord\u00e9s non d\u00e9caiss\u00e9s"
+         }, 
+         {
+          "name": "Autres engagements de financement accord\u00e9s"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE FINANCEMENT ACCORD\u00c9S"
+       }
+      ], 
+      "name": "ENGAGEMENTS OBTENUS ET ENGAGEMENTS ACCORD\u00c9S"
+     }, 
+     {
+      "children": [
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }
+      ], 
+      "name": "CONTREPARTIES DES ENGAGEMENTS"
+     }, 
+     {
+      "name": "COMPTES DE STOCKS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cheltuieli generale de administratie"
+       }, 
+       {
+        "name": "Cheltuieli indirecte de productie"
+       }, 
+       {
+        "name": "Cheltuielile activitatii de baza"
+       }, 
+       {
+        "name": "Cheltuieli de desfacere"
+       }, 
+       {
+        "name": "Cheltuielile activitatilor auxiliare"
+       }
+      ], 
+      "name": "COMPTES REFLECHIS"
+     }
+    ], 
+    "name": "Comptes des engagements hors bilan et comptabilit\u00e9 analytique"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotations aux amortissements des immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations pour d\u00e9pr\u00e9ciations des immobilisations incorporelles et corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cr\u00e9ances", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Stocks et en-cours", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciation des actifs circulants"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux amortissements des charges immobilis\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux amortissements des immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli de exploatare privind ajustarile pentru deprecierea activelor circulante", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX AMORTISSEMENTS D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotations aux amortissements des primes de remboursement des obligations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges financiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind amortizarea primelor de rambursare a obligatiunilor", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a imobilizarilor financiare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations financi\u00e8res", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Valeurs mobili\u00e8res de placement", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux d\u00e9pr\u00e9ciation des \u00e9l\u00e9ments financiers"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a activelor circulante", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli financiare privind amortizarile si ajustarile pentru pierdere de valoare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotations aux provisions r\u00e9glement\u00e9es (stocks)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux amortissements exceptionnels des immobilisations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements d\u00e9rogatoires", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux amortissements des primes de remboursement des obligations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux d\u00e9pr\u00e9ciations exceptionnelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions exceptionnelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres dotations aux amortissements \u00e0 caract\u00e8re financier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux autres provisions r\u00e9glement\u00e9es", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX AMORTISSEMENTS \u00c0 CARACT\u00c8RE FINANCIER", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "DOTATIONS AUX AMORTISSEMENTS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "QUOTE-PART DE R\u00c9SULTAT ANNUL\u00c9E SUR EX\u00c9CUTION PARTIELLE DE CONTRATS PLURI-EXERCICES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances des exercices ant\u00e9rieurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9ances de l'exercice", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "VALEUR COMPTABLE DES CESSIONS COURANTES D'IMMOBILISATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part transf\u00e9r\u00e9e de b\u00e9n\u00e9fices (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Pertes imput\u00e9es par transfert (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR OP\u00c9RATIONS FAITES EN COMMUN", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges provisionn\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur stocks", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. aux provisions pour risques et charges durables"
+             }, 
+             {
+              "name": "D.N.C. aux provisions pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Dotations non courantes aux provisions pour risques et charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. pour plus-values en instance d'imposition"
+             }, 
+             {
+              "name": "D.N.C. pour reconstitution de gisements"
+             }, 
+             {
+              "name": "D.N.C. pour acquisition et construction de logements"
+             }, 
+             {
+              "name": "D.N.C. pour investissements"
+             }, 
+             {
+              "name": "D.N.C. pour amortissements d\u00e9rogatoires"
+             }
+            ], 
+            "name": "sur cr\u00e9ances", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. aux provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+             }, 
+             {
+              "name": "D.N.C. aux provisions pour d\u00e9pr\u00e9ciation de l'actif immobilis\u00e9"
+             }
+            ], 
+            "name": "Dotations non courantes aux provisions pour d\u00e9pr\u00e9ciation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.A.E. de l'immobilisation en non-valeurs"
+             }, 
+             {
+              "name": "D.A.E. des immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.A.E. des immobilisations corporelles"
+             }
+            ], 
+            "name": "sur risques \u00e0 court terme", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES PROVISIONN\u00c9ES D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte cheltuieli de exploatare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9ances devenues irr\u00e9couvrables"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Dons"
+             }, 
+             {
+              "name": "Lots"
+             }, 
+             {
+              "name": "Lib\u00e9ralit\u00e9s"
+             }
+            ], 
+            "name": "Dons, lib\u00e9ralit\u00e9s et lots"
+           }, 
+           {
+            "name": "Dons", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "P\u00e9nalit\u00e9s et amendes fiscales"
+             }, 
+             {
+              "name": "P\u00e9nalit\u00e9s et amendes p\u00e9nales"
+             }
+            ], 
+            "name": "M\u00e9c\u00e9nat", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D\u00e9dits"
+             }, 
+             {
+              "name": "P\u00e9nalit\u00e9s sur march\u00e9s"
+             }
+            ], 
+            "name": "Jetons de pr\u00e9sence et autres r\u00e9mun\u00e9rations d'administrateurs", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES DIVERSES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part de perte support\u00e9e (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Quote-part de b\u00e9n\u00e9fice transf\u00e9r\u00e9e (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Quotes-parts de r\u00e9sultat sur op\u00e9rations faites en commun"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions accord\u00e9es de l'exercice"
+           }, 
+           {
+            "name": "Subventions accord\u00e9es des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Subventions accord\u00e9es"
+         }, 
+         {
+          "children": [
+           {
+            "name": "VNA des immobilisations c\u00e9d\u00e9es des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Clients", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "VNA des immobilisations corporelles c\u00e9d\u00e9es"
+           }, 
+           {
+            "name": "VNA des immobilisations incorporelles c\u00e9d\u00e9es"
+           }, 
+           {
+            "name": "Autres d\u00e9biteurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "VNA provisions des immobilisations financi\u00e8res c\u00e9d\u00e9es (droits de propri\u00e9t\u00e9)"
+           }, 
+           {
+            "name": "Droits d'auteur et de reproduction", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PERTES SUR CR\u00c9ANCES CLIENTS ET AUTRES D\u00c9BITEURS", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "AUTRES CHARGES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "M\u00e9decine du travail pharmacie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres amendes p\u00e9nales et fiscales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s d'assiette, imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s de recouvrement, imp\u00f4ts directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s d'assiette, imp\u00f4ts directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s de recouvrement, imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00c9NALIT\u00c9S ET AMENDES FISCALES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "AUTRES IMP\u00d4TS ET TAXES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu tichetele de masa acordate salariatilor", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres imp\u00f4ts et taxes directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes d'apprentissage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Patentes, licences et taxes annexes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes sur appointements et salaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Formation professionnelle continue", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts fonciers et taxes annexes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "IMP\u00d4TS ET TAXES DIRECTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Droits de mutation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres droits", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes sur les v\u00e9hicules de soci\u00e9t\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Droits de timbre", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Vignettes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DROITS D'ENREGISTREMENT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu renumerarea in instrumente de capitaluri proprii", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contributia unitatii la asigurarile sociale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii pentru ajutorul de somaj", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia angajatorului pentru asigurarile sociale de sanatate", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de garantare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de concedii medicale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la schemele de pensii facultative", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Alte cheltuieli privind asigurarile si protectia sociala", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la primele de asigurare voluntara de sanatate", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "IMP\u00d4TS ET TAXES INDIRECTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu primele reprezentand participarea personalului la profit", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "IMP\u00d4TS ET TAXES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PERTES SUR CESSIONS DE TITRES DE PLACEMENT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges exceptionnelles diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur instruments de tr\u00e9sorerie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur rentes viag\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur op\u00e9rations financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Malis provenant du rachat par l'entreprise d'actions et obligations \u00e9mises par elle-m\u00eame", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PERTES SUR RISQUES FINANCIERS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats sur dettes commerciales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats sur obligations cautionn\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats sur dettes diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Avances re\u00e7ues et d\u00e9p\u00f4ts cr\u00e9diteurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Comptes courants bloqu\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats bancaires et sur op\u00e9rations de tr\u00e9sorerie et d\u2019escompte", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES INT\u00c9R\u00caTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "PERTES DE CHANGE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges provisionn\u00e9es financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur titres de placement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur risques financiers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES PROVISIONN\u00c9ES FINANCI\u00c8RES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "ESCOMPTES ACCORD\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats dans loyers de cr\u00e9dit-bail immobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats dans loyers des autres contrats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats dans loyers de cr\u00e9dit-bail mobilier", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DANS LOYERS DE CR\u00c9DIT-BAIL ET CONTRATS ASSIMIL\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances devenues irr\u00e9couvrables dans l'exercice", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Subventions accord\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emprunts obligataires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rappels d'imp\u00f4ts (autres qu'imp\u00f4ts sur les b\u00e9n\u00e9fices)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres charges exceptionnelles sur op\u00e9ration de gestion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DES EMPRUNTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imposition minimale annuelle des soci\u00e9t\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts sur les b\u00e9n\u00e9fices"
+           }, 
+           {
+            "name": "Rappels et d\u00e9gr\u00e8vements d'imp\u00f4ts sur les r\u00e9sultats"
+           }
+          ], 
+          "name": "Imp\u00f4ts sur les r\u00e9sultats"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres \u00e9l\u00e9ments d'actif", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Immobilisations financi\u00e8res", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ESCOMPTES DES EFFETS DE COMMERCE", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "FRAIS FINANCIERS ET CHARGES ASSIMIL\u00c9ES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "D.E. aux amortissements des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "D.E. aux provisions des exercices ant\u00e9rieurs"
+             }
+            ], 
+            "name": "Dotations d'exploitation des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des immobilisations corporelles"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour d\u00e9pr\u00e9ciation des immobilisations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des stocks"
+             }, 
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des cr\u00e9ances de l'actif circulant"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour d\u00e9pr\u00e9ciations de l'actif circulant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour risques et charges durables"
+             }, 
+             {
+              "name": "D.E.P. pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour risques et charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des frais pr\u00e9liminaires"
+             }, 
+             {
+              "name": "D.E.A. des charges \u00e0\u00a0 r\u00e9partir"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements de l'immobilisation en non valeur"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des mobiliers, mat\u00e9riels de bureau et am\u00e9nagements divers"
+             }, 
+             {
+              "name": "D.E.A. du mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "D.E.A. des autres immobilisations corporelles"
+             }, 
+             {
+              "name": "D.E.A. des terrains"
+             }, 
+             {
+              "name": "D.E.A. des installations techniques, mat\u00e9riel et outillage"
+             }, 
+             {
+              "name": "D.E.A. des constructions"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements des immobilisations corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des autres immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.E.A. de l'immobilisation en recherche et d\u00e9veloppement"
+             }, 
+             {
+              "name": "D.E.A. du fonds commercial"
+             }, 
+             {
+              "name": "D.E.A. des brevets, marques, droits et valeurs similaires"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements des immobilisations incorporelles"
+           }
+          ], 
+          "name": "Dotations d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges d'exploitation des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Transports administratifs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Voyages et d\u00e9placements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transports entre \u00e9tablissements ou chantiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transfert de profits sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Pertes sur op\u00e9rations faites en commun"
+           }
+          ], 
+          "name": "AUTRES FRAIS DE TRANSPORT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Achats de marchandises \"groupe A\""
+           }, 
+           {
+            "name": "Achats de marchandises \"groupe B\""
+           }, 
+           {
+            "name": "Rabais, remises et ristournes obtenus sur achats de marchandises"
+           }, 
+           {
+            "name": "Achats revendus de marchandises des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Variation de stocks de marchandises"
+           }
+          ], 
+          "name": "TRANSPORTS SUR ACHATS()", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Honoraires"
+             }, 
+             {
+              "name": "Commissions et courtages"
+             }, 
+             {
+              "name": "Frais d'actes et de contentieux"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations d'interm\u00e9diaires et honoraires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Assurances - Mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "Assurances multirisque (vol, incendie,R,C,)"
+             }, 
+             {
+              "name": "Autres assurances"
+             }, 
+             {
+              "name": "Assurances - risques d'exploitation"
+             }
+            ], 
+            "name": "Primes d'assurances"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres redevances"
+             }, 
+             {
+              "name": "Redevances pour brevets"
+             }
+            ], 
+            "name": "Redevances pour brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel occasionnel"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0\u00a0 l'entreprise"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel int\u00e9rimaire"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations du personnel ext\u00e9rieur \u00e0\u00a0 l'entreprise"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Maintenance"
+             }, 
+             {
+              "name": "Entretien et r\u00e9parations des biens immobiliers"
+             }, 
+             {
+              "name": "Entretien et r\u00e9parations des biens mobiliers"
+             }
+            ], 
+            "name": "Entretien et r\u00e9parations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Redevances de cr\u00e9dit-bail - mobilier et mat\u00e9riel"
+             }
+            ], 
+            "name": "Redevances de cr\u00e9dit-bail"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Locations de constructions"
+             }, 
+             {
+              "name": "Locations et charges locatives diverses"
+             }, 
+             {
+              "name": "Locations de terrains"
+             }, 
+             {
+              "name": "Malis sur emballages rendus"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel informatique"
+             }, 
+             {
+              "name": "Locations de mobilier et de mat\u00e9riel de bureau"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel et d'outillage"
+             }
+            ], 
+            "name": "Locations et charges locatives"
+           }
+          ], 
+          "name": "TRANSPORTS POUR LE COMPTE DE TIERS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de travaux, \u00e9tudes et prestations de service"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res et fournitures consommables"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats des emballages"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res premi\u00e8res"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res et fournitures des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats non stock\u00e9s"
+             }
+            ], 
+            "name": "Rabais, remises et ristournes obtenus sur achats consomm\u00e9s de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks des emballages"
+             }, 
+             {
+              "name": "Variation des stocks de mati\u00e8res et fournitures consommables"
+             }, 
+             {
+              "name": "Variation des stocks de mati\u00e8res premi\u00e8res"
+             }
+            ], 
+            "name": "Variation des stocks de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de fournitures d'entretien"
+             }, 
+             {
+              "name": "Achats de fournitures non stockables (eau, \u00e9lectricit\u00e9,,)"
+             }, 
+             {
+              "name": "Achats de fournitures de bureau"
+             }, 
+             {
+              "name": "Achats de petit outillage et petit \u00e9quipement"
+             }
+            ], 
+            "name": "Achats non stock\u00e9s de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats des prestations de service"
+             }, 
+             {
+              "name": "Achats des \u00e9tudes"
+             }, 
+             {
+              "name": "Achats des travaux"
+             }
+            ], 
+            "name": "Achats de travaux, \u00e9tudes et prestations de service"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats d'emballages perdus"
+             }, 
+             {
+              "name": "Achats d'emballages r\u00e9cup\u00e9rables non identifiables"
+             }, 
+             {
+              "name": "Achats d'emballages \u00e0\u00a0 usage mixte"
+             }
+            ], 
+            "name": "Achats d'emballages"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de mati\u00e8res et fournitures B"
+             }, 
+             {
+              "name": "Achats de combustibles"
+             }, 
+             {
+              "name": "Achats de mati\u00e8res et fournitures A"
+             }, 
+             {
+              "name": "Achats de fournitures de bureau"
+             }, 
+             {
+              "name": "Achats de fournitures d'atelier et d'usine"
+             }, 
+             {
+              "name": "Achats de produits d'entretien"
+             }, 
+             {
+              "name": "Achats de fournitures de magasin"
+             }
+            ], 
+            "name": "Achats de mati\u00e8res et fournitures consommables"
+           }, 
+           {
+            "name": "Achats de mati\u00e8res et de fournitures des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de mati\u00e8res premi\u00e8res B"
+             }, 
+             {
+              "name": "Achats de mati\u00e8res premi\u00e8res A"
+             }
+            ], 
+            "name": "Achats de mati\u00e8res premi\u00e8res"
+           }
+          ], 
+          "name": "TRANSPORTS SUR VENTES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Dons"
+             }, 
+             {
+              "name": "Cotisations"
+             }
+            ], 
+            "name": "Cotisations et dons"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais sur effets de commerce"
+             }, 
+             {
+              "name": "Frais d'achat et de vente des titres"
+             }, 
+             {
+              "name": "Frais et commissions sur services bancaires"
+             }
+            ], 
+            "name": "Services bancaires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres transports"
+             }, 
+             {
+              "name": "Transports sur ventes"
+             }, 
+             {
+              "name": "Transports du personnel"
+             }, 
+             {
+              "name": "Transports sur achats"
+             }
+            ], 
+            "name": "Transports"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes obtenus sur autres charges externes"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais de t\u00e9l\u00e9phone"
+             }, 
+             {
+              "name": "Frais de t\u00e9lex et de t\u00e9l\u00e9grammes"
+             }, 
+             {
+              "name": "Frais postaux"
+             }
+            ], 
+            "name": "Frais postaux et frais de t\u00e9l\u00e9communication"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Documentation g\u00e9n\u00e9rale"
+             }, 
+             {
+              "name": "Recherches"
+             }, 
+             {
+              "name": "Documentation technique"
+             }, 
+             {
+              "name": "\u00c9tudes g\u00e9n\u00e9rales"
+             }
+            ], 
+            "name": "\u00c9tudes, recherches et documentation"
+           }, 
+           {
+            "name": "Autres charges externes des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Foires et expositions"
+             }, 
+             {
+              "name": "Publications"
+             }, 
+             {
+              "name": "Cadeaux \u00e0\u00a0 la client\u00e8le"
+             }, 
+             {
+              "name": "Primes de publicit\u00e9"
+             }, 
+             {
+              "name": "\u00c9chantillons, catalogues et imprim\u00e9s publicitaires"
+             }, 
+             {
+              "name": "Annonces et insertions"
+             }, 
+             {
+              "name": "Autres charges de publicit\u00e9 et relations publiques"
+             }
+            ], 
+            "name": "Publicit\u00e9, publications et relations publiques"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Missions"
+             }, 
+             {
+              "name": "Voyages et d\u00e9placements"
+             }, 
+             {
+              "name": "R\u00e9ceptions"
+             }, 
+             {
+              "name": "Frais de d\u00e9m\u00e9nagement"
+             }
+            ], 
+            "name": "D\u00e9placements, missions et r\u00e9ceptions"
+           }
+          ], 
+          "name": "TRANSPORTS DU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Charges sociales sur appointements et salaires de l'exploitant"
+             }, 
+             {
+              "name": "Appointements et salaires"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9ration de l'exploitant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres charges sociales diverses"
+             }, 
+             {
+              "name": "Indemnit\u00e9s de pr\u00e9avis et de licenciement"
+             }, 
+             {
+              "name": "Assurances groupe"
+             }, 
+             {
+              "name": "M\u00e9decine de travail, pharmacie"
+             }, 
+             {
+              "name": "Habillement et v\u00eatements de travail"
+             }, 
+             {
+              "name": "Allocations aux oeuvres sociales"
+             }, 
+             {
+              "name": "Prestations de retraites"
+             }
+            ], 
+            "name": "Charges sociales diverses"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Primes de repr\u00e9sentation"
+             }, 
+             {
+              "name": "Commissions au personnel"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations des administrateurs, g\u00e9rants et associ\u00e9s"
+             }, 
+             {
+              "name": "Indemnit\u00e9s et avantages divers"
+             }, 
+             {
+              "name": "Primes et gratifications"
+             }, 
+             {
+              "name": "Appointements et salaires"
+             }, 
+             {
+              "name": "Indemnit\u00e9s de d\u00e9placement"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations du personnel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations familiales"
+             }, 
+             {
+              "name": "Assurances accidents de travail"
+             }, 
+             {
+              "name": "Cotisations de s\u00e9curit\u00e9 sociale"
+             }, 
+             {
+              "name": "Cotisations aux mutuelles"
+             }, 
+             {
+              "name": "Cotisations aux caisses de retraite"
+             }
+            ], 
+            "name": "Charges sociales"
+           }, 
+           {
+            "name": "Charges du personnel des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Charges de personnel"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- sur biens immobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- sur biens mobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Maintenance", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Entretien et r\u00e9parations"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Taxe urbaine et taxe d'\u00e9dilit\u00e9"
+             }, 
+             {
+              "name": "Patente"
+             }, 
+             {
+              "name": "Taxes locales"
+             }
+            ], 
+            "name": "Imp\u00f4ts et taxes directs"
+           }, 
+           {
+            "name": "Assurance obligatoire dommage construction ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Risques d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes directs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Assurance transport sur autres biens", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Assurance transport sur achats", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Assurance transportsur ventes", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Assurance transport"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Droits d'enregistrement et de timbre"
+             }, 
+             {
+              "name": "Taxes sur les v\u00e9hicules"
+             }, 
+             {
+              "name": "Autres imp\u00f4ts, taxes et droits assimil\u00e9s"
+             }, 
+             {
+              "name": "La vignette"
+             }
+            ], 
+            "name": "Imp\u00f4ts, taxes et droits assimil\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "TRANSPORTS DE PLIS", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "TRANSPORTS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournitures non stockables - Electricit\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'entretien non stockables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures de bureau non stockables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats de petit mat\u00e9riel et outillage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables -Eau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables \u2013 Autres \u00e9nergies", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats de travaux, mat\u00e9riels et \u00e9quipements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats d'\u00e9tudes et prestations de services", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES ACHATS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournitures administratives", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables (eau, \u00e9nergie...) ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'entretien et de petit \u00e9quipement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres mati\u00e8res et fournitures", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli privind animalele si pasarile", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournitures de bureau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures de magasin", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Mati\u00e8res combustibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Mati\u00e8res consommables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'atelier et d'usine", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS STOCK\u00c9S DE MATI\u00c8RES ET FOURNITURES CONSOMMABLES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournitures d'atelier et d'usine", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Combustibles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Produits d'entretien", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fournitures de magasin", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fournitures de bureau", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Emballages perdus", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Emballages \u00e0 usage mixte", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Cheltuieli privind furajele", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli privind alte materiale consumabile", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli privind semintele si materialele de plantat", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mati\u00e8res (ou groupe) D", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mati\u00e8res (ou groupe) C", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS DE MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variation des stocks de marchandises", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks de mati\u00e8res premi\u00e8res et fournitures li\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks d'autres approvisionnements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks de marchandises", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE BIENS ACHET\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures A, B, C, ..", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS DE MARCHANDISES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages \u00e0 usage mixte", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emballages perdus", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS D'EMBALLAGES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- de mat\u00e9riel, \u00e9quipements et travaux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes non affect\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- de mati\u00e8res premi\u00e8res (et fournitures)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'autres approvisionnements stock\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'\u00e9tudes et prestations de services", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'approvisionnements non stock\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- de marchandises", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Rabais, remises et ristournes obtenus sur achats"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marchandise (ou groupe) B", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Marchandise (ou groupe) A", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Achats de marchandises"
+         }, 
+         {
+          "name": "Cheltuieli privind marfurile", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reduceri comerciale primite", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "ACHATS ET VARIATIONS DE STOCKS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges financi\u00e8res"
+           }, 
+           {
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciations des immobilisations financi\u00e8res"
+           }, 
+           {
+            "name": "Dotation aux provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Dotations financi\u00e8res des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Dotations aux amortissements des primes de remboursement des obligations"
+           }
+          ], 
+          "name": "Dotations financi\u00e8res"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9ceptions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de recrutement du personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de d\u00e9m\u00e9nagement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Missions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES CHARGES EXTERNES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Redevances pour logiciels", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour brevets, licences, concessions et droits similaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour marques", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "REDEVANCES POUR BREVETS, LICENCES, LOGICIELS ET DROITS SIMILAIRES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Concours divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres imp\u00f4ts locaux", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxes fonci\u00e8res", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxe professionnelle", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxe sur les v\u00e9hicules des soci\u00e9t\u00e9s", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Cotisations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Droits de mutation", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Droits d'enregistrement et de timbre"
+           }, 
+           {
+            "name": "Taxes sur le chiffre d'affaires non r\u00e9cup\u00e9rables ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "COTISATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes exigibles \u00e0 l'\u00e9tranger", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l'entreprise", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes diverses", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DE PERSONNEL EXT\u00c9RIEUR \u00c0 L'ENTREPRISE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participation des employeurs \u00e0 la formation professionnelle continue", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Allocation logement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements lib\u00e9ratoires ouvrant droit \u00e0 l'exon\u00e9ration de la taxe d'apprentissage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Participation des employeurs \u00e0 l'effort de construction", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Pertes de change des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Pertes de change propres \u00e0\u00a0 l'exercice"
+           }
+          ], 
+          "name": "FRAIS DE FORMATION DU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9mun\u00e9rations des transitaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'actes et de contentieux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions et courtages sur achats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers frais", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions et courtages sur ventes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS D'INTERM\u00c9DIAIRES ET DE CONSEILS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Commissions sur cartes de cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'\u00e9mission d'emprunts", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cotisation pour d\u00e9faut d'investissement obligatoire dans la construction", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres frais bancaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Location de coffres", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais sur effets", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des comptes courants et d\u00e9p\u00f4ts cr\u00e9diteurs"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des dettes rattach\u00e9es \u00e0\u00a0 des participations"
+             }, 
+             {
+              "name": "Autres int\u00e9r\u00eats des emprunts et dettes"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats bancaires et sur op\u00e9rations de financement"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des emprunts"
+             }
+            ], 
+            "name": "Frais sur titres (achat, vente, garde)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "FRAIS BANCAIRES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SERVICES EXT\u00c9RIEURS B", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rabais, remises et ristournes obtenus sur autres services ext\u00e9rieurs", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurances risques d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances insolvabilit\u00e9 clients", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances transport sur achats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances mat\u00e9riel de transport", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances multirisques", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances transport sur ventes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances responsabilit\u00e9 du producteur", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres primes d'assurances", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PRIMES D'ASSURANCE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Annonces et insertions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9dit-bail immobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9dit-bail mobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cadeaux \u00e0 la client\u00e8le", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contrats assimil\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Catalogues et imprim\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Publications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers (pourboires, dons courants...)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "REDEVANCES DE CR\u00c9DIT-BAIL ET CONTRATS ASSIMIL\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres frais de t\u00e9l\u00e9communications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9l\u00e9phone", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9l\u00e9copie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9lex", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de recrutement de personnel", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "FRAIS DE T\u00c9L\u00c9COMMUNICATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Documentation g\u00e9n\u00e9rale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Documentation technique", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "\u00c9tudes et recherches", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\u00c9TUDES, RECHERCHES ET DOCUMENTATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l'entreprise", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "SOUS-TRAITANCE G\u00c9N\u00c9RALE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Transports administratifs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transports collectifs du personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Entretien et r\u00e9parations des biens immobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Maintenance", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres entretiens et r\u00e9parations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Entretien et r\u00e9parations des biens mobiliers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ENTRETIEN, R\u00c9PARATIONS ET MAINTENANCE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9chantillons", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres charges de publicit\u00e9 et relations publiques", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Publications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cadeaux \u00e0 la client\u00e8le", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Annonces, insertions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Catalogues, imprim\u00e9s publicitaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Foires et expositions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de colloques, s\u00e9minaires, conf\u00e9rences", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PUBLICIT\u00c9, PUBLICATIONS, RELATIONS PUBLIQUES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Locations et charges locatives diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de b\u00e2timents", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'actes et de contentieux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Malis sur emballages", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de terrains", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de mat\u00e9riels et outillages", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations d'emballages", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "LOCATIONS ET CHARGES LOCATIVES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SERVICES EXT\u00c9RIEURS A", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Int\u00e9gration fiscale - Produits", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9gration fiscale - Charges", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli cu impozitul pe venit si cu alte impozite care nu apar in elementele de mai sus", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX PROVISIONS FINANCI\u00c8RES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ment d'imp\u00f4t sur les soci\u00e9t\u00e9s li\u00e9 aux distributions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Produits, Reports en arri\u00e8re des d\u00e9ficits", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour grosses r\u00e9parations", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX PROVISIONS D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contribution additionnelle \u00e0 l'imp\u00f4t sur les b\u00e9n\u00e9fices", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts dus \u00e0 l'\u00e9tranger", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts dus en France", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Imp\u00f4ts sur les b\u00e9n\u00e9fices"
+         }
+        ], 
+        "name": "DOTATIONS AUX PROVISIONS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cong\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Primes et gratifications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Avantages en nature", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de pr\u00e9avis, de licenciement et de recherche d'embauche", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Suppl\u00e9ment familial", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de maladie vers\u00e9es aux travailleurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des dettes commerciales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des dettes diverses", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Autres r\u00e9mun\u00e9rations directes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des dettes rattach\u00e9es \u00e0 des participations", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des emprunts et dettes assimil\u00e9es", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Appointements salaires et commissions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DIRECTES VERS\u00c9ES AU PERSONNEL NATIONAL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges sociales sur r\u00e9mun\u00e9ration du personnel non national", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Charges sociales sur r\u00e9mun\u00e9ration du personnel national", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES SOCIALES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avantages en nature", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Suppl\u00e9ment familial", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de maladie vers\u00e9es aux travailleurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cong\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Primes et gratifications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Appointements salaires et commissions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres r\u00e9mun\u00e9rations directes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de pr\u00e9avis, de licenciement et de recherche d'embauche", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DIRECTES VERS\u00c9ES AU PERSONNEL NON NATIONAL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Indemnit\u00e9s d'expatriation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres indemnit\u00e9s et avantages divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de logement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de repr\u00e9sentation", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INDEMNIT\u00c9S FORFAITAIRES VERS\u00c9ES AU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli din diferente de curs valutar", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l\u2019entreprise", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATION TRANSF\u00c9R\u00c9E DE PERSONNEL EXT\u00c9RIEUR", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges sociales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "R\u00e9mun\u00e9ration du travail de l'exploitant", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS ET CHARGES SOCIALES DE L'EXPLOITANT INDIVIDUEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "M\u00e9decine du travail et pharmacie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux Syndicats et Comit\u00e9s d'entreprise, d'\u00e9tablissement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux autres oeuvres sociales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux Comit\u00e9s d'hygi\u00e8ne et de s\u00e9curit\u00e9", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES CHARGES SOCIALES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "CHARGES DE PERSONNEL", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Comptes de charges"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferts de charges financi\u00e8res", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE PROVISIONS FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations corporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour grosses r\u00e9parations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations incorporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE PROVISIONS D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REPRISES D'AMORTISSEMENTS", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "REPRISES DE PROVISIONS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reprises sur provisions exceptionnelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises pour d\u00e9pr\u00e9ciations exceptionnelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur provisions r\u00e9glement\u00e9es (stocks) ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur autres provisions r\u00e9glement\u00e9es ", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements d\u00e9rogatoires", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Plus-values r\u00e9investies", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision sp\u00e9ciale de r\u00e9\u00e9valuation", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur provisions r\u00e9glement\u00e9es (immobilisations)"
+           }
+          ], 
+          "name": "TRANSFERTS DE CHARGES FINANCIERES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Venituri financiare din ajustari pentru pierderea de valoare a imobilizarilor financiare", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Valeurs mobili\u00e8res de placement", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations financi\u00e8res", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des \u00e9l\u00e9ments financiers"
+           }, 
+           {
+            "name": "Venituri financiare din ajustari pentru pierderea de valoare a activelor circulante", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur provisions financiers", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Venituri financiare din ajustari pentru pierdere de valoare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Venituri din ajustari pentru deprecierea activelor circulante ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din provizioane", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cr\u00e9ances", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Stocks et en-cours", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des actifs circulants"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des immobilisations corporelles et incorporelles"
+           }, 
+           {
+            "name": "Venituri din fondul comercial negativ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din ajustari pentru deprecierea imobilizarilor", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur amortissements des immobilisations incorporelles et corporelles "
+           }
+          ], 
+          "name": "TRANSFERTS DE CHARGES D'EXPLOITATION", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "TRANSFERTS DE CHARGES", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "GAINS SUR CESSIONS DE TITRES DE PLACEMENT", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "ESCOMPTES OBTENUS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REVENUS DE TITRES DE PLACEMENT", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur instruments de tr\u00e9sorerie", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonis provenant du rachat par l'entreprise d'actions et d'obligations \u00e9mises par elle-m\u00eame", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur op\u00e9rations financi\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur rentes viag\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits exceptionnels divers", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "GAINS SUR RISQUES FINANCIERS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur titres de placement", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur risques financiers", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "autres charges provisionn\u00e9es financi\u00e8res", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE CHARGES PROVISIONN\u00c9ES FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REVENUS DE PARTICIPATIONS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits exceptionnels sur op\u00e9rations de gestion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Rentr\u00e9es sur cr\u00e9ances amorties", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "D\u00e9gr\u00e8vements d'imp\u00f4ts autres qu'imp\u00f4ts sur les b\u00e9n\u00e9fices", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "D\u00e9dits et p\u00e9nalit\u00e9s per\u00e7us sur achats et sur ventes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Lib\u00e9ralit\u00e9s re\u00e7ues", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Subventions d'\u00e9quilibre", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DE PR\u00caTS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "GAINS DE CHANGE", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisations incorporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Immobilisations corporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Immobilisations financi\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Autres \u00e9l\u00e9ments d'actif", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Produits des cessions d'\u00e9l\u00e9ments d'actif"
+         }
+        ], 
+        "name": "REVENUS FINANCIERS ET PRODUITS ASSIMIL\u00c9S", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits des cessions des immobilisations des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations corporelles"
+           }, 
+           {
+            "name": "Droits d'auteur et de reproduction", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations financi\u00e8res (droits de propri\u00e9t\u00e9)"
+           }, 
+           {
+            "name": "Redevances pour concessions, brevets, licences, marques, proc\u00e9d\u00e9s, logiciels ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Produits des cessions d'immobilisations"
+         }, 
+         {
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR EX\u00c9CUTION PARTIELLE DE CONTRATS PLURIEXERCICES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part de b\u00e9n\u00e9fice attribu\u00e9e (comptabilit\u00e9 des associ\u00e9s non-g\u00e9rants)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Quote-part de perte transf\u00e9r\u00e9e (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Quotes-parts de r\u00e9sultats sur op\u00e9rations faites en commun"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "P\u00e9nalit\u00e9s re\u00e7ues sur march\u00e9s"
+             }, 
+             {
+              "name": "D\u00e9dits re\u00e7us"
+             }
+            ], 
+            "name": "Jetons de pr\u00e9sence et autres r\u00e9mun\u00e9rations d'administrateurs", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Indemnit\u00e9s d\u2019assurances re\u00e7ues", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Lib\u00e9ralit\u00e9s"
+             }, 
+             {
+              "name": "Lots"
+             }, 
+             {
+              "name": "Dons"
+             }
+            ], 
+            "name": "Dons, lib\u00e9ralit\u00e9s et lots re\u00e7us"
+           }, 
+           {
+            "name": "Alte venituri din exploatare", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din vanzarea activelor si alte operatii de capital", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din subventii pentru investitii", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Rentr\u00e9es sur cr\u00e9ances sold\u00e9es"
+           }
+          ], 
+          "name": "PRODUITS DIVERS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'\u00e9quilibre re\u00e7ues des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Subventions d'\u00e9quilibre re\u00e7ues de l'exercice"
+           }
+          ], 
+          "name": "Subventions d'\u00e9quilibre"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur subventions d'investissement de l'exercice"
+           }, 
+           {
+            "name": "Reprises sur subventions d'investissement des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Reprise sur subventions d'investissements"
+         }, 
+         {
+          "name": "PRODUITS DES CESSIONS COURANTES D'IMMOBILISATIONS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Reprises sur plus-values en instance d'imposition"
+             }, 
+             {
+              "name": "Reprises sur amortissements d\u00e9rogatoires"
+             }, 
+             {
+              "name": "Reprises sur provisions pour acquisition et construction de logements"
+             }, 
+             {
+              "name": "Reprises sur provisions pour reconstitution de gisements"
+             }, 
+             {
+              "name": "Reprises sur provisions pour investissements"
+             }
+            ], 
+            "name": "sur cr\u00e9ances", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reprises sur provisions pour risques et charges durables"
+             }, 
+             {
+              "name": "Reprises sur provisions pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Reprises non courantes sur provisions pour risques et charges"
+           }, 
+           {
+            "name": "sur autres charges provisionn\u00e9es", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R,N,C sur provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+             }, 
+             {
+              "name": "R,N,C sur provisions pour d\u00e9pr\u00e9ciation de l'actif immobilis\u00e9"
+             }
+            ], 
+            "name": "Reprises non courantes sur provisions pour d\u00e9pr\u00e9ciation"
+           }, 
+           {
+            "name": "Transferts de charges non courantes"
+           }, 
+           {
+            "name": "sur stocks", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R,A,E des immobilisations en non valeur"
+             }, 
+             {
+              "name": "R,A,E des immobilisations incorporelles"
+             }, 
+             {
+              "name": "R,A,E des immobilisations corporelles"
+             }
+            ], 
+            "name": "sur risques \u00e0 court terme", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE CHARGES PROVISIONN\u00c9ES D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "B\u00e9n\u00e9fices attribu\u00e9s par transfert (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Quote-part transf\u00e9r\u00e9e de pertes (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR OP\u00c9RATIONS FAITES EN COMMUN", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "AUTRES PRODUITS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "IMMOBILISATIONS INCORPORELLES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "IMMOBILISATIONS CORPORELLES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "IMMOBILISATIONS FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "PRODUCTION IMMOBILIS\u00c9E", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "VARIATIONS DES STOCKS DE PRODUITS FINIS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gains de change des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Gains de change propres \u00e0\u00a0 l'exercice"
+           }
+          ], 
+          "name": "Gains de change"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des pr\u00eats"
+             }, 
+             {
+              "name": "Revenus des autres cr\u00e9ances financi\u00e8res"
+             }
+            ], 
+            "name": "Int\u00e9r\u00eats et produits assimil\u00e9s"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats et autres produits financiers des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Revenus des cr\u00e9ances rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "name": "Escomptes obtenus"
+           }, 
+           {
+            "name": "Produits nets sur cessions de titres et valeurs de placement"
+           }, 
+           {
+            "name": "Revenus des titres et valeurs de placement"
+           }
+          ], 
+          "name": "Int\u00e9r\u00eats et autres produits financiers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur dotations financi\u00e8res des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res"
+           }, 
+           {
+            "name": "Reprises sur provisions pour risques et charges financi\u00e8res"
+           }, 
+           {
+            "name": "Reprises sur amortissements des primes de remboursement des obligations"
+           }, 
+           {
+            "name": "Reprise sur provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Transfert - Pertes de change"
+             }, 
+             {
+              "name": "Transfert - Charges d'int\u00e9r\u00eats"
+             }, 
+             {
+              "name": "Transfert - Autres charges financi\u00e8res"
+             }
+            ], 
+            "name": "Transfert de charges financi\u00e8res"
+           }
+          ], 
+          "name": "Reprises financi\u00e8res, transferts de charges"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tudes en cours", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Prestations de services en cours", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES EN-COURS DE SERVICES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits r\u00e9siduels", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Travaux en cours", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits en cours", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE PRODUITS EN COURS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits des titres de participation et des autres titres immobilis\u00e9s des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Revenus des titres de participation"
+           }, 
+           {
+            "name": "Revenus des titres immobilis\u00e9s"
+           }
+          ], 
+          "name": "Produits des titres de participation et des autres titres immobilis\u00e9s"
+         }
+        ], 
+        "name": "VARIATIONS DES STOCKS DE BIENS ET DE SERVICES PRODUITS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Bonis sur reprises et cessions d'emballages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Redevances pour brevets, logiciels, marques et droits similaires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Commissions et courtages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Locations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Autres produits accessoires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ports, emballages perdus et autres frais factur\u00e9s", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Mise \u00e0 disposition de personnel", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "PRODUITS ACCESSOIRES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "TRAVAUX FACTUR\u00c9S", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS FINIS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE MARCHANDISES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits d'activit\u00e9s annexes (cessions d'approvisionnements...)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Commissions et courtages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits des services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Locations diverses", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Mise \u00e0 disposition de personnel factur\u00e9e ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ports et frais accessoires factur\u00e9s", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonifications obtenues des clients et primes sur ventes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonis sur reprises d'emballages consign\u00e9s", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Venituri din activitati diverse", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS INTERM\u00c9DIAIRES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Venituri din vanzarea marfurilor", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- sur ventes de produits interm\u00e9diaires ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur produits des activit\u00e9s annexes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur ventes de produits finis", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur ventes de marchandises", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur prestations de services", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur \u00e9tudes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur travaux", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reduceri comerciale acordate", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "SERVICES VENDUS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS R\u00c9SIDUELS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes de marchandises"
+         }
+        ], 
+        "name": "VENTES", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventes de biens et services produits des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventes de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Ventes de produits finis"
+             }
+            ], 
+            "name": "Ventes de biens produits \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ports et frais accessoires factur\u00e9s"
+             }, 
+             {
+              "name": "Autres ventes et produits accessoires"
+             }, 
+             {
+              "name": "Bonis sur reprises d'emballages consign\u00e9s"
+             }, 
+             {
+              "name": "Locations divers es re\u00e7ues"
+             }, 
+             {
+              "name": "Produits de services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel"
+             }, 
+             {
+              "name": "Commissions et courtages re\u00e7us"
+             }
+            ], 
+            "name": "Ventes de produits accessoires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations de services"
+             }, 
+             {
+              "name": "Travaux"
+             }, 
+             {
+              "name": "Etudes"
+             }
+            ], 
+            "name": "Ventes de services produits \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations de services"
+             }, 
+             {
+              "name": "Travaux"
+             }, 
+             {
+              "name": "Etudes"
+             }
+            ], 
+            "name": "Ventes de services produits au Maroc"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Rabais, remises et ristournes accord\u00e9s sur ventes de B et S produits des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes au Maroc des biens produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes au Maroc des services produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes \u00e0\u00a0 l'\u00e9tranger des biens produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes \u00e0\u00a0 l'\u00e9tranger des services produits"
+             }
+            ], 
+            "name": "Rabais, remises et ristournes accord\u00e9s par l'entreprise"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventes de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Ventes de produits finis"
+             }, 
+             {
+              "name": "Ventes de produits r\u00e9siduels"
+             }
+            ], 
+            "name": "Ventes de biens produits au Maroc"
+           }, 
+           {
+            "name": "Redevances pour brevets, marques, droits et valeurs similaires"
+           }
+          ], 
+          "name": "SUR PRODUITS \u00c0 L'IMPORTATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisation en non valeurs produite"
+           }, 
+           {
+            "name": "Immobilisations corporelles produites"
+           }, 
+           {
+            "name": "Immobilisations incorporelles produites"
+           }, 
+           {
+            "name": "Immobilisations produites des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Immobilisations produites par l'entreprise pour elle m\u00eame"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'exploitation re\u00e7ues des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Subventions d'exploitations re\u00e7ues de l'exercice"
+           }
+          ], 
+          "name": "Subventions d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Profits sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Vers\u00e9es par l'\u00c9tat et les collectivit\u00e9s publiques", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Vers\u00e9es par des tiers", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Vers\u00e9es par les organismes internationaux", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Transfert de pertes sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Autres produits d'exploitation des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "AUTRES SUBVENTIONS D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "T,C,E - Autres charges d'exploitation"
+             }, 
+             {
+              "name": "T,C,E - Achats consomm\u00e9s de mati\u00e8res et fournitures"
+             }, 
+             {
+              "name": "T,C,E-Autres charges externes"
+             }, 
+             {
+              "name": "T,C,E - Achats de marchandises"
+             }, 
+             {
+              "name": "T,C,E - Charges de personnel"
+             }, 
+             {
+              "name": "T,C,E - Imp\u00f4ts et taxes"
+             }
+            ], 
+            "name": "Transferts des charges d'exploitation"
+           }, 
+           {
+            "name": "Reprises sur provisions pour risques et charges"
+           }, 
+           {
+            "name": "Reprises sur amortissements des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Reprises sur amortissements de l'immobilisation en non valeurs"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des immobilisations"
+           }, 
+           {
+            "name": "Reprises sur amortissements des immobilisations corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reprises sur amortissements des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "Reprises sur provisions des exercices ant\u00e9rieurs"
+             }
+            ], 
+            "name": "Reprises sur amortissements et provisions des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Reprise d'exploitation, transferts de charges"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Produits en cours", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Travaux en cours", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Variation des en-cours de production de biens"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks d'\u00e9tudes en cours"
+             }, 
+             {
+              "name": "Variation des stocks de prestations en cours"
+             }, 
+             {
+              "name": "Prestations de services en cours", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Variation des stocks de travaux en cours"
+             }
+            ], 
+            "name": "Variation des stocks de services en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Produits interm\u00e9diaires ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produits finis", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produits r\u00e9siduels", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Variation des stocks de produits"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks de produits interm\u00e9diaires en cours"
+             }, 
+             {
+              "name": "Variation des stocks de biens produits en cours"
+             }, 
+             {
+              "name": "Variation des stocks de produits r\u00e9siduels en cours"
+             }
+            ], 
+            "name": "Variation des stocks de produits en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks de produits r\u00e9siduels"
+             }, 
+             {
+              "name": "Variation des stocks de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Variation des stocks de produits finis"
+             }
+            ], 
+            "name": "Variation des stocks de biens produits"
+           }
+          ], 
+          "name": "SUR PRODUITS DE P\u00c9R\u00c9QUATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventes de marchandises \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "name": "Ventes de marchandises des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Ventes de marchandises au Maroc"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes accord\u00e9s par l'entreprise"
+           }
+          ], 
+          "name": "SUR PRODUITS \u00c0 L'EXPORTATION", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "SUBVENTIONS D'EXPLOITATION", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Comptes de produits"
+     }
+    ], 
+    "name": "Comptes de gestion"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dits de tr\u00e9sorerie"
+           }
+          ], 
+          "name": "Cr\u00e9dits de tr\u00e9sorerie"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Banques (solde cr\u00e9diteur)"
+           }, 
+           {
+            "name": "Autres \u00e9tablissements financiers et assimil\u00e9s (soldes cr\u00e9diteurs)"
+           }
+          ], 
+          "name": "Banques (solde cr\u00e9diteur)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dits d'escompte"
+           }
+          ], 
+          "name": "Cr\u00e9dits d'escompte"
+         }
+        ], 
+        "name": "TRESORERIE - PASSIF"
+       }
+      ], 
+      "name": "COMPTES DE TRESORERIE"
+     }, 
+     {
+      "name": "COMPTES D'ACTIF IMMOBILISE"
+     }, 
+     {
+      "name": "COMPTES D'ACTIF CIRCULANT (HORS TRESORERIE)"
+     }, 
+     {
+      "name": "COMPTES DU PASSIF CIRCULANT (HORS TRESORERIE)"
+     }, 
+     {
+      "name": "COMPTES DE FINANCEMENT PERMANENT"
+     }
+    ], 
+    "name": "COMPTES DE BILAN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "PERTES SUR CR\u00c9ANCES H.A.O."
+       }, 
+       {
+        "name": "DONS ET LIB\u00c9RALIT\u00c9S ACCORD\u00c9S"
+       }, 
+       {
+        "name": "CHARGES PROVISIONN\u00c9ES H.A.O."
+       }, 
+       {
+        "name": "ABANDONS DE CR\u00c9ANCES CONSENTIS"
+       }, 
+       {
+        "name": "CHARGES H.A.O. CONSTAT\u00c9ES"
+       }
+      ], 
+      "name": "CHARGES HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMMOBILISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "name": "R\u00e9sultat d'exploitation"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Insuffisance brute d'exploitation (d\u00e9biteur)"
+         }, 
+         {
+          "name": "Exc\u00e9dent brut d'exploitation (cr\u00e9diteur)"
+         }
+        ], 
+        "name": "Exc\u00e9dent brut d'exploitation"
+       }, 
+       {
+        "name": "Valeur ajout\u00e9e"
+       }, 
+       {
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }
+      ], 
+      "name": "VALEURS COMPTABLES DES CESSIONS D'IMMOBILISATIONS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "REPRISES DE SUBVENTIONS D\u2019INVESTISSEMENT"
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS POUR D\u00c9PR\u00c9CIATION H.A.O."
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS R\u00c9GLEMENT\u00c9ES"
+       }, 
+       {
+        "name": "REPRISES D\u2019AMORTISSEMENTS"
+       }, 
+       {
+        "name": "AUTRES REPRISES H.A.O."
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS POUR RISQUES ET CHARGES H.A.O."
+       }
+      ], 
+      "name": "REPRISES HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DOTATIONS AUX PROVISIONS POUR RISQUES ET CHARGES H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX AMORTISSEMENTS H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX PROVISIONS R\u00c9GLEMENT\u00c9ES"
+       }, 
+       {
+        "name": "AUTRES DOTATIONS H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX PROVISIONS POUR D\u00c9PR\u00c9CIATION H.A.O."
+       }
+      ], 
+      "name": "DOTATIONS HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DONS ET LIB\u00c9RALIT\u00c9S OBTENUS"
+       }, 
+       {
+        "name": "ABANDONS DE CR\u00c9ANCES OBTENUS"
+       }, 
+       {
+        "name": "TRANSFERTS DE CHARGES H.A.O"
+       }, 
+       {
+        "name": "REPRISES DES CHARGES PROVISIONN\u00c9ES H.A.O."
+       }, 
+       {
+        "name": "PRODUITS H.A.O CONSTAT\u00c9S"
+       }
+      ], 
+      "name": "PRODUITS HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "RAPPEL D'IMP\u00d4TS SUR R\u00c9SULTATS ANT\u00c9RIEURS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "D\u00e9gr\u00e8vements"
+         }, 
+         {
+          "name": "Annulations pour pertes r\u00e9troactives"
+         }
+        ], 
+        "name": "D\u00c9GR\u00c8VEMENTS ET ANNULATIONS D\u2019IMP\u00d4TS SUR R\u00c9SULTATS ANT\u00c9RIEURS"
+       }, 
+       {
+        "name": "IMP\u00d4T MINIMUM FORFAITAIRE (I.M.F.)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activit\u00e9s exerc\u00e9es dans l'\u00c9tat"
+         }, 
+         {
+          "name": "Activit\u00e9s exerc\u00e9es hors R\u00e9gion"
+         }, 
+         {
+          "name": "Activit\u00e9s exerc\u00e9es dans les autres \u00c9tats de la R\u00e9gion"
+         }
+        ], 
+        "name": "IMP\u00d4TS SUR LES B\u00c9N\u00c9FICES DE L'EXERCICE"
+       }
+      ], 
+      "name": "IMP\u00d4TS SUR LE R\u00c9SULTAT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "COLLECTIVIT\u00c9S PUBLIQUES"
+       }, 
+       {
+        "name": "AUTRES"
+       }, 
+       {
+        "name": "\u00c9TAT"
+       }, 
+       {
+        "name": "GROUPE"
+       }
+      ], 
+      "name": "SUBVENTIONS D'\u00c9QUILIBRE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PARTICIPATION L\u00c9GALE AUX B\u00c9N\u00c9FICES"
+       }, 
+       {
+        "name": "AUTRES PARTICIPATIONS"
+       }, 
+       {
+        "name": "PARTICIPATION CONTRACTUELLE AUX B\u00c9N\u00c9FICES"
+       }
+      ], 
+      "name": "PARTICIPATION DES TRAVAILLEURS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMMOBILISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }
+      ], 
+      "name": "PRODUITS DES CESSIONS D'IMMOBILISATIONS"
+     }
+    ], 
+    "name": "Comptes sp\u00e9ciaux"
+   }
+  ], 
+  "name": "Plan Comptable SYSCOA"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/nl_l10nnl_chart_template.json b/setup/doctype/company/charts/nl_l10nnl_chart_template.json
new file mode 100644
index 0000000..77fb178
--- /dev/null
+++ b/setup/doctype/company/charts/nl_l10nnl_chart_template.json
@@ -0,0 +1,4768 @@
+{
+ "name": "Nederlands Grootboekschema", 
+ "root": {
+  "children": [
+   {
+    "name": "INDIRECTE KOSTEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Kantoorbenodigdheden"
+     }, 
+     {
+      "name": "Emballage"
+     }, 
+     {
+      "name": "Hulpstoffen 1"
+     }, 
+     {
+      "name": "Grondstoffen 2"
+     }, 
+     {
+      "name": "Goederen onderweg"
+     }, 
+     {
+      "name": "Goederen 1"
+     }, 
+     {
+      "name": "Hulpstoffen 2"
+     }, 
+     {
+      "name": "Gereed product 1"
+     }, 
+     {
+      "name": "Gereed product 2"
+     }, 
+     {
+      "name": "Onderhanden werk"
+     }, 
+     {
+      "name": "Zegels"
+     }, 
+     {
+      "name": "Goederen 2"
+     }, 
+     {
+      "name": "Goederen in consignatie"
+     }, 
+     {
+      "name": "Verpakkingsmateriaal"
+     }, 
+     {
+      "name": "Grondstoffen 1"
+     }, 
+     {
+      "name": "Halffabrikaten 2"
+     }, 
+     {
+      "name": "Halffabrikaten 1"
+     }
+    ], 
+    "name": "VOORRAAD GRONDSTOFFEN, HULPMATERIALEN EN HANDELSGOEDEREN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Btw te vorderen overig", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie WIR", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Af te dragen Btw-verlegd", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw oude jaren", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw te vorderen hoog", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen laag", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige te betalen posten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vooruit ontvangen bedr.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw-afdracht", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Energiekosten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Accountantskosten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Telefoon/telefax", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Termijnen onderh. werk", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Rekening-courant inkoopvereniging", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Loonheffing", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Afdracht loonheffing", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vennootschapsbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw te vorderen laag", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen hoog", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Te vorderen Btw-verlegd", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen overig", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Investeringsaftrek", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Dividendbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Sociale lasten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pensioenpremies", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiegeld", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiedagen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiezegels", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Rente", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Dividend", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tanti\u00e8mes", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "KORTLOPENDE SCHULDEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Vooruitbetaalde kosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Te ontvangen ziekengeld", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Overige vorderingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Dubieuze debiteuren", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rekening-courant directie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Voorziening dubieuze debiteuren", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Voorschotten personeel", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "VORDERINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "BIZNER bank"
+       }, 
+       {
+        "name": "Kleine kas"
+       }, 
+       {
+        "name": "ABN-AMRO bank"
+       }, 
+       {
+        "name": "Bankbetaalkaarten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Effecten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kas  valuta"
+       }, 
+       {
+        "name": "Kruisposten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kas"
+       }, 
+       {
+        "name": "RABO bank"
+       }, 
+       {
+        "name": "Girobetaalkaarten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Postbank"
+       }
+      ], 
+      "name": "LIQUIDE MIDDELEN"
+     }
+    ], 
+    "name": "FINANCIELE REKENINGEN, KORTLOPENDE VORDERINGEN EN SCHULDEN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Afschrijving Vrachtauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanhangwagens", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Personenauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Heftrucks", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanhangwagens", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Vrachtauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Personenauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Rijwielen en bromfietsen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Rijwielen en bromfietsen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Heftrucks", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "VERVOERMIDDELEN"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Aanschafwaarde Gereedschappen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Fabrieksinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Bedrijfsinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Magazijninventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Gereedschappen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantine-inventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Fabrieksinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Magazijninventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantoorinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantoormachines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantoormachines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantine-inventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantoorinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Bedrijfsinventaris", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INVENTARIS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Afschrijving Machines 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 1", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "MACHINES"
+       }
+      ], 
+      "name": "MACHINES EN INVENTARIS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Financieringskosten huurkoop", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Waarborgsommen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Vorderingen op deelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Financieringskosten", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "LANGLOPENDE VORDERINGEN"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Meerderheidsdeelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Minderheidsdeelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aandeel inkoopcombinatie", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "FINANCIELE VASTE ACTIVA"
+       }
+      ], 
+      "name": "FINANCIELE VASTE ACTIVA EN LANGLOPENDE VORDERINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Hypotheek o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Lease-verplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Huurkoopverplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 4", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 3", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "AFLOSSINGEN"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rekening-courant directie", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 3", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Lease-verplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Huurkoopverplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 4", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 3", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 4", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "LANGLOPENDE SCHULDEN"
+       }
+      ], 
+      "name": "LANGLOPENDE SCHULDEN EN AFLOSSINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Afschrijving Ontwikkelingskosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Octrooien", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Auteursrechten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Vergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Licenties", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Tonnagevergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Drankvergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Vergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Auteursrechten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Drankvergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Tonnagevergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Octrooien", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Ontwikkelingskosten", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMATERIELE ACTIVA"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Aanschafwaarde Gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Verbouwingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Landerijen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Grondverbetering", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Pachtersinvesteringen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Bedrijfsgebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Woon-winkelhuis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Woon-winkelhuis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Winkels", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Parkeerplaats", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Grondverbetering", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Ondergrond gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Bedrijfsgebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Winkels", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Pachtersinvesteringen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Parkeerplaats", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Verbouwingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanloopkosten", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "ONROERENDE GOEDEREN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige persoonlijke verplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Giften", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Buitengewone lasten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Inkomstenbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vermogensbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Wettelijke reserves", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige reserves", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Aandelenkapitaal", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige priv\u00e9-uitgaven", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Huishoudgeld", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie lijfrenteverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie volksverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Priv\u00e9-opnamen/stortingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Kapitaal", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "WAO en ziekengeldverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Priv\u00e9-gebruik", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie volksverzekeringen", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "EIGEN VERMOGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pens.voorz. eigen beheer", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Stamrechtverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Backservice pensioenverpl.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pensioenverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Egalisatierekening WIR", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vervangingsreserve", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Garantieverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Egalisatieres. grootonderh.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Assurantie eigen risico", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Latente belastingverpl.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Voorziening deelnemingen", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "VOORZIENINGEN"
+     }
+    ], 
+    "name": "VASTE ACTIVA, EIGEN VERMOGEN, LANGLOPEND VREEMD VERMOGEN EN VOORZIENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Opbrengsten deelnemingen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verlies verkoop deelnem.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Vpb bijzonder resultaat", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Winst", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Memoriaal"
+     }, 
+     {
+      "name": "Winst bij verkoop deelnem.", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Reorganisatiekosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Vpb normaal resultaat", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Voorz. Verlies deelnem.", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "OVERIGE RESULTATEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Income"
+     }
+    ], 
+    "name": "Income"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Tanti\u00e8mes de l'exercice"
+       }, 
+       {
+        "name": "Autres allocataires"
+       }, 
+       {
+        "name": "Dividendes et tanti\u00e8mes d'exercices ant\u00e9rieurs"
+       }, 
+       {
+        "name": "Dividendes de l'exercice"
+       }
+      ], 
+      "name": "DETTES DECOULANT DE L'AFFECTATION DES RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }, 
+       {
+        "name": "Compensation clients"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres entreprises avec lesquelles il existe un lien de participation"
+         }, 
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants de l'entreprise"
+         }
+        ], 
+        "name": "Effets \u00e0 recevoir sur entreprises apparent\u00e9es et administrateurs et g\u00e9rants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants d'entreprise"
+         }, 
+         {
+          "name": "Autres entreprises avec lesquelles il existe un lien de participation"
+         }
+        ], 
+        "name": "Clients, cr\u00e9ances courantes, entreprises apparent\u00e9es, administrateurs et g\u00e9rants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets \u00e0 l'escompte"
+         }, 
+         {
+          "name": "Effets \u00e0 l'encaissement"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir"
+         }
+        ], 
+        "name": "Effets \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ances r\u00e9sultant de livraisons de biens"
+         }, 
+         {
+          "name": "Rabais, remises, ristournes \u00e0 accorder et autres notes de cr\u00e9dit \u00e0 \u00e9tablir"
+         }
+        ], 
+        "name": "Clients"
+       }, 
+       {
+        "name": "Cr\u00e9ances douteuses"
+       }, 
+       {
+        "name": "Acomptes vers\u00e9s"
+       }, 
+       {
+        "name": "Clients : retenues sur garanties"
+       }, 
+       {
+        "name": "Produits \u00e0 recevoir"
+       }
+      ], 
+      "name": "CREANCES COMMERCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acomptes re\u00e7us d'autres tiers \u00e0 moins d'un an"
+       }, 
+       {
+        "name": "Participation du personnel \u00e0 payer"
+       }, 
+       {
+        "name": "Actionnaires - capital \u00e0 rembourser"
+       }, 
+       {
+        "name": "Obligations et coupons \u00e9chus"
+       }, 
+       {
+        "name": "Emballages et mat\u00e9riel consign\u00e9s"
+       }, 
+       {
+        "name": "Autres dettes diverses"
+       }, 
+       {
+        "name": "Cautionnements re\u00e7us en num\u00e9raires"
+       }
+      ], 
+      "name": "DETTES DIVERSES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Charges \u00e0 reporter"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres produits d'exploitation"
+           }, 
+           {
+            "name": "Commissions \u00e0 obtenir"
+           }, 
+           {
+            "name": "Ristournes, rabais \u00e0 obtenir"
+           }
+          ], 
+          "name": "Produits d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus et non \u00e9chus sur pr\u00eats et d\u00e9bits"
+           }, 
+           {
+            "name": "Autres produits financiers"
+           }
+          ], 
+          "name": "Produits financiers"
+         }
+        ], 
+        "name": "Produits acquis"
+       }, 
+       {
+        "name": "Charges \u00e0 imputer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Produits d'exploitation \u00e0 reporter"
+         }, 
+         {
+          "name": "Produits financiers \u00e0 reporter"
+         }
+        ], 
+        "name": "Produits \u00e0 reporter"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compte de r\u00e9partition p\u00e9riodique des charges"
+         }, 
+         {
+          "name": "Compte d'attente"
+         }, 
+         {
+          "name": "Transferts d'exercice"
+         }
+        ], 
+        "name": "Comptes d'attente"
+       }
+      ], 
+      "name": "COMPTES DE REGULARISATION ET COMPTES D'ATTENTE"
+     }, 
+     {
+      "name": "ACOMPTES RECUS SUR COMMANDES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acomptes re\u00e7us"
+       }, 
+       {
+        "name": "Factures \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournisseurs importation"
+           }, 
+           {
+            "name": "Fournisseurs CEE"
+           }, 
+           {
+            "name": "Fournisseurs belges"
+           }
+          ], 
+          "name": "Fournisseurs ordinaires"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Entreprises li\u00e9es"
+           }, 
+           {
+            "name": "Entreprises avec lesquelles il existe un lien de participation"
+           }
+          ], 
+          "name": "Entreprises apparent\u00e9es"
+         }
+        ], 
+        "name": "Effets \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes envers les coparticipants"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs CEE"
+           }, 
+           {
+            "name": "Fournisseurs importation"
+           }, 
+           {
+            "name": "Fournisseurs belges"
+           }
+          ], 
+          "name": "Fournisseurs ordinaires"
+         }, 
+         {
+          "name": "Fournisseurs - retenues de garanties"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Entreprises avec lesquelles il existe un lien de participation"
+           }
+          ], 
+          "name": "Entreprises apparent\u00e9es"
+         }
+        ], 
+        "name": "Fournisseurs"
+       }, 
+       {
+        "name": "Compensations fournisseurs"
+       }
+      ], 
+      "name": "DETTES COMMERCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "1er trimestre"
+         }, 
+         {
+          "name": "Arri\u00e9r\u00e9s"
+         }, 
+         {
+          "name": "3\u00e8me trimestre"
+         }, 
+         {
+          "name": "2\u00e8me trimestre"
+         }, 
+         {
+          "name": "4\u00e8me trimestre"
+         }
+        ], 
+        "name": "Office National de la S\u00e9curit\u00e9 Sociale"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Employ\u00e9s"
+         }, 
+         {
+          "name": "Ouvriers"
+         }, 
+         {
+          "name": "Administrateurs, g\u00e9rants et commissaires"
+         }, 
+         {
+          "name": "Direction"
+         }
+        ], 
+        "name": "R\u00e9mun\u00e9rations"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ouvriers"
+         }, 
+         {
+          "name": "Employ\u00e9s"
+         }, 
+         {
+          "name": "Direction"
+         }
+        ], 
+        "name": "P\u00e9cules de vacances"
+       }, 
+       {
+        "children": [
+         {
+          "name": "\u00e0 4507 Autres imp\u00f4ts en Belgique"
+         }, 
+         {
+          "name": "\u00e0 4504 Imp\u00f4ts sur le r\u00e9sultat"
+         }, 
+         {
+          "name": "Imp\u00f4ts \u00e0 l'\u00e9tranger"
+         }
+        ], 
+        "name": "Dettes fiscales estim\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "T.V.A. \u00e0 payer - Import"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer - Cocontractant"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer - Intra-communautaire"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer"
+         }, 
+         {
+          "name": "Compte courant administration T.V.A."
+         }, 
+         {
+          "name": "Taxe d'\u00e9galisation due"
+         }
+        ], 
+        "name": "T.V.A. \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres imp\u00f4ts sur le r\u00e9sultat"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres imp\u00f4ts et taxes \u00e0 payer"
+           }, 
+           {
+            "name": "Imp\u00f4ts provinciaux \u00e0 payer"
+           }, 
+           {
+            "name": "Imp\u00f4ts communaux \u00e0 payer"
+           }, 
+           {
+            "name": "Pr\u00e9compte immobilier"
+           }
+          ], 
+          "name": "Autres imp\u00f4ts et taxes en Belgique"
+         }, 
+         {
+          "name": "Imp\u00f4ts et taxes \u00e0 l'\u00e9tranger"
+         }
+        ], 
+        "name": "Imp\u00f4ts et taxes \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres pr\u00e9comptes retenus"
+         }, 
+         {
+          "name": "Pr\u00e9compte professionnel retenu sur r\u00e9mun\u00e9rations"
+         }, 
+         {
+          "name": "Pr\u00e9compte professionnel retenu sur tanti\u00e8mes"
+         }, 
+         {
+          "name": "Pr\u00e9compte mobilier retenu sur dividendes attribu\u00e9s"
+         }, 
+         {
+          "name": "Pr\u00e9compte mobilier retenu sur int\u00e9r\u00eats pay\u00e9s"
+         }
+        ], 
+        "name": "Pr\u00e9comptes retenus"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes et provisions sociales diverses"
+         }, 
+         {
+          "name": "Caisse d'assurances sociales pour travailleurs ind\u00e9pendants"
+         }, 
+         {
+          "name": "Oppositions sur r\u00e9mun\u00e9rations"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurance groupe "
+           }, 
+           {
+            "name": "Assurances individuelles"
+           }, 
+           {
+            "name": "Assurance loi"
+           }, 
+           {
+            "name": "Assurance salaire garanti "
+           }
+          ], 
+          "name": "Assurances relatives au personnel"
+         }, 
+         {
+          "name": "Provision pour gratifications de fin d'ann\u00e9e"
+         }, 
+         {
+          "name": "D\u00e9parts de personnel"
+         }
+        ], 
+        "name": "Autres dettes sociales"
+       }
+      ], 
+      "name": "DETTES FISCALES, SALARIALES ET SOCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Non convertibles"
+         }, 
+         {
+          "name": "Convertibles"
+         }
+        ], 
+        "name": "Emprunts obligataires non subordonn\u00e9s"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Non convertibles"
+         }, 
+         {
+          "name": "Convertibles"
+         }
+        ], 
+        "name": "Emprunts subordonn\u00e9s"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9dits d'acceptation"
+         }, 
+         {
+          "name": "Promesses"
+         }, 
+         {
+          "name": "Dettes en compte"
+         }
+        ], 
+        "name": "Etablissements de cr\u00e9dit"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Financement de biens immobiliers"
+         }, 
+         {
+          "name": "Financement de biens mobiliers"
+         }
+        ], 
+        "name": "Dettes de location-financement et assimil\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets \u00e0 payer"
+         }, 
+         {
+          "name": "Fournisseurs"
+         }
+        ], 
+        "name": "Dettes commerciales"
+       }, 
+       {
+        "name": "Autres emprunts"
+       }, 
+       {
+        "name": "Cautionnements re\u00e7us en num\u00e9raires"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Entreprises avec lesquelles il existe un lien de participation"
+         }, 
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs, g\u00e9rants, associ\u00e9s"
+         }, 
+         {
+          "name": "Autres dettes"
+         }
+        ], 
+        "name": "Dettes diverses"
+       }
+      ], 
+      "name": "DETTES A PLUS D'UN AN ECHEANT DANS L'ANNEE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Etablissements de cr\u00e9dit. Cr\u00e9dits d'acceptation"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Promesses"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Dettes en compte courant"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Emprunts en compte \u00e0 terme fixe"
+       }, 
+       {
+        "name": "Autres emprunts"
+       }
+      ], 
+      "name": "DETTES FINANCIERES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cautionnements vers\u00e9s en num\u00e9raires"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Actionnaires d\u00e9faillants"
+         }, 
+         {
+          "name": "Appels de fonds"
+         }
+        ], 
+        "name": "Capital appel\u00e9, non vers\u00e9"
+       }, 
+       {
+        "children": [
+         {
+          "name": "T.V.A D\u00e9ductible"
+         }, 
+         {
+          "name": "Compte courant administration T.V.A."
+         }, 
+         {
+          "name": "Taxe d'\u00e9galisation due"
+         }
+        ], 
+        "name": "T.V.A. \u00e0 r\u00e9cup\u00e9rer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imp\u00f4ts \u00e9trangers"
+         }, 
+         {
+          "name": "\u00e0 4127 Autres imp\u00f4ts belges"
+         }, 
+         {
+          "name": "\u00e0 4124 Imp\u00f4ts belges sur le r\u00e9sultat"
+         }
+        ], 
+        "name": "Imp\u00f4ts et versements fiscaux \u00e0 r\u00e9cup\u00e9rer"
+       }, 
+       {
+        "name": "Produits \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rabais, ristournes, remises \u00e0 obtenir et autres avoirs non encore re\u00e7us"
+         }, 
+         {
+          "name": "Compte courant des administrateurs et g\u00e9rants"
+         }, 
+         {
+          "name": "Compte courant des associ\u00e9s en S.P.R.L."
+         }, 
+         {
+          "name": "Avances et pr\u00eats au personnel"
+         }, 
+         {
+          "name": "Associ\u00e9s"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres cr\u00e9ances"
+           }, 
+           {
+            "name": "Subsides \u00e0 recevoir"
+           }
+          ], 
+          "name": "Etat et \u00e9tablissements publics"
+         }, 
+         {
+          "name": "Emballages et mat\u00e9riel \u00e0 rendre"
+         }, 
+         {
+          "name": "Cr\u00e9ances sur soci\u00e9t\u00e9s apparent\u00e9es"
+         }
+        ], 
+        "name": "Cr\u00e9ances diverses"
+       }, 
+       {
+        "name": "Cr\u00e9ances douteuses"
+       }
+      ], 
+      "name": "AUTRES CREANCES"
+     }
+    ], 
+    "name": "CLASSE 4. CREANCES ET DETTES A UN AN AU PLUS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Perte \u00e0 reporter", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Pr\u00e9l\u00e8vement sur les r\u00e9serves", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Pr\u00e9l\u00e8vement sur le capital et les primes d'\u00e9mission", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "B\u00e9n\u00e9fice report\u00e9 de l'exercice pr\u00e9c\u00e9dent", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Intervention d'associ\u00e9s", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "AFFECTATION AUX RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9gularisations d'imp\u00f4ts estim\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "R\u00e9gularisations d'imp\u00f4ts dus ou vers\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Reprises de provisions fiscales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat"
+       }
+      ], 
+      "name": "REGULARISATIONS D'IMPOTS ET REPRISES DE PROVISIONS FISCALES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reprises de provisions pour risques et charges exceptionnelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immobilisations financi\u00e8res", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Plus-values sur r\u00e9alisation d'actifs immobilis\u00e9s"
+       }, 
+       {
+        "name": "Reprises de r\u00e9ductions de valeur sur immobilisations financi\u00e8res", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Autres produits exceptionnels", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reprises d'amortissements et de r\u00e9ductions de valeur"
+       }
+      ], 
+      "name": "PRODUITS EXCEPTIONNELS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Escomptes obtenus", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits des autres cr\u00e9ances", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ecarts de conversion des devises", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Diff\u00e9rences de change", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subsides en capital et en int\u00e9r\u00eats", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations d'actifs circulants", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits des actifs circulants", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "PRODUITS FINANCIERS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Locations diverses \u00e0 caract\u00e8re professionnel", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bonis sur reprises d'emballages consign\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Bonis sur travaux en associations momentan\u00e9es", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Produits divers"
+       }, 
+       {
+        "name": "Commissions et courtages", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Redevances pour brevets et licences", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Prestations de services", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Revenus des immeubles affect\u00e9s aux activit\u00e9s non professionnelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subsides d'exploitation et montants compensatoires", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations courantes d'immobilisations corporelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations de cr\u00e9ances commerciales", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits de services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "AUTRES PRODUITS D'EXPLOITATION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "En immobilisations corporelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En immobilisations en cours", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En frais d'\u00e9tablissement", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En immobilisations incorporelles", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "PRODUCTION IMMOBILISEE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Des produits finis", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Des en cours de fabrication", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Sur travaux en cours des associations momentan\u00e9es", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sur commandes en cours d'ex\u00e9cution", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "B\u00e9n\u00e9fices port\u00e9s en compte sur commandes en cours"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Co\u00fbt des commandes en cours d'ex\u00e9cution", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Co\u00fbt des travaux en cours des associations momentan\u00e9es", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Commandes en cours - Co\u00fbt de revient"
+         }
+        ], 
+        "name": "Des commandes en cours d'ex\u00e9cution"
+       }, 
+       {
+        "name": "Des immeubles construits destin\u00e9s \u00e0 la vente", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "VARIATION DES STOCKS ET DES COMMANDES EN COURS D'EXECUTION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ventes d'emballages r\u00e9cup\u00e9rables", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes en Belgique", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de marchandises"
+       }, 
+       {
+        "name": "P\u00e9nalit\u00e9s et d\u00e9dits obtenus par l'entreprise", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de produits finis"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes en Belgique", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de d\u00e9chets et rebuts"
+       }, 
+       {
+        "name": "Facturations des travaux en cours", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Prestations de services dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Prestations de services en vue de l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Prestations de services en Belgique", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Prestations de services"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur prestations de services", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de produits finis", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de marchandises", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de d\u00e9chets et rebuts", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Mali sur travaux factur\u00e9s aux associations momentan\u00e9es", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Remises, ristournes et rabais accord\u00e9s"
+       }
+      ], 
+      "name": "CHIFFRE D'AFFAIRES"
+     }
+    ], 
+    "name": "CLASSE 7. - PRODUITS"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Inkoopbonussen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toevoeging voorz. incour. handelsgoed.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU hoog", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen BTW verlegd", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU laag tarief", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU laag", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Invoerkosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoopkosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU hoog tarief", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Betalingskort. crediteuren", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Garantiekosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen hoog", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toevoeging garantieverpl.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Tegenrekening inkoop", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Onttrekking uitgev.garantie", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Voorz. Incourourant grondst.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kostprijs omzet grondstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toev. Voorz. incour. grondst.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kosten inkoopvereniging", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kostprijs omzet handelsgoederen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Voorz.incour. handelsgoed.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoopprovisie", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkomende vrachten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Hulpmaterialen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Uitbesteed werk", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Priv\u00e9-gebruik goederen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen laag", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen nul", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "VOORRAAD GEREED PRODUCT EN ONDERHANDEN WERK"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Brandstoffen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige vervoerskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud personenauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud vrachtauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Priv\u00e9-gebruik auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Wegenbelasting", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "VERVOERSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige rentebaten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente hypotheek", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente leasecontracten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige rentelasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente lening o/g", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente lening u/g", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente bankkrediet", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente huurkoopcontracten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "FINANCIERINGSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Vrachtauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Tonnagevergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Drankvergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Auteursrechten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Octrooien", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Goodwill", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoorinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoormachines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gebouwen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfsgebouwen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Woon-winkelhuis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Winkels", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschappen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantine-inventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfsinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Magazijninventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Heftrucks", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aanhangwagens", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rijwielen en bromfietsen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Licenties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aanloopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontwikkelingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Personenauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pachtersinvestering", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aankoopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Parkeerplaats", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Grondverbetering", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Voorraadverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Fabrieksinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Verbouwingen", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AFSCHRIJVINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Betaalde schadevergoed.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Nadelige koersverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kosten omzetbelasting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Boekverlies vaste activa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "K.O. regeling OB", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kasverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Boekwinst van vaste activa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kosten loonbelasting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Naheffing bedrijfsver.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige baten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontvangen schadevergoed.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Voordelige koersverschil.", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "OVERIGE BATEN EN LASTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reis en verblijfkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Representatiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kascorrecties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Exportkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Beurskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Websitekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Provisie", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Etalagekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Veilingkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Reclame", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Advertenties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Verpakkingsmateriaal", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige verkoopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Afschrijving dubieuze deb.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Relatiegeschenken", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Uitgaande vrachten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "VERKOOPKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Juridische kosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bankkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige algemene kosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Advieskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toev. Ass. eigen risico", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Accountantskosten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "ALGEMENE KOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Uitkering ziekengeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige uitkeringen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Loonwerk", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Thuiswerkers", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Managementvergoedingen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gratificaties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Wervingskosten personeel", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Opleidingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfskleding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Geschenken personeel", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toevoeging pensioenverpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sociale lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Tanti\u00e8mes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Provisie", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschapsgeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Reiskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Congressen, seminars en symposia", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Oprenting stamrechtverpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toev. Backservice pens.verpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Inhouding pensioenpremies", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pensioenpremies", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Inhouding sociale lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Belastingvrije uitkeringen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfskleding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantinekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rijwielvergoeding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Autokostenvergoeding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vergoeding studiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bijzondere beloningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Uitzendkrachten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige kostenverg.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige personeelskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vakantiebonnen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vakantiegeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Lonen en salarissen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overhevelingstoeslag", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "PERSONEELSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Energiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Schoonmaakkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pacht", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontvangen huren", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huurwaarde woongedeelte", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Groot onderhoud onr. Goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige huisvestingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assurantie onroerend goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toevoeging egalisatieres. Groot onderhoud", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Belastingen onr. Goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud onroerend goed", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "HUISVESTINGSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige bedrijfskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ophalen/vervoer afval", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur inventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Energie (krachtstroom)", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing invent.operational", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Hulpmaterialen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing mach. operational", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschappen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud inventaris", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "BEDRIJFSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige kantoorkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur kantoorapparatuur", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoorbenodigdh./drukw.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Contributies/abonnementen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Administratiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Porti", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Internetaansluiting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Telefoon/telefax", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud kantoorinvent.", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "KANTOORKOSTEN"
+     }
+    ], 
+    "name": "KOSTENREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Account Payable"
+     }, 
+     {
+      "name": "Uninvoiced Receipts"
+     }, 
+     {
+      "name": "Loans"
+     }, 
+     {
+      "name": "Withholding Tax"
+     }, 
+     {
+      "name": "Accrued Expenses"
+     }, 
+     {
+      "name": "Output VAT"
+     }
+    ], 
+    "name": "Liabilities"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Salary"
+     }, 
+     {
+      "name": "Rent"
+     }, 
+     {
+      "name": "Cost of goods sold"
+     }, 
+     {
+      "name": "Office Expenses"
+     }, 
+     {
+      "name": "Income tax expenses"
+     }, 
+     {
+      "name": "Interest expenses"
+     }
+    ], 
+    "name": "Expenses"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Inkopen binnen EU laag"
+     }, 
+     {
+      "name": "Tussenrek. autom. loonbetalingen"
+     }, 
+     {
+      "name": "Inkopen binnen EU hoog"
+     }, 
+     {
+      "name": "Inkopen binnen EU overig"
+     }, 
+     {
+      "name": "Betaalwijze contant"
+     }, 
+     {
+      "name": "Tussenrek. autom. betalingen"
+     }, 
+     {
+      "name": "Inkopen buiten EU overig"
+     }, 
+     {
+      "name": "Inkopen Nederland hoog"
+     }, 
+     {
+      "name": "Betaalwijze chipknip"
+     }, 
+     {
+      "name": "Tussenrekening chipknip"
+     }, 
+     {
+      "name": "Vraagposten"
+     }, 
+     {
+      "name": "Tussenrekening correcties"
+     }, 
+     {
+      "name": "Netto lonen"
+     }, 
+     {
+      "name": "Inkopen buiten EU hoog"
+     }, 
+     {
+      "name": "Inkopen buiten EU laag"
+     }, 
+     {
+      "name": "Tussenrek. cadeaubonbetalingen"
+     }, 
+     {
+      "name": "Betaalwijze cadeaubonnen"
+     }, 
+     {
+      "name": "Inkopen Nederland overig"
+     }, 
+     {
+      "name": "Inkopen Nederland laag"
+     }, 
+     {
+      "name": "Inkopen Nederland verlegd"
+     }, 
+     {
+      "name": "Betaalwijze pin"
+     }, 
+     {
+      "name": "Tussenrekening pin"
+     }, 
+     {
+      "name": "Kassa 2"
+     }, 
+     {
+      "name": "Kassa 1"
+     }, 
+     {
+      "name": "Inkopen Nederland onbelast"
+     }, 
+     {
+      "name": "Tussenrekening balans"
+     }, 
+     {
+      "name": "Tegenrekening Inkopen"
+     }
+    ], 
+    "name": "TUSSENREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Capital Stock"
+     }, 
+     {
+      "name": "Dividends"
+     }, 
+     {
+      "name": "Income Summary"
+     }, 
+     {
+      "name": "Retained Earnings"
+     }
+    ], 
+    "name": "Equity"
+   }, 
+   {
+    "children": [
+     {
+      "name": "TRANSFERTS AUX RESERVES IMMUNISEES", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Autres allocataires", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9mun\u00e9ration du capital", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Administrateurs ou g\u00e9rants", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Dotation aux autres r\u00e9serves", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "B\u00e9n\u00e9fice \u00e0 reporter", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Perte report\u00e9e de l'exercice pr\u00e9c\u00e9dent", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Dotation \u00e0 la r\u00e9serve l\u00e9gale", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AFFECTATION DES RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Taxe sur le personnel occup\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxe sur la force motrice", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Imp\u00f4ts provinciaux et communaux"
+         }, 
+         {
+          "name": "Taxes diverses", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Taxes sur autos et camions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Taxes et imp\u00f4ts directs"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Timbres fiscaux pris en charge par la firme", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Droits d'enregistrement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T.V.A. non d\u00e9ductible", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Taxes et imp\u00f4ts indirects"
+         }
+        ], 
+        "name": "Charges fiscales d'exploitation"
+       }, 
+       {
+        "name": "\u00e0 648 Charges d'exploitations diverses", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Charges d'exploitation port\u00e9es \u00e0 l'actif au titre de restructuration", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisations courantes d'immobilisations corporelles", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisations de cr\u00e9ances commerciales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AUTRES CHARGES D'EXPLOITATION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Charges exceptionnelles transf\u00e9r\u00e9es \u00e0 l'actif en frais de restructuration", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Autres charges exceptionnelles", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Diff\u00e9rence de charge", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "P\u00e9nalit\u00e9s et amendes diverses", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immeubles acquis ou construits en vue de la revente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations financi\u00e8res", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations d\u00e9tenues en location-financement et droits similaires", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Moins-values sur r\u00e9alisation d'actifs immobilis\u00e9s"
+       }, 
+       {
+        "name": "Provisions pour risques et charges exceptionnels", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur sur immobilisations financi\u00e8res", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur frais d'\u00e9tablissement", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortissements et r\u00e9ductions de valeur exceptionnels"
+       }
+      ], 
+      "name": "CHARGES EXCEPTIONNELLES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Exc\u00e9dent de versements d'imp\u00f4ts et pr\u00e9comptes port\u00e9 \u00e0 l'actif", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Imp\u00f4ts et pr\u00e9comptes dus ou vers\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Charges fiscales estim\u00e9es", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat de l'exercice"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisions fiscales constitu\u00e9es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ments d'imp\u00f4ts dus ou vers\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ments d'imp\u00f4ts estim\u00e9s", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat d'exercices ant\u00e9rieurs"
+       }, 
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat de l'exercice", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat d'exercices ant\u00e9rieurs", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "IMPOTS SUR LE RESULTAT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Achats de fournitures", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats de marchandises", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "De fournitures", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "De mati\u00e8res premi\u00e8res", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "D'immeubles destin\u00e9s \u00e0 la vente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "De marchandises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variations de stocks"
+       }, 
+       {
+        "name": "Remises, ristournes et rabais obtenus sur achats", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sous-traitances g\u00e9n\u00e9rales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats de services, travaux et \u00e9tudes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats d'immeubles destin\u00e9s \u00e0 la revente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "APPROVISIONNEMENTS ET MARCHANDISES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Personnel int\u00e9rimaire et personnes mises \u00e0 la disposition  de l'entreprise", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9mun\u00e9rations, primes pour assurances extral\u00e9gales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Documentation", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Missions et r\u00e9ceptions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cadeaux \u00e0 la client\u00e8le", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Primes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Foires et expositions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Echantillons", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Catalogues et imprim\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Annonces et insertions", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Annonces, publicit\u00e9, propagande et documentation"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sous-traitants pour activit\u00e9s propres", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sous-traitants d'associations momentan\u00e9es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Quote-part b\u00e9n\u00e9ficiaire des coparticipants", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Sous-traitants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imprim\u00e9s et fournitures de bureau", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T\u00e9l\u00e9grammes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T\u00e9l\u00e9phone", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T\u00e9lex et t\u00e9l\u00e9fax", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais postaux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "T\u00e9l\u00e9phone, t\u00e9l\u00e9grammes, t\u00e9lex, t\u00e9l\u00e9fax, frais postaux"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Vapeur", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Eau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Electricit\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Gaz", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Eau, gaz, \u00e9lectricit\u00e9, vapeur"
+         }, 
+         {
+          "name": "Livres, biblioth\u00e8que", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Fournitures faites \u00e0 l'entreprise"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Personnel int\u00e9rimaire", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Publications l\u00e9gales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires d'avocats, d'experts, etc ...", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions aux tiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dons, lib\u00e9ralit\u00e9s, ...", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cotisations aux groupements professionnels", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de contentieux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Divers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Transports de personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Voyages, d\u00e9placements, repr\u00e9sentations", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Transports et d\u00e9placements"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres redevances", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour brevets, licences, marques, accessoires", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Redevances et royalties"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurance incendie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance vol", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance autos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances frais g\u00e9n\u00e9raux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Assurances non relatives au personnel"
+         }
+        ], 
+        "name": "R\u00e9tributions de tiers"
+       }, 
+       {
+        "name": "Entretien et r\u00e9paration", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "SERVICES ET BIENS DIVERS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Salaire hebdomadaire garanti", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Jours f\u00e9ri\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Allocations familiales compl\u00e9mentaires", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Charges sociales diverses"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurances individuelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances loi, responsabilit\u00e9 civile, chemin du travail", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance salaire garanti", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Assurances du personnel"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Allocations familiales compl\u00e9mentaires pour non salari\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Lois sociales pour ind\u00e9pendants", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Charges sociales des administrateurs, g\u00e9rants et commissaires"
+         }
+        ], 
+        "name": "Autres frais de personnel"
+       }, 
+       {
+        "name": "Primes patronales pour assurances extral\u00e9gales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur appointements et commissions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur salaires", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Cotisations patronales d'assurances sociales"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Administrateurs ou g\u00e9rants", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Personnel de direction", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Employ\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Autres membres du personnel", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Ouvriers", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9mun\u00e9rations et avantages sociaux directs"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provision pour p\u00e9cule de vacances"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Personnel", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Pensions de retraite et de survie"
+       }
+      ], 
+      "name": "REMUNERATIONS, CHARGES SOCIALES ET PENSIONS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Dotations aux r\u00e9ductions de valeur sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux r\u00e9ductions de valeur sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur frais d'\u00e9tablissement", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dotations aux amortissements et aux r\u00e9ductions de valeur sur immobilisations"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur stocks"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur commandes en cours d'ex\u00e9cution"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur cr\u00e9ances commerciales \u00e0 plus d'un an"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur cr\u00e9ances commerciales \u00e0 un an au plus"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour pensions et obligations similaires"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour grosses r\u00e9parations et gros entretiens"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour autres risques et charges"
+       }
+      ], 
+      "name": "AMORTISSEMENTS, REDUCTIONS DE VALEUR ET PROVISIONS POUR RISQUES ET CHARGES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Frais de vente des titres", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisation d'actifs circulants", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Charges d'escompte de cr\u00e9ances", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres charges de dettes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Amortissements des agios et frais d'\u00e9mission d'emprunts", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Int\u00e9r\u00eats, commissions et frais aff\u00e9rents aux dettes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Int\u00e9r\u00eats intercalaires port\u00e9s \u00e0 l'actif", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Charges des dettes"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur actifs circulants"
+       }, 
+       {
+        "name": "Frais de banques, de ch\u00e8ques postaux", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Commissions sur ouvertures de cr\u00e9dit, cautions, avals", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Diff\u00e9rences de change", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ecarts de conversion des devises", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "CHARGES FINANCIERES"
+     }
+    ], 
+    "name": "CLASSE 6. - CHARGES"
+   }, 
+   {
+    "name": "FABRIKAGEREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Verkopen Handel 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen Fabric. 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabric. 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage overig", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage overig", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabric. 0 % EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel hoog tarief", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verleende Kredietbep. fabricage", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verleende Kredietbep. handel", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel laag tarief", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel overig", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "VERKOOPRESULTATEN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortissements sur goodwill", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Co\u00fbt d'acquisition", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Acomptes vers\u00e9s", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concessions, brevets, licences, savoir-faire, marques, etc...", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es sur concessions, brevets, etc...", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur concessions, brevets, etc...", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Concessions, brevets, licences, savoir-faire, marques et droits similaires", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS INCORPORELLES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres droits r\u00e9els sur des immeubles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Frais d'acquisition des terrains \u00e0 b\u00e2tir", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "B\u00e2timents industriels", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur frais d'acquisition des terrains b\u00e2tis", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur terrains b\u00e2tis", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Terrains b\u00e2tis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Voies de transport et ouvrages d'art", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Autres b\u00e2timents d'exploitation", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "B\u00e2timents administratifs et commerciaux", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "B\u00e2timents industriels", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Frais d'acquisition sur constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Constructions sur sol d'autrui", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur constructions sur sol d'autrui", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur frais d'acquisition sur constructions", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Constructions", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "TERRAINS ET CONSTRUCTIONS", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Division A", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Division B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Machines", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Division A", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Division B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Outillage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur machines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur installations", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Plus-values act\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur installations", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur machines", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortissements", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "INSTALLATIONS, MACHINES ET OUTILLAGE", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Idem sur mat\u00e9riel ferroviaire", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Amortissements sur mat\u00e9riel automobile", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel naval", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel fluvial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel a\u00e9rien", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Idem sur mat\u00e9riel naval", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Plus-values sur mat\u00e9riel automobile", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel ferroviaire", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel a\u00e9rien", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel fluvial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values sur mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel ferroviaire", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Voitures", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Camions", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Mat\u00e9riel automobile", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel naval", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel fluvial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel a\u00e9rien", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mat\u00e9riel roulant", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "MOBILIER ET MATERIEL ROULANT", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Plus-values act\u00e9es sur installations, machines et outillage pris en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur installations, machines et outillage pris en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installations", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Machines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Outillage", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Installations, machines et outillage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mobilier", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur mobilier et mat\u00e9riel roulant en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es sur mobilier et mat\u00e9riel roulant en leasing", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mobilier et mat\u00e9riel roulant", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATION DETENUES EN LOCATION-FINANCEMENT ET DROITS SIMILAIRES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortissements sur emballages r\u00e9cup\u00e9rables", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur mat\u00e9riel d'emballage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur r\u00e9serve immobili\u00e8re", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur maison d'habitation", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur frais d'am\u00e9nagement des locaux pris en location", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortissements sur autres immobilisations corporelles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Plus-values act\u00e9es sur autres immobilisations corporelles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mat\u00e9riel d'emballage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "R\u00e9serve immobili\u00e8re", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Maison d'habitation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Emballages r\u00e9cup\u00e9rables", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "AUTRES IMMOBILISATIONS CORPORELLES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titres \u00e0 revenu fixe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres cr\u00e9ances", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres actions et parts", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titres \u00e0 revenu fixes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances sur des entreprises li\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Participations dans des entreprises li\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Titres \u00e0 revenu fixe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances sur des entreprises avec lesquelles il existe un lien de participation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Participations dans des entreprises avec lesquelles il existe un lien de participation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres cautionnements vers\u00e9s en num\u00e9raires", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Electricit\u00e9", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "T\u00e9l\u00e9phone, t\u00e9lefax, t\u00e9lex", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Gaz", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Eau", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cautionnements vers\u00e9s en num\u00e9raires", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS FINANCIERES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Installations, machines et outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mobilier et mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Autres immobilisations corporelles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Immobilisations en cours", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Avances et acomptes vers\u00e9s sur immobilisations en cours", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS CORPORELLES EN COURS ET ACOMPTES VERSES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances autres d\u00e9biteurs", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres d\u00e9biteurs", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances r\u00e9sultant de la cession d'immobilisations donn\u00e9es en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres cr\u00e9ances", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Acomptes vers\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Retenues sur garanties", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur clients exportation hors C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients Belgique", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients Belgique", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances en compte sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients exportation hors C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur les coparticipants", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clients", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances commerciales", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "CREANCES A PLUS D'UN AN", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "CLASSE 2. FRAIS D'ETABLISSEMENT. ACTIFS IMMOBILISES ET CREANCES A PLUS D'UN AN", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "D'un mois au plus"
+       }, 
+       {
+        "name": "De plus d'un mois et \u00e0 un an au plus"
+       }, 
+       {
+        "name": "De plus d'un an"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }
+      ], 
+      "name": "DEPOTS A TERME"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valeur d'acquisition"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }
+      ], 
+      "name": "TITRES A REVENUS FIXES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Comptes ouverts aupr\u00e8s des divers \u00e9tablissements"
+       }
+      ], 
+      "name": "ETABLISSEMENTS DE CREDIT."
+     }, 
+     {
+      "name": "VIREMENTS INTERNES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Coupons \u00e0 encaisser"
+       }
+      ], 
+      "name": "VALEURS ECHUES A L'ENCAISSEMENT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Caisses - timbres"
+       }
+      ], 
+      "name": "CAISSES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ch\u00e8ques \u00e9mis"
+       }
+      ], 
+      "name": "OFFICE DES CHEQUES POSTAUX"
+     }
+    ], 
+    "name": "CLASSE 5. PLACEMENTS DE TRESORERIE ET DE VALEURS DISPONIBLES"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Petty Cash"
+       }, 
+       {
+        "name": "Cash at Bank"
+       }
+      ], 
+      "name": "Cash"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Accumulated Depreciation - Equipment"
+       }
+      ], 
+      "name": "Equipment"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Accumulated Depreciation - Building"
+       }
+      ], 
+      "name": "Building"
+     }, 
+     {
+      "name": "Account Receivable"
+     }, 
+     {
+      "name": "Outstanding Cheques"
+     }, 
+     {
+      "name": "Input VAT"
+     }, 
+     {
+      "name": "Withholding Income Tax"
+     }, 
+     {
+      "name": "Inventory"
+     }
+    ], 
+    "name": "Assets"
+   }
+  ], 
+  "name": "Simple chart of accounts"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/pa_l10npa_chart_template.json b/setup/doctype/company/charts/pa_l10npa_chart_template.json
new file mode 100644
index 0000000..31c2cc3
--- /dev/null
+++ b/setup/doctype/company/charts/pa_l10npa_chart_template.json
@@ -0,0 +1,11887 @@
+{
+ "name": "Panam\u00e1 - Plan de Cuentas", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Envases ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Materia Prima ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Materiales y Suministros Directos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio del personal", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad por labores", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ uniformes al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ atenciones al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ accident. trab. y enferm. prof", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ asignaci\u00f3n familiar LEY 25129", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ gastos recreativos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad del personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ bonificaci\u00f3n por riesgo de caja ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de prestaciones salud ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de pensiones ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ seguros de vida LEY 49226", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio al personal ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos adicionales a las remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n de empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / asignaci\u00f3n familiar ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / trabajos eventuales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones extraordinarias ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / practicas pre-profecionales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / subsidios por enfermedad ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / aguinaldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n obreros ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Otras remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / sueldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / salarios ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / remuneraciones en especie ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Mano de Obra Directa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Producci\u00f3n - Otros Costos Directos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Mano de Obra Indirecta", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Materiales Auxiliares", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Repuestos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Suministros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Materiales y Suministros Indirectos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - gastos indirectos / Otros Gastos de Producci\u00f3n Indirectos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Otros Gastos de Producci\u00f3n Indirectos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Gastos de Producci\u00f3n Indirectos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de Producci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de ventas - Publicidad ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Alquiler de locales y servicios basicos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones / sueldos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / comisiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / remuneraciones en especie", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ accident. trab., enferm. prof y otros seguros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ movilidad y refrigerios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ atenciones al personal y gastos recreativos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Gastos adicionales a las remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / asignaci\u00f3n familiar y bonificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / vacaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / practicas pre-profecionales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / horas extras", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Honorarios profecionales ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / embalajes y otros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / telecomunicaciones (telefono, internet,...)", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes aereos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras cargas de personal ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Mantenimiento de inmuebles, maquinarias y equipos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Otros gastos de ventas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de ventas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de administraci\u00f3n - Gastos varios ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Cotizaci\u00f3n, licitaci\u00f3n, donaciones y otros ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraci\u00f3n al directorio ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / telefonos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / practicas pre-profecionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / vacaciones empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / aguinaldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / gratificaci\u00f3n de empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / horas extras empleados      ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraciones en especie ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / sueldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / otras cargas de personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes aereos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / movilidad al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / atenciones al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / refrigerio al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / asignaci\u00f3n familiar ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / envio correspondencia ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / bonificaci\u00f3n por riesgo de caja ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Depreciaci\u00f3n y Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Penalidades, tributos y seguros  ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / gastos notariales, registro y judicial", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / honorarios profesionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / transferencias de fondos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / mantenimiento, ctas bancarias ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / servicios de seguridad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / otros servicios bancarios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / talonarios de cheques ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Publicidad, representaci\u00f3n y otros servicios de personal", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de administraci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses moratorios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / pago tributos y contribuciones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / comisi\u00f3n tarjeta de credito ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / gastos cheques devueltos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses SUNAT ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses de leasing", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Otras cargas financieras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses de pagares ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes compensatorio - por cartera", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / perdida por diferencia de cambio", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / descuentos concedidos por pronto pago", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses y gastos de prestamo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / devolucion de documentos de cobranza", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes por Letras en descuento", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses moratorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses compensatorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses,compra,mercader\u00eda ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses por sobregiros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / gastos por atrazo, cuotas bancarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Interes y gastos financieros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros    ", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Centros de Costo", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital - Capital social / acciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital - Capital social / participaciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital - Capital social ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital - Acciones en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Capital (Patrimonio neto)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PASIVOS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones a ser mantenidas hasta el vencimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones financieras representativas de derecho patrimonial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inversiones mobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / concesiones, licencias y otros derechos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / otros activos intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de intangibles  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Inversiones inmobiliarias  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de activo inmovilizado ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PATRIMONIO"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Ingresos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Ingresos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Subsidios recibidos diferidos ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Costos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Costos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, resultados  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Impuesto a la renta diferido ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / patrimonio ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / resultados ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Ganancia en venta con arrendamiento financiero paralelo ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Pasivo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ gerentes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ directores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / letras por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - ** Cuentas por cobrar comerciales, relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, relacionadas / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / reclamaciones a terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / intereses, r\u00e9galias y dividendos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / venta de activo inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / letras por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar comerciales, terceros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Estimaci\u00f3n de cuentas de cobranza dudosa", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Agotamiento acumulado / agotamiento de reservas de recursos extra\u00edbles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Agotamiento acumulado  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n, ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n, costos de exploraci\u00f3n y desarrollo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Amortizaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n,costo de financiacion, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipos diversos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipo de transporte ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, muebles y enseres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento financiero, inversiones inmobiliarias, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento ..., inmuebles, maquinaria y equipo de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Depreciaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones - Provisi\u00f3n para reestructuraciones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Otras provisiones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para litigios   ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para garant\u00edas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para gastos de responsabilidad social ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Provisiones    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / matriz", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / sucursales ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / asociadas ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / sucursales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / sucursales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Dividendos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, otras  ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas / otras cuentas por pagar diversas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, otras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, matriz", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, sucursales", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pasivo por compra de activo inmovilizado ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, relacionadas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Unidades de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "DISPONIBLES PARA LA VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones mantenidas hasta el vencimiento ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pr\u00e9stamos y partidas a cobrar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acciones y participaciones"
+         }
+        ], 
+        "name": "INVERSIONES MANTENIDAS HASTA EL VENCIMIENTO "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar a terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar al originador", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y Documentos a cobrar a terceros"
+         }
+        ], 
+        "name": "PRESTAMOS Y PARTIDAS A COBRAR "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Forward", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Futuros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Opciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Derivados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "A VALOR RAZONABLE CON CAMBIOS EN RESULTADOS"
+       }, 
+       {
+        "name": "Caja y Bancos - Valores a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y Bancos.../ BCO. CTA CTE PAB"
+         }
+        ], 
+        "name": "Caja y Bancos - Bancos"
+       }, 
+       {
+        "name": "Caja y Bancos - Recaudaciones a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / valor razonable  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable ...- Inversiones al valor razonable ** Inversiones mantenidas para negociaci\u00f3n     ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Fondos fijos / caja menuda 01 PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Activos financieros / compromiso de compra", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado /valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero eh", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo USD"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Inversiones disponibles para la venta", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones al valor razonable y disponibles para la venta ** Inversiones financieras", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar...- Letras por cobrar / en cartera", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en  cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / sucursales", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / matriz ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros ... / no emitidas, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por... - Facturas, boletas y otros .../ no emitidas, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Facturas, boletas y otros comprobantes por cobrar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Accionistas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Intereses Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Alquileres Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Anticipo al Personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar   ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Cobranza dudosa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Comisiones por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar a terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Dividendos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RENDIMIENTOS POR COBRAR"
+       }, 
+       {
+        "name": "DERECHOS POR COMPROMISO DE RECOMPRA"
+       }, 
+       {
+        "name": "ANTICIPO A CONSTRUCTOR POR AVANCE DE OBRA"
+       }, 
+       {
+        "name": "ANTICIPO COMITENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Al Originador", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Puestos inactivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por servicios burs\u00e1tiles"
+         }, 
+         {
+          "name": "Asesor\u00eda"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contrato de Underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Extraburs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Por  Manejo de Fideicomisos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Contratos de Administraci\u00f3n Portafolio de Terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Fondos Administrados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Encargos Fiduciarios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por comisiones de administraci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por  administraci\u00f3n y manejo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores Materializados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Libro de Acciones y Accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores Desmaterializados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por Custodia y Conservaci\u00f3n de Valores"
+         }, 
+         {
+          "name": "Otras comisiones"
+         }
+        ], 
+        "name": "COMISIONES POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DOCUMENTOS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Facturas, boletas y otros comprobantes por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Cuotas Iniciales", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Adelantos o Separaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cartera ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cobranza ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / Deudores Varios"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Incobrables"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }, 
+       {
+        "name": "PROVISIONES PARA CUENTAS POR COBRAR"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PRODUCTOS TERMINADOS"
+       }, 
+       {
+        "name": "PRODUCTOS EN PROCESO"
+       }, 
+       {
+        "name": "MATERIA PRIMA"
+       }, 
+       {
+        "name": "MATERIALES Y SUMINISTROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / suscripciones por cobrar a socios o accionistas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Accionistas o (socios) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / adelanto de dietas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Personal / entregas a rendir cuenta", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / otras cuentas por cobrar al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Personal", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / directores ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / personal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / gerentes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Diversas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "PROVISI\u00d3N POR DETERIORO DE EXISTENCIAS"
+       }
+      ], 
+      "name": "Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y  equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Venta de activo inmovilizado ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos /  dividendos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses , asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, sucursal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, r\u00e9galias y dividendos / intereses", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Interes\u00e9s, regal\u00edas y dividendos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / Concesiones y Franquicias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVOS ADQUIRIDOS EN ARRENDAMIENTO FINANCIERO"
+       }, 
+       {
+        "name": "CONSTRUCCIONES EN CURSO "
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PLUSVAL\u00cdA MERCANTIL (Goodwill)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROPIEDADES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Programas de computaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reservas de recursos extra\u00edbles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTANGIBLES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades"
+         }, 
+         {
+          "name": "Plusval\u00eda mercantil (Goodwill) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS NO CORRIENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas a Largo Plazo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Activos por instrumentos financieros derivados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros primarios   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / instrumento de cobertura", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / cartera de negociaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros derivados  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Activos por instrumentos financieros   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / entregas a rendir cuenta a terceros  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas a Largo Plazo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / reclamaciones a terceros ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVO NO CORRIENTE DISPONIBLE PARA LA VENTA"
+       }, 
+       {
+        "name": "UNIDADES DE PARTICIPACION"
+       }, 
+       {
+        "name": "ACTIVO POR IMPUESTO CORRIENTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / dep\u00f3sitos en garant\u00eda por alquileres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones no financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / otros dep\u00f3sitos en garant\u00eda ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Venta de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / Compa\u00f1\u00edas aseguradoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / transportadoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / tributos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / otras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / servicios p\u00fablicos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Reclamaciones a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Intereses, regal\u00edas y dividendos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Servicios y otros contratados por anticipado - Interes\u00e9s ** Costos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo por impuesto diferido  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ACTIVO POR IMPUESTO DIFERIDO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuota patrimonial bolsa de valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuota patrimonial bolsa de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por reporto", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por operaciones burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Dep\u00f3sitos en Garant\u00eda"
+         }
+        ], 
+        "name": "OTROS ACTIVOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Mantenimiento de activos inmovilizados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Otros gastos contratados por anticipado ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "ACTIVOS DE EXPLORACION Y EVALUACION MINERA"
+       }, 
+       {
+        "name": "DERECHOS FIDUCIARIOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Primas pagadas por opciones ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos en arrendamiento financiero", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos de exploraci\u00f3n y evaluaci\u00f3n minera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DEPRECIACION ACUMULADA"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Alquileres ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Seguros ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AMORTIZACION ACUMULADA"
+       }
+      ], 
+      "name": "Servicios y otros contratados por anticipado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Caja y bancos - Caja / efectivo USD ($)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y bancos - Caja / efectivo PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Caja", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y .../ BCO. CTA CTE PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Cuentas corrientes en instituciones finacieras  / cuentas corrientes operativas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y ...- Cuentas corrientes en instituciones financieras / cuentas corrientes para fines espec\u00edficos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Cuentas corrientes en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Fondos fijos / caja chica 01 PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Fondos fijos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos a plazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos de ahorro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Dep\u00f3sitos en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Certificados bancarios / certificados bancarios ** otros equivalentes de efectivos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Certificados bancarios / otros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Certificados bancarios **Otros equivalentes de efectivos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / BN CTA DETRACCIONES PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / fondos sujetos a restricci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cajas y bancos - Fondos sujetos a restricci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Caja y bancos - Efectivo en tr\u00e1nsito ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Banco Central del Ecuador"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fondos rotativos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja"
+         }, 
+         {
+          "name": "Instituciones financieras"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Ahorros Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta Ahorros En el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras Instituciones Financieras"
+         }
+        ], 
+        "name": "ACTIVO DISPONIBLE"
+       }
+      ], 
+      "name": "Caja y bancos  (Activo disponible y exigible) - Efectivo y equivalentes de efectivos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos manufacturados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos de extracci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias primas - Materias primas desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Salarios por Pagar / Retenciones a Depositar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Sueldos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos manufacturados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Salarios por Pagar / Provisi\u00f3n para Sueldo Anual Complementario", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Cargas Sociales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos agropecuarios y pisc\u00edcolas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materias primas   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras Cuentas por Pagar / Cobros por Adelantado", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Acreedores Varios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Honorarios Directores y S\u00edndicos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / lubricantes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / combustibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / energ\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / otros suministros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Suministros ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / materiales auxiliares", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / suministros    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / repuestos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares, suministros y repuestos desvalorizados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Materiales auxiliares, suministros y  repuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n para juicios Pendientes", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases y embalajes - Envases y embalajes desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Envases y embalajes - Embalajes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Envases y embalajes - Envases", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Envases y embalajes     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inversi\u00f3n inmoviliaria", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipos diversos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, herramientas y unidades de reemplazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, patentes y propiedad industrial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, reservas de recursos extra\u00edbles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos no corrientes mantenidos para la venta    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, costo - Categoria de productos 01", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Mercade...- Mercader\u00edas .../ Mercader\u00edas manufacturadas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Mercader\u00edas - Mercader\u00edas manufacturadas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas manufacturadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / recursos extra\u00eddos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / mercader\u00edas manufacturadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercaderias desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen vegetal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen animal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Otras mercader\u00edas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Mercader\u00edas  (Activo realizable)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Productos terminados - Productos de extracci\u00f3n terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Anticipos de Clientes"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen animal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos terminados - Productos agropecuarios y pisc\u00edcolas terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Proveedores"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / otros productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos inmuebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados - Productos terminados desvalorizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos terminados - Productos inmuebles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Productos manufacturados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Otros productos terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Costos de financiaci\u00f3n, productos terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Existencias de servicios terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Participaciones de los trabajadores en utilidades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Beneficios a empleados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aportes y descuentos al IESS", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondo reserva del IESS", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES PATRONALES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acreedores Varios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por administraci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras comisiones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dividendos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Comisiones por pagar ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Operaciones Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por custodia", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deuda Sector No Financiero"
+         }
+        ], 
+        "name": "PASIVO NO FINANCIERO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligaciones por Arrendamiento Financiero ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "A valor razonable con cambios en resultados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compa\u00f1\u00edas relacionadas / vinculadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Administradores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Accionistas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Relacionadas"
+         }, 
+         {
+          "name": "Pasivos por compra de activos no corrientes"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones por contratos de underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Porci\u00f3n corriente de deuda a largo plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sobregiros bancarios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Obligaciones financieras"
+         }, 
+         {
+          "name": "Otros pasivos financieros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras cuentas y documentos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Anticipos recibidos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y documentos por pagar"
+         }
+        ], 
+        "name": "PASIVOS FINANCIEROS"
+       }, 
+       {
+        "name": "OTROS PASIVOS CORRIENTES"
+       }, 
+       {
+        "name": "ACREEDORES POR INTERMEDIACION            "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Litigios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Indemnizaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Obligaciones Judiciales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SANCIONES Y MULTAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Impuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Retenciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Contribuciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES TRIBUTARIAS"
+       }
+      ], 
+      "name": "Productos  terminados", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pasivo Circulante / Debentures Emitidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / subproductos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos, desechos y desperdicios - Subproductos, desechos y desperdicios desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo Circulante / Intereses a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Obligaciones a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Prestamos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Adelantos en Cuenta Corriente", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Desechos y desperdicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses diferidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pasivos por impuestos diferidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PASIVOS DIFERIDOS"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Subproductos ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subproductos, desechos y desperdicios   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DEUDA SECTOR FINANCIERO"
+       }, 
+       {
+        "name": "Productos en proceso - Productos extra\u00eddos en proceso de transformaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / costos de financiaci\u00f3n, productos en proceso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / otros productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / existencias de servicios en proceso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en proceso - Productos en proceso desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto sobre los Bienes Personales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Deudas Fiscales / Monotributo a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / ITBMS a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / Impuesto sobre la Renta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Productos en proceso - Productos inmuebles en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Costos de financiaci\u00f3n, productos en proceso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto a la Ganancia M\u00ednima Presunta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo   ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable   ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo    ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen animal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos en proceso - Productos agropecuarios y pisc\u00edcolas en proceso", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos en proceso - Otros productos en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Productos en proceso de manufactura", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Existencias de servicios en proceso", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos en  proceso ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Existencias por recibir - Mercader\u00edas / Categoria de productos 01", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Mercader\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materias primas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materiales auxiliares, suministros y repuesto", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / mercader\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materias primas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Existencias por recibir desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materiales auxiliares, suministros y repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Existencias por recibir - Envases y embalajes", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Existencias por recibir   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materias primas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / mercader\u00edas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Existencias por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / costos de financiaci\u00f3n, productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / existencias de servicios en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / otros productos en proceso ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / otros productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / costos de financiaci\u00f3n, productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos inmuebles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos terminados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / suministros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / repuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / materiales auxiliares ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Envases y embalajes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos manufacturados    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / subproductos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Subproductos, desechos y desperdicios ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de existencias    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros activos - Bienes de arte y cultura / obras de arte ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / biblioteca", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / otros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Bienes de arte y cultura ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros activos - Diversos / otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes recibidos en pago (adjudicados y realizables) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes entregados en comodato ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / monedas y joyas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Diversos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACUMULADOS"
+       }, 
+       {
+        "name": "UTILIDAD (PERDIDA) DEL EJERCICIO"
+       }, 
+       {
+        "name": "RESULTADOS ACUMULADOS POR APLICACI\u00d3N DE LAS NIIF POR PRIMERA VEZ"
+       }
+      ], 
+      "name": "Otros activos    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / maquinaria en montaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inversiones inmobiliarias, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / otros activos en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / construcciones en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / inversi\u00f3n inmobiliaria en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaci...", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmue...- Constru.../ costo de financiaci\u00f3n, inmuebles, maquinaria y ..., C de F, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inmuebles maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / adaptaci\u00f3n de terrenos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipos diversos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / herramientas y unidades de reemplazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / muebles y enseres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Unidades por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / muebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / enseres", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Muebles y enseres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos no motorizados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos motorizados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - ** Unidades de transporte ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / herramientas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / unidades de reemplazo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Terrenos / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos .., costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / otros equipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo para procesamiento de informaci\u00f3n (de c\u00f3mputo) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de seguridad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Equipos diversos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de financiaci\u00f3n, almacenes", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / almacenes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de financiaci\u00f3n, edificaciones para producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones para producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de financiaci\u00f3n, instalaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / instalaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones administrativas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Edificaciones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inmuebles, maquinaria y equipo   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos adquiridos en arrendamiento financiero   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Capital / Dividendos a Distribuir en Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costos de financiaci\u00f3n, inversiones inmobliarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Edificaciones /  edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Edificaciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / rurales, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / rurales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / urbanos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "PATRIMONIO DE LOS NEGOCIOS FIDUCIARIOS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Patrimonio del fondo colectivo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patrimonio del fondo administrado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PATRIMONIO DE LOS FONDOS DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PAGADO"
+       }, 
+       {
+        "name": "ACCIONES EN TESORER\u00cdA"
+       }, 
+       {
+        "name": "FONDO PATRIMONIAL"
+       }
+      ], 
+      "name": "Inversiones inmobiliarias   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ instrumentos financieros representativos de derecho ..., acuerdo de compra ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ inversiones a ser mantenidas hasta el vencimiento, acuerdo de compra", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Desvalorizaci\u00f3n de inversiones mobiliarias ** acuerdos de compra ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por el sistema financiero", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por las empresas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a ../ instrumentos ., otros t\u00edtulos representativos de deuda **valores emitidos por otras entidades", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos o garantizados por el estado ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Inversiones a ser mantenidas hasta el vencimiento / instrumentos financieros representativos de deuda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Inversiones a ser mantenidas hasta el vencimiento", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ otros t\u00edtulos representativos de patrimonio, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de .../ otros t\u00edtulos representativos de patrimonio, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho patrimonial / otros t\u00edtulos representativos de patrimonio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n ..., participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ participaciones en asociaciones en participaci\u00f3n y consorcios", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de participaci\u00f3n de fondos mutuos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ **certificados de participaci\u00f3n de fondos de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones representativas de capital social, comunes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos .../ acciones representativas de capital social, preferentes, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ acciones representativas de capital social, preferentes ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de suscripci\u00f3n preferente", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Instrumentos financieros representativos de derecho patrimonial ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones mobiliarias (Activo inmovilizado)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Impuesto a la renta diferido", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, patrimonio   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Utilidades y P\u00e9rdidas del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en producci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos biol\u00f3gicos     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "OTRAS RESERVAS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / licencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / concesiones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / otros derechos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Concesiones, licencias y otros derechos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / marcas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / patentes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Patentes y propiedad industrial ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Programas de computadora (software) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Otros activos intangibles / otros activos intangibles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Otros activos intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "RESERVA LEGAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserva por valuaci\u00f3n Propiedades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reserva por Valuaci\u00f3n Activos Financieros Disponibles para la Venta", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RESERVA POR VALUACI\u00d3N"
+       }, 
+       {
+        "name": "RESERVA FACULTATIVA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / madera  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Reservas de recursos extra\u00edbles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles - Plusval\u00eda mercantil / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Intangibles - Plusval\u00eda mercantil ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Intangibles   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar diversas, terceros - D\u00e9positos recibidos en garant\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos adquiridos en arrendamientos financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones inmoviliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / intangibles ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por compra de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Pasivos financieros, compromiso de venta ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "INGRESOS DE ACTIVOS POR IMPUESTOS DIFERIDOS"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Reclamaciones de terceros ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / otras cuentas por pagar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / donaciones condicionadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / subsidios gubernamentales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros primarios  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, cartera de negociaci\u00f3n ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, instrumentos de cobertura ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros derivados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por instrumentos financieros   ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, terceros ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Directores / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Directores / dietas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Gerentes ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "UTILIDAD POR OPERACIONES DESCONTINUADAS"
+       }, 
+       {
+        "name": "OTRAS UTILIDADES EN VENTAS"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE VALORES"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE PROPIEDAD"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Largo Plazo", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Corto Plazo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / dividendos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Accionistas (o socios) ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar a los accionistas(socios), directores y gerentes ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / contratos de arrendamiento financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos emitidos   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos titulizados  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, otras obligaciones ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, instituciones financieras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, otras entidades ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / pr\u00e9stamos de instituciones financieras y otras entidades ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, pagar\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, letras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, facturas conformadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, otras obligaciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, bonos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / otros instrumentos  financieros por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / otras entidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / instituciones financieras    ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Pr\u00e9stamos de instituciones financieras y otras entidades   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero a Largo Plazo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero parte Corriente", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Contratos de arrendamientos financiero  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos emitidos  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos titulizados ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / otras obligaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Obligaciones emitidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / pagar\u00e9s ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / letras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / facturas conformadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / bonos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / otras obligaciones financieras  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Otros instrumentos financieros por pagar    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Obligaciones financieras - Pr\u00e9stamos con compromisos de recompra ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "OBLIGACIONES FINANCIERAS"
+       }, 
+       {
+        "name": "ACTIVOS BIOL\u00d3GICOS"
+       }, 
+       {
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "ACTIVOS NO CORRIENTES"
+       }
+      ], 
+      "name": "Obligaciones financieras  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Honorarios por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Anticipos a proveedores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inscripciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mantenimiento de Inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Comisiones en operaciones ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS BURS\u00c1TILES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Portafolio de terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por representaci\u00f3n de obligacionistas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR PRESTACI\u00d3N DE SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERMEDIACI\u00d3N DE VALORES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores materializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y liquidaci\u00f3n de valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO\n        COMPENSACI\u00d3N Y LIQUIDACI\u00d3N"
+       }, 
+       {
+        "name": "OTRAS COMISIONES GANADAS"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Letras por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, terceros - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ganancia Venta de Activo Fijo", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Recupero de Deudores Incobrables", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta Inversiones Permanentes", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Donaciones obtenidas, ganandas, percibidas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, sucursales ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta p\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INGRESOS POR ESTRUCTURACI\u00d3N"
+       }, 
+       {
+        "name": "INGRESOS POR ASESORIA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, otros", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, matriz", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobiernos regionales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Otros costos administrativos e intereses ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Administradoras de fondos de pensiones (AFP)", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Certificados tributarios ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto de alcabala ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto predial ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al rodaje", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al patrimonio vehicular ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los juegos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a las apuestas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los espect\u00e1culos p\u00fablicos no deportivos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / impuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios administrativos o derechos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, estacionamiento de veh\u00edculos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, licencia de apertura de establecimientos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios p\u00fablicos o arbitrios ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, transporte p\u00fablico ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / tasas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Gobiernos locales / contribuciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes ...- Gobiernos Locales (Predial, Licencias, tributos, impuestos, contribuciones, tasas y arbitrios,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENCICO ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ONP", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ESSALUD", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENATI", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / otras instituciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Instituciones p\u00fablicas (ESSALUD, ONP,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Gobierno central / impuesto selectivo al consumo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, tasas por la prestaci\u00f3n de servicios p\u00fablicos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, regal\u00edas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los dividendos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a las transacciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los juegos de casino y tragamonedas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, otros impuestos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto temporal a los activos netos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / **otros impuestos (ITF,...) y contraprestaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon hidroenerg\u00e9tico ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon petroleo ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon gas\u00edfero ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon minero  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon forestal ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon pesquero ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / canon", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - servicios prestados por no domiciliados   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de percepciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - cuenta propia ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas (IGV)   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de cuarta categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de no domiciliados ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de tercera categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, otras retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de quinta categor\u00eda ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos arancelarios ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos aduaneros por ventas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobierno central", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta propia ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta de terceros ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Empresas prestadoras de servicios de salud (EPS)", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Tributos, **contraprestaciones  y aportes al sistema de pensiones y de salud por pagar  (Pasivo)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Comisiones gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajodores por pagar / pensiones y jubilaciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / adelanto de compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar - Beneficios sociales de los trabajadores por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Interese sobre Inversiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Honorarios gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Categoria de productos 01", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / sueldos y salarios por pagar   ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / gratificaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / vacaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / comisiones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / remuneraciones en especie por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar  - Remuneraciones por pagar   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Intereses gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Alquileres gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta de Acciones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "INTERESES Y RENDIMIENTOS"
+       }, 
+       {
+        "name": "UTILIDAD EN CAMBIO"
+       }, 
+       {
+        "name": "DIVIDENDOS"
+       }, 
+       {
+        "name": "UTILIDAD POR VALUACI\u00d3N DE ACTIVOS FINANCIEROS A VALOR RAZONABLE"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Otras remuneraciones y participaciones por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Participaci\u00f3n de los trabajadores por pagar ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Remuneraciones y participaciones por pagar", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / ingresos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / utilidades acumuladas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - Utilidades no distribuidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / p\u00e9rdidas acumuladas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / gastos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - P\u00e9rdidas acumuladas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados acumulados     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reserva legal - Contractuales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Estatutarias ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Reinversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Facultativas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Legal ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Otras reservas ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Reserva legal    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente de revaluaci\u00f3n - Participaci\u00f3n en excedente de revaluaci\u00f3n, inversiones en entidades relacionadas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / intangibles ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Exdecente de revaluaci\u00f3n / inversiones inmobiliarias  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / inmuebles, maquinaria y equipos ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n, acciones liberadas recibidas  ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Excedente de revaluaci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultados no realizados - Instrumentos financieros, cobertura de flujo de efectivo ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados no realizados - Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Resultados no realizados - Diferencia en cambio de inversiones permanentes en entidades extranjeras ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta,compra o venta convencional fecha d liqui", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados no realizados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de Publicidad y Propaganda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Salarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses por cr\u00e9ditos de bancos y otras Instituciones financieras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intereses por otros pasivos no financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERESES CAUSADOS"
+       }, 
+       {
+        "name": "Gastos en Servicios P\u00fablicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Mercader\u00edas Vendidas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Depreciaci\u00f3n de Activo Fijo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Cargas Sociales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos Bancarios", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Impuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en Valuaci\u00f3n de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN VALUACI\u00d3N DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en cambio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN CAMBIO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Arrendamiento operativo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ARRENDAMIENTO OPERATIVO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores Desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y Liquidaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores Materializados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO COMPENSACI\u00d3N Y LIQUIDACI\u00d3N \n      "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras Comisiones Pagadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS COMISIONES PAGADAS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tlies", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COMISIONES PAGADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Administraci\u00f3n de portafolio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por operaciones descontinuadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta activos biol\u00f2gicos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Propiedad ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDAS EN VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta P\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS POR ESTRUCTURACI\u00d3N"
+       }
+      ], 
+      "name": "Acciones de inversi\u00f3n   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Beneficios sociales de los trabajadores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS DE PERSONAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios de terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS DE TERCEROS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Honorarios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "HONORARIOS"
+       }, 
+       {
+        "name": "Capital adicional - Reducciones de capital pendientes de formalizaci\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Capital adicional - Primas (descuento) de acciones  ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Gastos en Siniestros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / reservas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / aportes ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / utilidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / acreencias ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital adicional - Capitalizaciones en tr\u00e1mite ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida Venta Activo Fijo", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Capital adicional ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inventarios - Mercancias / Categoria de productos 01", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inventarios - Mercancias"
+         }, 
+         {
+          "name": "Materias primas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inventarios - Mercancias en Tr\u00e1nsito", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos Elaborados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos en Curso de Elaboraci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Inventarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales Varios ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plantas en crecimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animales vivos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inventarios"
+       }
+      ], 
+      "name": "ACTIVOS"
+     }
+    ], 
+    "name": "Cuentas de Balance", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Compras - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercaderias / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos .../ otros costos vinculados con las compras de materias primas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ comisiones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos vinculados con las compras / costos vinculados con las compras de materias primas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ comisiones    ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ otros costos vinculados con las compras de mercader\u00edas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos Vinculados con las compras / costos vinculados con las compras de mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vincu...,otros costos vinculados con las compras de materiales, suministros y repuestos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, seguros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, transporte  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de materiales, suministros y repuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, transporte  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ../ costos vinculados con las compras de envases y .., otrs costos vinculados con las compras d env y emb", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, seguros ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de envases y embalajes ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Costos Vinculados con las compras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos de extracc\u00edon ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ repuestos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Envases y embalajes / embalajes ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Envases y embalajes / envases ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Envases y embalajes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compras (Gastos por naturaleza)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "COSTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas imputables ...- Gastos financieros imputables a cuentas de existencias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cargas imputables ...- Cargas imputables a cuentas de costos y gastos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas imputables a cuentas de costos y gastos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas cubiertas por provisiones - Cargas cubiertas por provisiones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas cubiertas por provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / existencias de servicios terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costos de producci\u00f3n no absorbido, productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costo de ineficiencia, productos terminados  ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Productos terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / desechos y desperdicios ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros - Categoria de productos 01", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercaderi\u00e1s de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Servicios / relacionadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Servicios / terceros (Costo diferido)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos en proceso ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / existencias por recibir ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materias primas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / mercader\u00edas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / subproductos, desechos y desperdicios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / envases y embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de ventas  ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "INGRESOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente bruto ...- Exdedente bruto (insuficiencia bruta) de explotaci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Excedente bruto (insuficiencia bruta) de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado de explotaci\u00f3n - Resultado de explotaci\u00f3n", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado antes ...- Resultado antes de participaciones e impuestos ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado antes de participaciones e impuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ repuestos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas iinmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercaderias manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ embalajes", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ envases", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Venta - Categoria de productos 01", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias  (perdidas de inventario)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / beneficio de movilidad al trabajador", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaciones extraordinarias", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / asignaci\u00f3n familiar", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / sueldos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / subsidios por enfermedad", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / horas Extras", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaci\u00f3n por riesgo de caja", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de personal ...- Remuneraciones / sueldos y salarios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / vacaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / gratificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / comisiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / remuneraciones en especie", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de pensiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ caja de beneficios de seguridad social del pescador", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de ...- Seguridad .../ seguro complementario de trabajo de riesgo, accidentes de trabajo y enfermedades profesionales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguros particulares de prestaciones de salud - EPS y otros particulares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de prestaciones de salud", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguro de vida", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ contribuciones al SENCICO y el SENATI ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Seguridad y previsi\u00f3n social y otras contribuciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal  ...- Otras Remuneraciones / planilla de movilidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Otras remuneraciones   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Capacitaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ Compensaci\u00f3n por tiempo de servicio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ otros beneficios post-empleo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ pensiones y jubilaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Beneficios sociales de los trabajadores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Indemnizaciones al personal", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Retribuciones al directorio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Atenci\u00f3n al personal  ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compras - Categoria de productos 01", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de personal, directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de ventas   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / verificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de cobranzas   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Producci\u00f3n encargada a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / agua", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / gas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / energ\u00eda el\u00e9ctrica", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios / internet", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / cable", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / radio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / tel\u00e9fono", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios b\u00e1sicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultoria / administrartiva ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / mercadotecnia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / medioambiental ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / legal y tributaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / auditor\u00eda y contable ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / investigaci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Asesor\u00eda y consultor\u00eda ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / relaciones p\u00fablicas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / diarios y revistas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / televisi\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / articulos promocionales", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / radial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / otros medios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Publicidad, publicaciones, relaciones p\u00fablicas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / edificios y locales", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inversi\u00f3n inmoviliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / unidades de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / combustible y lubricantes", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / herramientas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Mantenimiento y reparaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / terrenos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / vigilancia", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / guardian\u00eda", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / conserjer\u00eda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios de contratistas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos de laboratorio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / mantenimiento de cuentas", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / transferencias de fondos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / talonario de cheques", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / otros servicios bancarios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos bancarios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos notariales y de registro ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ legalizaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ tr\u00e1mites judiciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ varios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ centrales de riesgo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Otros servicios prestados por terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ correos  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alojamiento", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alimentaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ otros gastos de viaje ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de pasajeros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de carga", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Transporte, correos .../ transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros -Transporte, correos y gastos de viaje  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de servicios prestados por terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos por tributos - Gobierno regional ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Cotizaciones con car\u00e1cter de tributo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto al patrimonio vehicular ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / licencia de funcionamiento ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / arbitrios municipales y seguridad ciudadana ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto predial ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno local", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENATI ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENCICO", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Otros gastos por tributos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Otros tributos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno central / c\u00e1nones ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / regal\u00edas mineras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a las transacciones financieras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a los juegos de casino y m\u00e1quinas tragamonedas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto general a las ventas y selectivo al consumo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto temporal a los activos netos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno central ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos por tributos   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inversiones inmobiliarias  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos biol\u00f3gicos ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos adquiridos en arrendamiento financiero", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inmuebles, maquinaria y equipo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, intangibles ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Otros ...- Costo neto .../ operaciones discontinuadas, abandono de activos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inversiones inmobiliarias", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos biol\u00f3gicos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inmuebles, maquinaria y equipo", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / intangibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos adquiridos en arrendamiento financiero", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Otros ...- Costo neto ... / Costo neto de enajenaci\u00f3n de activos inmovilizados   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Costo neto de enajenaci\u00f3n de activos inmovilizados y operaciones discontinuadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gastos de investigaci\u00f3n y desarrollo", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Regal\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suministros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos de ...- Seguros / vehiculos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / robo, desfalco", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / contra incendio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Seguros", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Licencias y derechos de vigencia", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gesti\u00f3n medioambiental", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suscripciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / sanciones administrativas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / gastos extraordinarios ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / otros gastos ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / donaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Otros gastos de gesti\u00f3n  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otros gastos de gesti\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Gastos por participaciones en negocios conjuntos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Participaci\u00f3n en los resultados de subsidiarias y afiliadas bajo el m\u00e9todo del valor patrimonial", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Obligaciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / inversiones inmobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / productos terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inmuebles, maquinaria y equipo ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inversi\u00f3n inmoviliaria ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, intangibles ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, activos biol\u00f3gicos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "P\u00e9rdida por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaci\u00f3n en los resultados de subsidiarias y asociadas bajo el m\u00e9todo del valor patrimonial ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaciones en negocios conjuntos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Participaci\u00f3n en resultados de entidades relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Otros gastos financieros / primas por opciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Otros gastos financieros / gastos financieros en medici\u00f3n a valor descontado", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Otros gastos financieros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ emisi\u00f3n y colocaci\u00f3n de instrumentos representativos de deuda y patrimonio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros -  Gastos en operaciones de endeudamiento y otros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones de factoraje / gastos por menor valor ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Gastos en operaciones de factoraje ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones para negociaci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos.../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones comerciales (compra de mercaderia)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ otros instrumentos financieros por pagar (sobre giro bancario)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones tributarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ otras entidades", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ instituciones financieras", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos...- Intereses por pr\u00e9stamos .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones emitidas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Intereses por pr\u00e9stamos y otras obligaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Diferencia de cambio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Descuentos concedidos por pronto pago", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - P\u00e9rdida por instrumentos financieros derivados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros  (gastos en operaciones de endudamiento, intereses,...)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / patentes y propiedad industrial ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Amortizaci\u00f3n de intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de activos biol\u00f3gicos en  producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inversiones inmobiliarias / edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / plusval\u00eda mercantil ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inmuebles maquinaria y equipo   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Deterioro del valor de los activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, terceros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, terceros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de .., cuentas por cobrar al personal, a los accionistas(socios)..", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones mobiliarias, inversiones a ser mantenidas hasta el vencimento ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones ., instrumentos financieros representativos de derecho patrimonial", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Valuaci\u00f3n de activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para gastos de responsabilidad social", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado, costo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del ..., actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para litigios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para reestructuraciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / otras provisiones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Provisiones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmoviliarias / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento financiero .../ edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal   ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ muebles y enseres", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de  explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costos de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Depreciaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y ...- Agotamiento / agotamiento de recursos naturales adquiridos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Agotamiento", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valuaci\u00f3n y deterioro de activos y provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "COSTO DE PRODUCCI\u00d3N "
+         }, 
+         {
+          "name": "OBLIGACIONES FINANCIERAS"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PRIMA POR OPERACIONES DE REPORTO"
+         }, 
+         {
+          "name": "OTROS GASTOS"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "FISCALES"
+         }, 
+         {
+          "name": "ORGANISMOS DE CONTROL"
+         }, 
+         {
+          "name": "MUNICIPALES"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "ACTIVOS NO CORRIENTES "
+         }, 
+         {
+          "name": "CUENTAS POR COBRAR"
+         }, 
+         {
+          "name": "COSTO DE VENTAS"
+         }
+        ], 
+        "name": "P\u00c9RDIDA POR MEDICI\u00d3N DE ACTIVOS NO FINANCIEROS AL VALOR RAZONABLE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ARRENDAMIENTOS"
+         }, 
+         {
+          "name": "POR PUBLICIDAD"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "SEGUROS"
+         }, 
+         {
+          "name": "MATERIALES Y SUMINISTROS"
+         }, 
+         {
+          "name": "SERVICIOS Y MANTENIMIENTO"
+         }, 
+         {
+          "name": "DEPRECIACI\u00d3N"
+         }, 
+         {
+          "name": "AMORTIZACIONES"
+         }, 
+         {
+          "name": "PROVISIONES"
+         }
+        ], 
+        "name": "GASTOS GENERALES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACTIVOS DE EXPLORACI\u00d3N Y EVALUACI\u00d3N MINERA"
+         }, 
+         {
+          "name": "PLUSVAL\u00cdA MERCANTIL (GOODWILL)"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "CUENTAS Y DOCUMENTOS POR COBRAR"
+         }, 
+         {
+          "name": "EXISTENCIAS"
+         }, 
+         {
+          "name": "PROPIEDADES  PLANTA Y EQUIPO"
+         }
+        ], 
+        "name": "GASTOS POR  DETERIORO"
+       }
+      ], 
+      "name": "GASTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ingresos financieros - Ingresos en operaciones de factoraje (factoring)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Dividendos  ", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Participaci\u00f3n en result de subsidiarias y asociadas bajo m\u00e9todo de valor patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Ingresos por participaciones en negocios conjuntos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Participaci\u00f3n en resultados de entidades relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ingresos financieros - Ganancia por instrumento financiero derivado", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Diferencia en Cambio (desajuste)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Descuentos obtenidos por pronto pago", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones disponibles para la venta", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Otras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Ganancia por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos ...- Rendimientos ganados / inversiones a ser mantenidas hasta vencimiento", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / pr\u00e9stamos otorgados (Intereses Moratorios)", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / instrumentos financieros representativos de derecho patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Devengado", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Por Devengar", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / dep\u00f3sitos en instituciones financieras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Rendimientos Ganados (moras e intereses cobrados)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos...- Otros ingresos ... /ingresos financieros  en medici\u00f3n a valor descontado (venta al cr\u00e9dito)", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Otros ingresos financieros", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ingresos financieros    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Activos biol\u00f3gicos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inversiones inmobiliarias", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inmuebles, maquinaria y equipo", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Intangibles", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n activos no financieros al valor razonable - Activo realizable   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado  / inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable - Activo inmovilizado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de intangibles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inversiones inmobiliarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inmuebles, maquinaria y equipo", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de deterioro de cuentas de activos inmovilizados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ... /cuentas de cobranza dudosa", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de existencias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de cuentas de valuaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Alquileres / equipos diversos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / terrenos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / equipo de transporte", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / edificaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos de gesti\u00f3n - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / donaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / reclamos al seguro", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / sudsidios gubernamentales ", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / dividendos de acciones preferentes ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / interes minoritario ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / resultados por exposici\u00f3n a la inflaci\u00f3n ( )", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / ingresos extraordinarios ( )", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros ingresos ...- Otros ingresos  de gesti\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inmuebles, maquinaria y equipo intangible", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ intangibles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos biol\u00f3gicos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones mobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos adquiridos en arrendamiento financiero", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros ingresos ...- Enajenaci\u00f3n de activos inmovilizados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Regalias", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Servicios en beneficio del personal", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Comisiones y corretajes", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Otros ingresos de gesti\u00f3n  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / relacionadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / terceros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Custodia", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES RECIBIDOS DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Titularizaci\u00f3n", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios no inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles no inscritos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Negocios Fiduciarios"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Administrados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Fondos de Inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Administraci\u00f3n de portafolio "
+         }
+        ], 
+        "name": "ADMINISTRACION DE RECURSOS DE TERCEROS"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones concedidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos  / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos, rebajas y bonificaciones obtenidos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones obtenidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen animal  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen vegetal", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n .../ costos de financiaci\u00f3n  inversiones inmobiliarias, edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, maquinaria y equipo, edificaciones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, ..., maquinarias y otros equipos de explotaci\u00f3n ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Costos de financiaci\u00f3n capitalizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / maquinarias y otros equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / otros equipos   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de seguridad", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producc\u00edon de activo ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inversiones inmobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Acreedores por  contra", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Producci\u00f3n de activo inmovilizado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Bienes en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores en garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES PROPIOS EN PODER DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Emisiones no colocadas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "EMISIONES NO COLOCADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Colaterales de las operaciones de reporto burs\u00e1til", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COLATERALES DE LAS OPERACIONES DE REPORTO BURSATIL"
+       }, 
+       {
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de existencias de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos sobre instrumentos financieros derivados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS CUENTAS DE ORDEN DEUDORAS"
+       }, 
+       {
+        "name": "Documentos Endosados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / envases", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / embalajes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / existencias de productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / otros productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos inmuebles en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ desechos y desperdicios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ sub productos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producc\u00edon almacenada - Variaci\u00f3n de productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos inmuebles terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de la producci\u00f3n almacenada", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, terceros   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas - Prestaci\u00f3n de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados - Productos manufacturados    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Productos terminados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ventas - Software", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas agropecuarias y pisc\u00edcolas   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas otras  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas de extracc\u00edon ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas inmuebles  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercaderias relacionadas / mercader\u00edas manufacturadas   ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / mercader\u00edas relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos  inmuebles terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos manufacturados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Productos terminados, relacionadas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos manufacturados ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos inmuebles terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / productos terminados terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas de extracc\u00edon", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas otras", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas inmuebles", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas  - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas     ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas  - Mercader\u00edas terceros", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Devoluciones sobre ventas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, terceros (Venta Diferida)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas terceros - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Mercader\u00edas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ventas (Ingresos)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /diferido", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /corriente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Impuesto a la renta   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - Utilidad", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - P\u00e9rdida", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Determinaci\u00f3n del resultado del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valor agregado - Valor agregado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valor agregado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Margen comercial - Margen comercial", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Margen comercial (Saldos intermediarios de gesti\u00f3n)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de servicios ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de bienes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Producci\u00f3n del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / corriente", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / diferida", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Participaciones de los trabajadores", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Ganancias y Perdidas", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Acreedoras por el contrario", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores entregados - Activos realizables entregados en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / reponsb. por LT o efectos desc. 00.2.000", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / LT/.o efectos descontados 00.1.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables /  bienes en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables / bienes en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cuentas por cobrar   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cartas fianza ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores entregados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a futuro", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Permutas financieras (swap)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compromisos sobre instrumentos financieros derivados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores recibidos - Activos realizables recibidos en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes de uso / bienes recibidos por embargos, 00.5.001", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes de uso / respons. por bienes recib. p, 00.6.001", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso muebles enseres, 00.4.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso equipos diversos, 00.4.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, 00.4.000", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, muebles y enseres, 00.3.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, equipos diversos, 00.3.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, 00.3.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes de uso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes recibidos en pr\u00e9stamo y custodia ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cuentas por cobrar ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cartas fianza", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Valores y bienes recibidos en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores recibidos ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden acreedoras - Diversas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Deudoras por contra ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Permutas financieras (swap) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a futuro ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Derechos sobre instrumentos financieros derivados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden deudoras - Diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / suministros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Bienes dados de baja ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en ejecuci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en tr\u00e1mite ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Contratos aprobados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden deudoras", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Orden", 
+    "root_type": "None"
+   }
+  ], 
+  "name": "Per\u00fa - PCGE 2010", 
+  "root_type": "None"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/pe_pe_chart_template.json b/setup/doctype/company/charts/pe_pe_chart_template.json
new file mode 100644
index 0000000..4409ef0
--- /dev/null
+++ b/setup/doctype/company/charts/pe_pe_chart_template.json
@@ -0,0 +1,11887 @@
+{
+ "name": "Peru - Plan de Cuentas 2011", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Envases ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de Producci\u00f3n - mat. y sum. directos / Materia Prima ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Materiales y Suministros Directos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio del personal", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad por labores", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ uniformes al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ atenciones al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ accident. trab. y enferm. prof", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ asignaci\u00f3n familiar LEY 25129", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ gastos recreativos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ movilidad del personal ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ bonificaci\u00f3n por riesgo de caja ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de prestaciones salud ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ regimen de pensiones ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ seguros de vida LEY 49226", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Gastos adicionales .../ refrigerio al personal ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos adicionales a las remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / horas extras empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n de empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / asignaci\u00f3n familiar ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / trabajos eventuales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones D.S empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / bonificaciones extraordinarias ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / practicas pre-profecionales ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / subsidios por enfermedad ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / aguinaldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones empleados ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / vacaciones obreros ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Otras remuneraciones / gratificaci\u00f3n obreros ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Otras remuneraciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / sueldos ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / salarios ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones / remuneraciones en especie ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Sueldos,salarios,comisiones y otras remuneraciones   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Mano de Obra Directa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Producci\u00f3n - Otros Costos Directos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Mano de Obra Indirecta", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Materiales Auxiliares", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Repuestos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de Producci\u00f3n - mat. y sum. indirectos / Suministros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Materiales y Suministros Indirectos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de Producci\u00f3n - gastos indirectos / Otros Gastos de Producci\u00f3n Indirectos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de Producci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de Producci\u00f3n - Gastos Indirectos - Otros Gastos de Producci\u00f3n Indirectos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de Producci\u00f3n - Gastos de Producci\u00f3n Indirectos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de Producci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de ventas - Publicidad ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Alquiler de locales y servicios basicos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones / sueldos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / comisiones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Sueldos, comisones y otras remuneraciones / remuneraciones en especie", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Sueldos,comisiones y otras remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ accident. trab., enferm. prof y otros seguros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ movilidad y refrigerios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Gastos adicionales .../ atenciones al personal y gastos recreativos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Gastos adicionales a las remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / asignaci\u00f3n familiar y bonificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / vacaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / indemnizaci\u00f3n especiales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / practicas pre-profecionales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / gratificaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras remuneraciones / horas extras", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras remuneraciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Honorarios profecionales ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / embalajes y otros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / telecomunicaciones (telefono, internet,...)", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de ventas - Otras cargas de personal / pasajes aereos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de ventas - Otras cargas de personal ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de ventas - Mantenimiento de inmuebles, maquinarias y equipos ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de ventas - Otros gastos de ventas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de ventas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de administraci\u00f3n - Gastos varios ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Cotizaci\u00f3n, licitaci\u00f3n, donaciones y otros ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de pensiones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraci\u00f3n al directorio ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / telefonos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / practicas pre-profecionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / vacaciones empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / regimen de prestaciones salud ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / aguinaldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / subsidios por enfermedad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / gratificaci\u00f3n de empleados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / horas extras empleados      ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / remuneraciones en especie ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / sueldos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / otras cargas de personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes aereos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / movilidad al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / uniformes al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / capacitaci\u00f3n al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / atenciones al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / refrigerio al personal ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / asignaci\u00f3n familiar ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / envio correspondencia ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / pasajes terrestres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones / bonificaci\u00f3n por riesgo de caja ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Sueldos, comisiones y otras remuneraciones    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Depreciaci\u00f3n y Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Penalidades, tributos y seguros  ", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / gastos notariales, registro y judicial", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / honorarios profesionales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / transferencias de fondos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / mantenimiento, ctas bancarias ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / servicios de seguridad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / otros servicios bancarios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros / talonarios de cheques ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Honorarios profecionales y gastos por servicios de terceros ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquileres varios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. muebles y enseres ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repar. edif. locales ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. repa. herramientas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / combus. lubric. unidades de transp. ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / electricidad ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / agua ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / arrendamiento financiero (leasing) ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / alquiler locales", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos / mante. equipos diversos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos de administraci\u00f3n - Mantenimiento de inmuebles, maquinarias y equipos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de administraci\u00f3n - Publicidad, representaci\u00f3n y otros servicios de personal", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de administraci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses moratorios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / pago tributos y contribuciones ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / comisi\u00f3n tarjeta de credito ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / gastos cheques devueltos ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses SUNAT ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Otras cargas financieras / intereses de leasing", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Otras cargas financieras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses de pagares ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes compensatorio - por cartera", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / perdida por diferencia de cambio", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / descuentos concedidos por pronto pago", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses y gastos de prestamo", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / devolucion de documentos de cobranza", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / interes por Letras en descuento", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses moratorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / cargo intereses compensatorios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses,compra,mercader\u00eda ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / intereses por sobregiros ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Gastos financieros - Interes y gastos financieros / gastos por atrazo, cuotas bancarias", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos financieros - Interes y gastos financieros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros    ", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Centros de Costo", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital - Capital social / acciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital - Capital social / participaciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital - Capital social ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital - Acciones en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Capital (Patrimonio neto)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PASIVOS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones a ser mantenidas hasta el vencimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n de activo ...- Desvalorizaci\u00f3n de inversiones .., inversiones financieras representativas de derecho patrimonial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inversiones mobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / concesiones, licencias y otros derechos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / otros activos intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Intangibles / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de intangibles  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - **Desvalorizaci\u00f3n de activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Desvalorizaci\u00f3n de inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Desvalorizaci\u00f3n ...- Inversiones inmobiliarias / edificaciones ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de activo inmovilizado - Inversiones inmobiliarias  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de activo inmovilizado ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "PATRIMONIO"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Ingresos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Ingresos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Subsidios recibidos diferidos ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Costos diferidos / Categoria de productos 01", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Costos diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, resultados  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Impuesto a la renta diferido / impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Impuesto a la renta diferido ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / patrimonio ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Participaciones de los trabajadores diferidas / resultados ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pasivo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Pasivo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo diferido - Ganancia en venta con arrendamiento financiero paralelo ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Pasivo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ gerentes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ directores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar al personal, a los accionistas (socios).../ personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, relacionadas / letras por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - ** Cuentas por cobrar comerciales, relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, relacionadas / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / reclamaciones a terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / intereses, r\u00e9galias y dividendos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / activos por instrumentos financieros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / otras cuentas por cobrar diversas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros / venta de activo inmovilizado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar diversas, terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / letras por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Estimaci\u00f3n de ...- Cuentas por cobrar comerciales, terceros / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Estimaci\u00f3n de cuentas de cobranza dudosa - Cuentas por cobrar comerciales, terceros ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Estimaci\u00f3n de cuentas de cobranza dudosa", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Agotamiento acumulado / agotamiento de reservas de recursos extra\u00edbles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Agotamiento acumulado  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n, ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n, costos de exploraci\u00f3n y desarrollo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costos de financiaci\u00f3n  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, patentes y propiedad industrial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, otros activos intangibles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Amortizaci\u00f3n acumulada / intangibles, costo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Amortizaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n,costo de financiacion, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo de financiaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, costo, equipos diversos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, costo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias, edificaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen vegetal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos biol\u00f3gicos en producci\u00f3n, costo, activos biol\u00f3gicos de origen animal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, maquinarias y equipos de explotaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, edificaciones ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, equipo de transporte ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, herramientas y unidades de reemplazo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ inmuebles, maquinaria y equipo, revaluaci\u00f3n, muebles y enseres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos diversos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipos de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento financiero, inversiones inmobiliarias, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n .../ activos adquiridos en arrendamiento ..., inmuebles, maquinaria y equipo de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depreciaci\u00f3n ...- Depreciaci\u00f3n ../ activos adquiridos en arrendamiento financiero, inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Depreciaci\u00f3n, amortizaci\u00f3n ...- Depreciaci\u00f3n acumulada / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados - Depreciaci\u00f3n acumulada ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Depreciaci\u00f3n, amortizaci\u00f3n y agotamiento acumulados  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones - Provisi\u00f3n para reestructuraciones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Otras provisiones ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para litigios   ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para garant\u00edas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para gastos de responsabilidad social ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Provisiones    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n / matriz", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Costos de financiaci\u00f3n  / sucursales ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Costos de financiaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos / asociadas ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Anticipos recibidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacianadas - Pr\u00e9stamos / sucursales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / asociadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pr\u00e9stamos  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / matriz ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas / sucursales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Regal\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / otras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / sucursales  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos  / subsidiarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / asociadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar diversas, relacionadas - Dividendos / matriz ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Dividendos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por .../ otras cuentas por pagar diversas, otras  ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas / otras cuentas por pagar diversas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos biol\u00f3gicos, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, otras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, matriz", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones inmobiliarias, sucursales", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones inmobiliarias ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ activos adquiridos en arrendamiento financiero, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inmuebles, maquinaria y equipo, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, otras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ intangibles, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, sucursales  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo .../ inversiones mobiliarias, otras ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar diversas ...- Pasivo por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, relacionadas - Pasivo por compra de activo inmovilizado ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, relacionadas ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Unidades de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "DISPONIBLES PARA LA VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inversiones mantenidas hasta el vencimiento ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pr\u00e9stamos y partidas a cobrar", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Acciones y participaciones"
+         }
+        ], 
+        "name": "INVERSIONES MANTENIDAS HASTA EL VENCIMIENTO "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar a terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar al originador", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y Documentos a cobrar a terceros"
+         }
+        ], 
+        "name": "PRESTAMOS Y PARTIDAS A COBRAR "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuotas de fondos colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de  titularizaci\u00f3n de participaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones y participaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta variable"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones en el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Forward", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Futuros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Opciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Derivados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones Convertibles en acciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Overnights", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Notas de Cr\u00e9dito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos a Plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Letras de Cambio", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "P\u00f3lizas de Acumulaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Facturas Comerciales Negociables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pagar\u00e9s", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos del Banco Central ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cupones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Dep\u00f3sito", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Avales", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos de Prenda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Bonos del Estado", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados Financieros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "C\u00e9dulas Hipotecarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Tesorer\u00eda", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Certificados de Inversi\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Renta Fija"
+         }
+        ], 
+        "name": "A VALOR RAZONABLE CON CAMBIOS EN RESULTADOS"
+       }, 
+       {
+        "name": "Caja y Bancos - Valores a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y Bancos.../ BCO. CTA CTE PAB"
+         }
+        ], 
+        "name": "Caja y Bancos - Bancos"
+       }, 
+       {
+        "name": "Caja y Bancos - Recaudaciones a Depositar "
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado / valor razonable  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos o garantizados por el Estado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por el sistema financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / otros t\u00edtulos representativos de deuda", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / valores emitidos por empresas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones al valor razonable / participaciones en entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable ...- Inversiones al valor razonable ** Inversiones mantenidas para negociaci\u00f3n     ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Activos financieros / compromiso de compra / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Fondos fijos / caja menuda 01 PAB"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Activos financieros / compromiso de compra", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado /valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado / costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos o garantizados por el Estado eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por empresas eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda / valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / otros t\u00edtulos representativos de deuda eh", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero / valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones al valor ...- Inversiones disponibles para la venta / valores emitidos por el sistema financiero eh", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y Bancos - Caja / efectivo USD"
+         }
+        ], 
+        "name": "Inversiones al valor razonable y disponibles ...- Inversiones disponibles para la venta", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones al valor razonable y disponibles para la venta ** Inversiones financieras", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cartera, asociadas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar...- Letras por cobrar / en cartera", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en  cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Letras por cobrar / en descuento, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / sucursales", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos / matriz ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos / anticipos recibidos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Anticipos recibidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en descuento, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ en cobranza, otros", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ no emitidas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros ... / no emitidas, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por... - Facturas, boletas y otros .../ no emitidas, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por ...- Facturas, boletas y otros .../ emitidas en cartera, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Facturas, boletas y otros comprobantes por cobrar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Accionistas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Intereses Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Alquileres Pagados por Adelantado", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / Anticipo al Personal", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar   ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar comerciales ...- Cobranza dudosa", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otras Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Comisiones por cobrar ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar a terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Dividendos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RENDIMIENTOS POR COBRAR"
+       }, 
+       {
+        "name": "DERECHOS POR COMPROMISO DE RECOMPRA"
+       }, 
+       {
+        "name": "ANTICIPO A CONSTRUCTOR POR AVANCE DE OBRA"
+       }, 
+       {
+        "name": "ANTICIPO COMITENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Al Originador", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Puestos inactivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por servicios burs\u00e1tiles"
+         }, 
+         {
+          "name": "Asesor\u00eda"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contrato de Underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Extraburs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Operaciones  Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Por  Manejo de Fideicomisos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Contratos de Administraci\u00f3n Portafolio de Terceros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Fondos Administrados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Encargos Fiduciarios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por comisiones de administraci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por  administraci\u00f3n y manejo"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valores Materializados", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Manejo de Libro de Acciones y Accionistas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores Desmaterializados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Por Custodia y Conservaci\u00f3n de Valores"
+         }, 
+         {
+          "name": "Otras comisiones"
+         }
+        ], 
+        "name": "COMISIONES POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "A Terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "A Personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DOCUMENTOS POR COBRAR"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / no emitidas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en cobranza", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Facturas, boletas y otros comprobantes por cobrar / emitidas en cartera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Facturas, boletas y otros comprobantes por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Cuotas Iniciales", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes - Adelantos o Separaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Anticipos de clientes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en descuento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cartera ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Letras por cobrar / en cobranza ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Letras por cobrar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / Deudores Varios"
+       }, 
+       {
+        "name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Incobrables"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / letras por cobrar  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / facturas, boletas y otros comprobantes por cobrar ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar ..., terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }, 
+       {
+        "name": "PROVISIONES PARA CUENTAS POR COBRAR"
+       }
+      ], 
+      "name": "Cuentas por cobrar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PRODUCTOS TERMINADOS"
+       }, 
+       {
+        "name": "PRODUCTOS EN PROCESO"
+       }, 
+       {
+        "name": "MATERIA PRIMA"
+       }, 
+       {
+        "name": "MATERIALES Y SUMINISTROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Gerentes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / suscripciones por cobrar a socios o accionistas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Accionistas (o socios) / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Accionistas o (socios) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / entregas a rendir cuentas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / adelanto de dietas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ... - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Personal / entregas a rendir cuenta", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / adelanto de remuneraciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Personal / otras cuentas por cobrar al personal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Personal", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / accionistas (o socios) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / directores ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / personal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / gerentes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar al personal, a los accionistas ...- Diversas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "PROVISI\u00d3N POR DETERIORO DE EXISTENCIAS"
+       }
+      ], 
+      "name": "Cuentas por cobrar al personal, a los accionistas (socios), directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y  equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Venta de activo inmovilizado ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, sucursal ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas, asociadas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos /  dividendos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses , asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, subsidiarias ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses, sucursal ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Intereses, r\u00e9galias y dividendos / intereses", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Interes\u00e9s, regal\u00edas y dividendos   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Activo Intangible / Concesiones y Franquicias", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, matriz", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, asociadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, otros", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, subsidiarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda, sucursal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVOS ADQUIRIDOS EN ARRENDAMIENTO FINANCIERO"
+       }, 
+       {
+        "name": "CONSTRUCCIONES EN CURSO "
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PLUSVAL\u00cdA MERCANTIL (Goodwill)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROPIEDADES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Programas de computaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reservas de recursos extra\u00edbles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patentes y propiedad industrial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTANGIBLES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades"
+         }, 
+         {
+          "name": "Plusval\u00eda mercantil (Goodwill) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS NO CORRIENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas a Largo Plazo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, relacionadas - Otras cuentas por cobrar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por cobrar diversas, relacionadas - Activos por instrumentos financieros derivados", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros primarios   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / instrumento de cobertura", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos finacieros derivados / cartera de negociaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar ...- Activos por instrumentos financieros / instrumentos financieros derivados  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Activos por instrumentos financieros   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / entregas a rendir cuenta a terceros  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas a Largo Plazo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas / otras cuentas por cobrar diversas    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas - Otras cuentas por cobrar diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / pr\u00e9stamos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / intereses, regal\u00edas y dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / otras cuentas por cobrar diversas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / dep\u00f3sitos otorgados en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / reclamaciones a terceros ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Cobranza dudosa / venta de activos inmovilizados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Cobranza dudosa ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACTIVO NO CORRIENTE DISPONIBLE PARA LA VENTA"
+       }, 
+       {
+        "name": "UNIDADES DE PARTICIPACION"
+       }, 
+       {
+        "name": "ACTIVO POR IMPUESTO CORRIENTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / dep\u00f3sitos en garant\u00eda por alquileres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones no financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / pr\u00e9stamos de instituciones financieras  ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Dep\u00f3sitos otorgados en garant\u00eda / otros dep\u00f3sitos en garant\u00eda ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Dep\u00f3sitos otorgados en garant\u00eda", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n mobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / activos biol\u00f3gicos    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / inversi\u00f3n inmobiliaria", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Venta de activo inmovilizado / intangibles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Venta de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / con garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Pr\u00e9stamos / sin garant\u00eda  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Pr\u00e9stamos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / Compa\u00f1\u00edas aseguradoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / transportadoras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / tributos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / otras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Reclamaciones a terceros / servicios p\u00fablicos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Reclamaciones a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / intereses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / dividendos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cuentas por cobrar ...- Intereses, regal\u00edas y dividendos / regal\u00edas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cuentas por cobrar diversas, terceros - Intereses, regal\u00edas y dividendos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "OTROS"
+       }
+      ], 
+      "name": "Cuentas por cobrar diversas, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Servicios y otros contratados por anticipado - Interes\u00e9s ** Costos financieros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo por impuesto diferido  ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ACTIVO POR IMPUESTO DIFERIDO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuota patrimonial bolsa de valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acciones Dep\u00f3sito Centralizado de Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuota patrimonial bolsa de valores"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por reporto", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dep\u00f3sitos en Garant\u00eda por operaciones burs\u00e1tiles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Dep\u00f3sitos en Garant\u00eda"
+         }
+        ], 
+        "name": "OTROS ACTIVOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Mantenimiento de activos inmovilizados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Otros gastos contratados por anticipado ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "ACTIVOS DE EXPLORACION Y EVALUACION MINERA"
+       }, 
+       {
+        "name": "DERECHOS FIDUCIARIOS"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Primas pagadas por opciones ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos en arrendamiento financiero", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Propiedades de inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Equipo de Computaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinaria y Equipo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y enseres ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Edificios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos de exploraci\u00f3n y evaluaci\u00f3n minera", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DEPRECIACION ACUMULADA"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Alquileres ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Servicios y otros contratados por anticipado - Seguros ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concesiones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Licencias", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AMORTIZACION ACUMULADA"
+       }
+      ], 
+      "name": "Servicios y otros contratados por anticipado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Caja y bancos - Caja / efectivo USD ($)", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y bancos - Caja / efectivo PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Caja", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y .../ BCO. CTA CTE PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Cuentas corrientes en instituciones finacieras  / cuentas corrientes operativas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Caja y ...- Cuentas corrientes en instituciones financieras / cuentas corrientes para fines espec\u00edficos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Cuentas corrientes en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Fondos fijos / caja chica 01 PEN (S/.)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Fondos fijos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos a plazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Dep\u00f3sitos en instituciones financieras / dep\u00f3sitos de ahorro", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Dep\u00f3sitos en instituciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja y ...- Certificados bancarios / certificados bancarios ** otros equivalentes de efectivos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Caja y ...- Certificados bancarios / otros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Caja y bancos - Certificados bancarios **Otros equivalentes de efectivos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / BN CTA DETRACCIONES PEN (S/.)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja y ...- Fondos sujetos a restricci\u00f3n / fondos sujetos a restricci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cajas y bancos - Fondos sujetos a restricci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Caja y bancos - Efectivo en tr\u00e1nsito ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Banco Central del Ecuador"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fondos rotativos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras monedas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Moneda de curso legal", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Caja"
+         }, 
+         {
+          "name": "Instituciones financieras"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cta. Cte. Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Ahorros Moneda de curso legal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta. Cte. En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cta Ahorros En el exterior", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Otras Instituciones Financieras"
+         }
+        ], 
+        "name": "ACTIVO DISPONIBLE"
+       }
+      ], 
+      "name": "Caja y bancos  (Activo disponible y exigible) - Efectivo y equivalentes de efectivos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos manufacturados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias ...- Materias primas desvalorizadas / materias primas para productos de extracci\u00f3n", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materias primas - Materias primas desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Salarios por Pagar / Retenciones a Depositar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Sueldos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos manufacturados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Salarios por Pagar / Provisi\u00f3n para Sueldo Anual Complementario", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Salarios por Pagar / Cargas Sociales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materias primas - Materias primas para productos agropecuarios y pisc\u00edcolas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materias primas   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras Cuentas por Pagar / Cobros por Adelantado", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Acreedores Varios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Otras Cuentas por Pagar / Honorarios Directores y S\u00edndicos a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / lubricantes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / combustibles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / energ\u00eda ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, suministros ...- Suministros / otros suministros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Suministros ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materiales auxiliares, suministros y repuestos - Repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / materiales auxiliares", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / suministros    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales auxiliares, ...- Materiales auxiliares, suministros y repuestos desvalorizados / repuestos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Materiales auxiliares, suministros y repuestos - Materiales auxiliares, suministros y repuestos desvalorizados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Materiales auxiliares, suministros y  repuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n para juicios Pendientes", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Envases y ...- Envases y embalajes desvalorizados / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Envases y embalajes - Envases y embalajes desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Envases y embalajes - Embalajes", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Envases y embalajes - Envases", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Envases y embalajes     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / terrenos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / muebles y enseres ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inmuebles, maquinaria y equipo / equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / edificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Inversiones inmoviliarias / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / patentes y propiedad industrial ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / programas de computadora (software) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Intangibles / reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n, costos de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en producci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inversi\u00f3n inmoviliaria", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, revaluaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de adquisici\u00f3n o construcci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ herramientas y unidades de reemplazo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes ...- Depreciaci\u00f3n acumulada.../ equipo de transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Depreciaci\u00f3n acumulada, inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, concesiones, licencias y derechos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, otros activos intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles, patentes y propiedad industrial  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software), costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, costos de exploraci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos ... - Amortizaci\u00f3n acumulada, intangibles, reservas de recursos extra\u00edbles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Amortizaci\u00f3n acumulada, intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipos diversos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, equipo de transporte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, herramientas y unidades de reemplazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo, muebles y enseres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n .../ inmuebles, maquinaria y equipo, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, terrenos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / inversi\u00f3n inmobiliaria", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, patentes y propiedad industrial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, reservas de recursos extra\u00edbles ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, f\u00f3rmulas, dise\u00f1os y prototipos ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, programas de computadora (software)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / intangibles, concesiones, licencias y otros derechos ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos no corrientes mantenidos ...- Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos, activos biol\u00f3gicos en producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos no corrientes mantenidos para la venta - Desvalorizaci\u00f3n acumulada", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos no corrientes mantenidos para la venta    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mercade...- Mercader\u00edas .../ mercader\u00edas manufacturadas, costo - Categoria de productos 01", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Mercade...- Mercader\u00edas .../ Mercader\u00edas manufacturadas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Mercader\u00edas - Mercader\u00edas manufacturadas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas manufacturadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / recursos extra\u00eddos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercade...- Mercader\u00edas desvalorizadas / mercader\u00edas manufacturadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercaderias desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen vegetal ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas / de origen animal", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mercader\u00edas - Mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas inmuebles ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Otras mercader\u00edas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mercader\u00edas - Mercader\u00edas de extracci\u00f3n ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Mercader\u00edas  (Activo realizable)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Productos terminados - Productos de extracci\u00f3n terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Anticipos de Clientes"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen animal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas terminados / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos terminados - Productos agropecuarios y pisc\u00edcolas terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por Pagar / Proveedores"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / otros productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos inmuebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos terminados desvalorizados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos terminados - Productos terminados desvalorizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos terminados - Productos inmuebles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Productos manufacturados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Otros productos terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Costos de financiaci\u00f3n, productos terminados", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos terminados - Existencias de servicios terminados ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Participaciones de los trabajadores en utilidades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Beneficios a empleados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aportes y descuentos al IESS", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondo reserva del IESS", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES PATRONALES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Proveedores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Acreedores Varios", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por administraci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras comisiones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Dividendos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Comisiones por pagar ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por Operaciones Burs\u00e1tiles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Por custodia", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Deuda Sector No Financiero"
+         }
+        ], 
+        "name": "PASIVO NO FINANCIERO"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligaciones por Arrendamiento Financiero ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Papel Comercial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores de Titularizaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras En el exterior", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Valores", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "A valor razonable con cambios en resultados"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compa\u00f1\u00edas relacionadas / vinculadas", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Administradores", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Accionistas", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Relacionadas"
+         }, 
+         {
+          "name": "Pasivos por compra de activos no corrientes"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intereses por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Obligaciones por contratos de underwriting", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Porci\u00f3n corriente de deuda a largo plazo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sobregiros bancarios", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Obligaciones financieras"
+         }, 
+         {
+          "name": "Otros pasivos financieros"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9stamos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Otras cuentas y documentos por pagar", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Anticipos recibidos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas y documentos por pagar"
+         }
+        ], 
+        "name": "PASIVOS FINANCIEROS"
+       }, 
+       {
+        "name": "OTROS PASIVOS CORRIENTES"
+       }, 
+       {
+        "name": "ACREEDORES POR INTERMEDIACION            "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Litigios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Indemnizaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Obligaciones Judiciales", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SANCIONES Y MULTAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Impuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Retenciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Contribuciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OBLIGACIONES TRIBUTARIAS"
+       }
+      ], 
+      "name": "Productos  terminados", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pasivo Circulante / Debentures Emitidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / subproductos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Subproductos ...- Subproductos, desechos y desperdicios desvalorizados / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Subproductos, desechos y desperdicios - Subproductos, desechos y desperdicios desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Pasivo Circulante / Intereses a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Obligaciones a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Prestamos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pasivo Circulante / Adelantos en Cuenta Corriente", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Desechos y desperdicios", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses diferidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Pasivos por impuestos diferidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PASIVOS DIFERIDOS"
+       }, 
+       {
+        "name": "Subproductos, desechos y desperdicios - Subproductos ", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Subproductos, desechos y desperdicios   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DEUDA SECTOR FINANCIERO"
+       }, 
+       {
+        "name": "Productos en proceso - Productos extra\u00eddos en proceso de transformaci\u00f3n", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / costos de financiaci\u00f3n, productos en proceso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / otros productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos ...- Productos en proceso desvalorizados / existencias de servicios en proceso", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Productos en proceso - Productos en proceso desvalorizados", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto sobre los Bienes Personales a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Deudas Fiscales / Monotributo a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / ITBMS a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impuestos por Pagar / Impuesto sobre la Renta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Productos en proceso - Productos inmuebles en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Costos de financiaci\u00f3n, productos en proceso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Deudas Fiscales / Impuesto a la Ganancia M\u00ednima Presunta a Pagar", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen vegetal, costo   ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, valor razonable   ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas .../ de origen animal, costo    ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Productos ...- Productos agropecuarios y pisc\u00edcolas en proceso / de origen animal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Productos en proceso - Productos agropecuarios y pisc\u00edcolas en proceso", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Productos en proceso - Otros productos en proceso ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Productos en proceso de manufactura", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Productos en proceso - Existencias de servicios en proceso", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Productos en  proceso ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Existencias por recibir - Mercader\u00edas / Categoria de productos 01", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Mercader\u00edas ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materias primas ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materiales auxiliares, suministros y repuesto", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / mercader\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Existencias por ...- Existencias por recibir desvalorizadas / materias primas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Existencias por recibir - Existencias por recibir desvalorizadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Existencias por recibir - Materiales auxiliares, suministros y repuestos ", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Existencias por recibir - Envases y embalajes", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Existencias por recibir   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / materias primas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / envases y embalajes ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Existencias por recibir / mercader\u00edas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Existencias por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / costos de financiaci\u00f3n, productos en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / existencias de servicios en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos inmuebles en proceso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos en proceso / otros productos en proceso ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / otros productos terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos manufacturados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / costos de financiaci\u00f3n, productos terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / existencias de servicios terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Productos terminados / productos inmuebles ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Productos terminados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Mercader\u00edas / mercader\u00edas de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / suministros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / repuestos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materiales auxiliares, suministros y repuestos / materiales auxiliares ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / embalajes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Envases y embalajes / envases", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Envases y embalajes ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos agropecuarios y pisc\u00edcolas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos manufacturados    ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos inmuebles ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Materias primas / materias primas para productos de extracci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / subproductos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Desvalorizaci\u00f3n ...- Subproductos, desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Desvalorizaci\u00f3n de existencias - Subproductos, desechos y desperdicios ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Desvalorizaci\u00f3n de existencias    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros activos - Bienes de arte y cultura / obras de arte ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / biblioteca", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Bienes de arte y cultura / otros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Bienes de arte y cultura ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros activos - Diversos / otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes recibidos en pago (adjudicados y realizables) ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / bienes entregados en comodato ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros activos - Diversos / monedas y joyas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Otros activos - Diversos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "ACUMULADOS"
+       }, 
+       {
+        "name": "UTILIDAD (PERDIDA) DEL EJERCICIO"
+       }, 
+       {
+        "name": "RESULTADOS ACUMULADOS POR APLICACI\u00d3N DE LAS NIIF POR PRIMERA VEZ"
+       }
+      ], 
+      "name": "Otros activos    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / maquinaria en montaje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inversiones inmobiliarias, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / otros activos en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / construcciones en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / inversi\u00f3n inmobiliaria en curso ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Construcciones y .../ costo de financiaci\u00f3n, inmuebles, maquinaria y equipo, costo de financiaci\u00f3n, edificaci...", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmue...- Constru.../ costo de financiaci\u00f3n, inmuebles, maquinaria y ..., C de F, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / costo de financiaci\u00f3n, inmuebles maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso / adaptaci\u00f3n de terrenos ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Construcciones y obras en curso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipos diversos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / herramientas y unidades de reemplazo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / muebles y enseres", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles, maquinaria y equipo - Unidades por recibir / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Unidades por recibir ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / muebles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / muebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Muebles y enseres / enseres, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Muebles y enseres / enseres", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Muebles y enseres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos no motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos no motorizados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Unidades de transporte / veh\u00edculos motorizados, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Unidades de transporte / veh\u00edculos motorizados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - ** Unidades de transporte ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / herramientas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / herramientas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Herramientas y unidades de reemplazo / unidades de reemplazo, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo / unidades de reemplazo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Herramientas y unidades de reemplazo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Terrenos / terrenos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Terrenos / terrenos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos .., costo de financiaci\u00f3n, maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Maquinarias y equipos .../ maquinarias y equipos de explotaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Maquinarias y equipos de explotaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / otros equipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / otros equipos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo para procesamiento de informaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo para procesamiento de informaci\u00f3n (de c\u00f3mputo) ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de comunicaci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, ...- Equipos diversos / equipo de seguridad, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Equipos diversos / equipo de seguridad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Equipos diversos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de financiaci\u00f3n, almacenes", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / almacenes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / almacenes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de financiaci\u00f3n, edificaciones para producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones para producci\u00f3n, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones para producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, costo de financiaci\u00f3n, instalaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / instalaciones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / instalaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de financiaci\u00f3n, edificaciones", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, costo de adquisici\u00f3n o construcci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inmuebles, maquinaria ...- Edificaciones / edificaciones administrativas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inmuebles, maquinaria y equipo - Edificaciones / edificaciones administrativas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inmuebles, maquinaria y equipo - Edificaciones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inmuebles, maquinaria y equipo   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / edificaciones ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / terrenos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / herramientas y unidades de reemplazo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inmuebles, maquinaria y equipo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / terrenos ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activos adquiridos ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activos adquiridos en arrendamiento financiero - Inversiones inmobiliarias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos adquiridos en arrendamiento financiero   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Capital / Dividendos a Distribuir en Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, costos de financiaci\u00f3n, inversiones inmobliarias", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Edificaciones / edificaciones, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Edificaciones /  edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Edificaciones ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / rurales, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / rurales, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / rurales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Terrenos / urbanos, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Terrenos / urbanos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones inmobiliarias - Terrenos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "PATRIMONIO DE LOS NEGOCIOS FIDUCIARIOS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Patrimonio del fondo colectivo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patrimonio del fondo administrado", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "PATRIMONIO DE LOS FONDOS DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "PAGADO"
+       }, 
+       {
+        "name": "ACCIONES EN TESORER\u00cdA"
+       }, 
+       {
+        "name": "FONDO PATRIMONIAL"
+       }
+      ], 
+      "name": "Inversiones inmobiliarias   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ instrumentos financieros representativos de derecho ..., acuerdo de compra ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inversiones ...- Desvalorizaci\u00f3n de inversiones .../ inversiones a ser mantenidas hasta el vencimiento, acuerdo de compra", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Desvalorizaci\u00f3n de inversiones mobiliarias ** acuerdos de compra ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por el sistema financiero", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos por las empresas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a ../ instrumentos ., otros t\u00edtulos representativos de deuda **valores emitidos por otras entidades", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Inversiones a .../ instrumentos financieros ...de deuda, valores emitidos o garantizados por el estado ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Inversiones a ser mantenidas hasta el vencimiento / instrumentos financieros representativos de deuda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Inversiones a ser mantenidas hasta el vencimiento", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ otros t\u00edtulos representativos de patrimonio, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros representativos de .../ otros t\u00edtulos representativos de patrimonio, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho patrimonial / otros t\u00edtulos representativos de patrimonio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n y consorcios, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros  .../ participaciones en asociaciones en participaci\u00f3n ..., participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ participaciones en asociaciones en participaci\u00f3n y consorcios", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos mutuos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de participaci\u00f3n de fondos mutuos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ certificados de participaci\u00f3n de fondos de inversi\u00f3n, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ **certificados de participaci\u00f3n de fondos de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, participaci\u00f3n patrimonial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, comunes, valor razonable", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones representativas de capital social, comunes", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos .../ acciones representativas de capital social, preferentes, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones representativas de capital social, preferentes, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de .../ acciones representativas de capital social, preferentes ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, participaci\u00f3n patrimonial ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Inversiones ...- Instrumentos financieros .../ acciones de inversi\u00f3n, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ acciones de inversi\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Inversiones ...- Instrumentos financieros representativos de derecho .../ certificados de suscripci\u00f3n preferente", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Inversiones mobiliarias - Instrumentos financieros representativos de derecho patrimonial ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Inversiones mobiliarias (Activo inmovilizado)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en medici\u00f3n a valor descontado", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Intereses diferidos / intereses no devengados en transacciones con terceros ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Intereses diferidos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, patrimonio ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Impuesto a la renta diferido, impuesto a la renta diferido, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Impuesto a la renta diferido", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, patrimonio   ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Activo diferido - Participaciones de los trabajadores .../ participaciones de los trabajadores diferidas, resultados ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Activo diferido - Participaciones de los trabajadores diferidas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activo diferido ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Utilidades y P\u00e9rdidas del Ejercicio", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, valor razonable  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen animal", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, valor razonable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal, costo de financiaci\u00f3n  ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en desarrollo / de origen vegetal ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, costo de financiaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal, valor razonable ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen vegetal ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, valor razonable ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Activos ...- Activos biol\u00f3gicos en producci\u00f3n / de origen animal  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Activos biol\u00f3gicos - Activos biol\u00f3gicos en producci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Activos biol\u00f3gicos     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "OTRAS RESERVAS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, costo ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ licencias, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / licencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ concesiones, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / concesiones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Concesiones, licencias .../ otros derechos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Concesiones, licencias y otros derechos / otros derechos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Concesiones, licencias y otros derechos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / marcas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / marcas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Patentes y propiedad industrial / patentes, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Patentes y propiedad industrial / patentes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Patentes y propiedad industrial ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Programas de computadora / aplicaciones inform\u00e1ticas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Programas de computadora (software) ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Otros activos intangibles / otros activos intangibles, costo ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Otros activos intangibles / otros activos intangibles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Otros activos intangibles ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "RESERVA LEGAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reserva por valuaci\u00f3n Propiedades", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Reserva por Valuaci\u00f3n Activos Financieros Disponibles para la Venta", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "RESERVA POR VALUACI\u00d3N"
+       }, 
+       {
+        "name": "RESERVA FACULTATIVA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de exploraci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo, costo de financiaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo / costos de desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Costos de exploraci\u00f3n y desarrollo ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, revaluaci\u00f3n ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / dise\u00f1os y prototipos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos / f\u00f3rmulas ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - F\u00f3rmulas, dise\u00f1os y prototipos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / madera, costo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / madera  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / petr\u00f3leo y gas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles/ minerales ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, costo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles, revaluaci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Intangibles - Reservas de recursos extra\u00edbles / otros recursos extra\u00edbles ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Intangibles - Reservas de recursos extra\u00edbles ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intangibles - Plusval\u00eda mercantil / plusval\u00eda mercantil ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Intangibles - Plusval\u00eda mercantil ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Intangibles   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar diversas, terceros - D\u00e9positos recibidos en garant\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos adquiridos en arrendamientos financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones inmoviliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inmuebles, maquinaria y equipo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / inversiones mobiliarias ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Pasivos por compra de activo inmovilizado / intangibles ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por compra de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Pasivos financieros, compromiso de venta ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "INGRESOS DE ACTIVOS POR IMPUESTOS DIFERIDOS"
+       }, 
+       {
+        "name": "Cuentas por pagar diversas, terceros - Reclamaciones de terceros ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / otras cuentas por pagar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / donaciones condicionadas  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Otras cuentas por pagar diversas / subsidios gubernamentales  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Otras cuentas por pagar diversas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros primarios  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, cartera de negociaci\u00f3n ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros .../ instrumentos financieros derivados, instrumentos de cobertura ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Pasivos por instrumentos financieros / instrumentos financieros derivados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar diversas, terceros - Pasivos por instrumentos financieros   ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar diversas, terceros ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Directores / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Directores / dietas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Directores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Gerentes ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "UTILIDAD POR OPERACIONES DESCONTINUADAS"
+       }, 
+       {
+        "name": "OTRAS UTILIDADES EN VENTAS"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE VALORES"
+       }, 
+       {
+        "name": "UTILIDAD EN VENTA DE PROPIEDAD"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Largo Plazo", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos a Corto Plazo", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Accionistas / pr\u00e9stamos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / dividendos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Accionistas / otras cuentas por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar a los accionistas, directores y gerentes - Accionistas (o socios) ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar a los accionistas(socios), directores y gerentes ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / contratos de arrendamiento financiero ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos emitidos   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, bonos titulizados  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas, otras obligaciones ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / obligaciones emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, instituciones financieras", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ pr\u00e9stamos de instituciones financieras y otras entidades, otras entidades ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / pr\u00e9stamos de instituciones financieras y otras entidades ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, pagar\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, letras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, facturas conformadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, otras obligaciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, papeles comerciales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Obligaciones ...- Costos de .../ otros instrumentos financieros por pagar, bonos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar / otros instrumentos  financieros por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Obligaciones financieras - Costos de financiaci\u00f3n por pagar  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / otras entidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones ...- Pr\u00e9stamos de instituciones financieras y otras entidades / instituciones financieras    ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Pr\u00e9stamos de instituciones financieras y otras entidades   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero a Largo Plazo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Contratos de arrendamientos financiero parte Corriente", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Contratos de arrendamientos financiero  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos emitidos  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / bonos titulizados ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Obligaciones emitidas / otras obligaciones", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Obligaciones emitidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / pagar\u00e9s ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / letras ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / facturas conformadas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / bonos ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / papeles comerciales ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Obligaciones financieras - Otros instrumentos financieros por pagar / otras obligaciones financieras  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Obligaciones financieras - Otros instrumentos financieros por pagar    ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Obligaciones financieras - Pr\u00e9stamos con compromisos de recompra ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "OBLIGACIONES FINANCIERAS"
+       }, 
+       {
+        "name": "ACTIVOS BIOL\u00d3GICOS"
+       }, 
+       {
+        "name": "CUENTAS POR COBRAR"
+       }, 
+       {
+        "name": "PROPIEDADES DE INVERSI\u00d3N"
+       }, 
+       {
+        "name": "ACTIVOS NO CORRIENTES"
+       }
+      ], 
+      "name": "Obligaciones financieras  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Honorarios por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Anticipos a proveedores", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inscripciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mantenimiento de Inscripci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Comisiones en operaciones ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS BURS\u00c1TILES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Portafolio de terceros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por representaci\u00f3n de obligacionistas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR PRESTACI\u00d3N DE SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tiles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERMEDIACI\u00d3N DE VALORES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores materializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y liquidaci\u00f3n de valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO\n        COMPENSACI\u00d3N Y LIQUIDACI\u00d3N"
+       }, 
+       {
+        "name": "OTRAS COMISIONES GANADAS"
+       }, 
+       {
+        "name": "Cuentas por pagar comerciales, terceros - Letras por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, terceros - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ganancia Venta de Activo Fijo", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Recupero de Deudores Incobrables", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta Inversiones Permanentes", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Donaciones obtenidas, ganandas, percibidas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, otros", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, matriz ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, subsidiarias ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar, sucursales ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar / letras por pagar  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Letras por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, asociadas ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, matriz ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, otros ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, sucursales ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados, subsidiarias ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados / anticipos otorgados ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Anticipos otorgados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta p\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INGRESOS POR ESTRUCTURACI\u00d3N"
+       }, 
+       {
+        "name": "INGRESOS POR ASESORIA"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar, otros", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar / honorarios por pagar ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Honorarios por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, asociadas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, matriz  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas, subsidiarias ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / no emitidas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, otros ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, subsidiarias", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, sucursales ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, asociadas", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas, matriz", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Cuentas por pagar ...- Facturas, boletas y otros comprobantes por pagar / emitidas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Cuentas por pagar comerciales, relacionadas - Facturas, boletas y otros comprobantes por pagar", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cuentas por pagar comerciales, relacionadas", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobiernos regionales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Otros costos administrativos e intereses ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Administradoras de fondos de pensiones (AFP)", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Certificados tributarios ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto de alcabala ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto predial ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al rodaje", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto al patrimonio vehicular ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los juegos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a las apuestas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / impuestos, impuesto a los espect\u00e1culos p\u00fablicos no deportivos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / impuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios administrativos o derechos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, estacionamiento de veh\u00edculos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, licencia de apertura de establecimientos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, servicios p\u00fablicos o arbitrios ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobiernos locales / tasas, transporte p\u00fablico ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobiernos locales / tasas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Gobiernos locales / contribuciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes ...- Gobiernos Locales (Predial, Licencias, tributos, impuestos, contribuciones, tasas y arbitrios,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENCICO ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ONP", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / ESSALUD", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / contribuci\u00f3n al SENATI", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Instituciones p\u00fablicas / otras instituciones ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Instituciones p\u00fablicas (ESSALUD, ONP,...)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Gobierno central / impuesto selectivo al consumo ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, tasas por la prestaci\u00f3n de servicios p\u00fablicos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, regal\u00edas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los dividendos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a las transacciones financieras ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto a los juegos de casino y tragamonedas ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, otros impuestos ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / otros impuestos, impuesto temporal a los activos netos ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / **otros impuestos (ITF,...) y contraprestaciones ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon hidroenerg\u00e9tico ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon petroleo ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon gas\u00edfero ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon minero  ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon forestal ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / canon, canon pesquero ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / canon", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - servicios prestados por no domiciliados   ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - r\u00e9gimen de percepciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas, IGV - cuenta propia ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto general a las ventas (IGV)   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de cuarta categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de no domiciliados ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de tercera categor\u00eda ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, otras retenciones ", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta, renta de quinta categor\u00eda ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / impuesto a la renta", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos arancelarios ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros, derechos aduaneros por ventas ", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Tributos y aportes ...- Gobierno central / derechos aduaneros ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Gobierno central", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta propia ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Tributos y aportes ...- Empresas prestadoras de servicios de salud / cuenta de terceros ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Tributos y aportes al sistema de pensiones y de salud por pagar - Empresas prestadoras de servicios de salud (EPS)", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Tributos, **contraprestaciones  y aportes al sistema de pensiones y de salud por pagar  (Pasivo)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Comisiones gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajodores por pagar / pensiones y jubilaciones ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Beneficios sociales de los trabajadores por pagar / adelanto de compensaci\u00f3n por tiempo de servicios ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar - Beneficios sociales de los trabajadores por pagar ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Interese sobre Inversiones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Honorarios gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Categoria de productos 01", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / sueldos y salarios por pagar   ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / gratificaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / vacaciones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / comisiones por pagar ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Remuneraciones ...- Remuneraciones por pagar / remuneraciones en especie por pagar ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Remuneraciones y participaciones por pagar  - Remuneraciones por pagar   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Intereses gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Alquileres gananados, obtenidos, percibidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ganancia Venta de Acciones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "INTERESES Y RENDIMIENTOS"
+       }, 
+       {
+        "name": "UTILIDAD EN CAMBIO"
+       }, 
+       {
+        "name": "DIVIDENDOS"
+       }, 
+       {
+        "name": "UTILIDAD POR VALUACI\u00d3N DE ACTIVOS FINANCIEROS A VALOR RAZONABLE"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Otras remuneraciones y participaciones por pagar ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Remuneraciones y participaciones por pagar - Participaci\u00f3n de los trabajadores por pagar ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Remuneraciones y participaciones por pagar", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / ingresos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - Utilidades no distribuidas / utilidades acumuladas  ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - Utilidades no distribuidas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / p\u00e9rdidas acumuladas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados acumulados - P\u00e9rdidas acumuladas / gastos de a\u00f1os anteriores ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados acumulados - P\u00e9rdidas acumuladas ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados acumulados     ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reserva legal - Contractuales ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Estatutarias ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Reinversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Facultativas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Legal ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reserva legal - Otras reservas ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Reserva legal    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente de revaluaci\u00f3n - Participaci\u00f3n en excedente de revaluaci\u00f3n, inversiones en entidades relacionadas ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / intangibles ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Exdecente de revaluaci\u00f3n / inversiones inmobiliarias  ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Excedente de ...- Excedente de revaluaci\u00f3n / inmuebles, maquinaria y equipos ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Excedente de revaluaci\u00f3n - Excedente de revaluaci\u00f3n, acciones liberadas recibidas  ", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Excedente de revaluaci\u00f3n ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultados no realizados - Instrumentos financieros, cobertura de flujo de efectivo ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resultados ...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta / ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resultados no realizados - Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Resultados no realizados - Diferencia en cambio de inversiones permanentes en entidades extranjeras ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ p\u00e9rdida ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta, compra o venta .../ ganancia ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Resu...- Ganancia o p\u00e9rdida en activos o pasivos financieros disponibles para la venta,compra o venta convencional fecha d liqui", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultados no realizados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de Publicidad y Propaganda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Salarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses por cr\u00e9ditos de bancos y otras Instituciones financieras", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intereses por otros pasivos no financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTERESES CAUSADOS"
+       }, 
+       {
+        "name": "Gastos en Servicios P\u00fablicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de Mercader\u00edas Vendidas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Amortizaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Depreciaci\u00f3n de Activo Fijo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos en Cargas Sociales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos Bancarios", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos en Impuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en Valuaci\u00f3n de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN VALUACI\u00d3N DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deterioro de activos financieros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "DETERIORO DE ACTIVOS FINANCIEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida en cambio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDA EN CAMBIO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Arrendamiento operativo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "ARRENDAMIENTO OPERATIVO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores Desmaterializados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compensaci\u00f3n y Liquidaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores Materializados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CUSTODIA  REGISTRO COMPENSACI\u00d3N Y LIQUIDACI\u00d3N \n      "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras Comisiones Pagadas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS COMISIONES PAGADAS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Por Contratos de Underwriting", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Burs\u00e1tiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Operaciones Extraburs\u00e1tlies", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COMISIONES PAGADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fideicomisos mercantiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Encargos fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos colectivos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Fondos administrados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Administraci\u00f3n de portafolio", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "POR SERVICIOS DE ADMINISTRACI\u00d3N Y MANEJO"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n en tesorer\u00eda ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Acciones de inversi\u00f3n - Acciones de inversi\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por operaciones descontinuadas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta activos biol\u00f2gicos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Propiedad ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "P\u00e9rdida en venta de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "P\u00c9RDIDAS EN VENTA"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Negocios Fiduciarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Oferta P\u00fablica de Valores", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS POR ESTRUCTURACI\u00d3N"
+       }
+      ], 
+      "name": "Acciones de inversi\u00f3n   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Beneficios sociales de los trabajadores", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Provisi\u00f3n para jubilaci\u00f3n patronal", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Remuneraciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "GASTOS DE PERSONAL"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Servicios de terceros", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "SERVICIOS DE TERCEROS "
+       }, 
+       {
+        "children": [
+         {
+          "name": "Honorarios", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "HONORARIOS"
+       }, 
+       {
+        "name": "Capital adicional - Reducciones de capital pendientes de formalizaci\u00f3n ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Capital adicional - Primas (descuento) de acciones  ", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Gastos en Siniestros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / reservas ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / aportes ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / utilidades ", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Capital adicional - Capitalizaciones en tr\u00e1mite / acreencias ", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Capital adicional - Capitalizaciones en tr\u00e1mite ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida Venta Activo Fijo", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Capital adicional ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Inventarios - Mercancias / Categoria de productos 01", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Inventarios - Mercancias"
+         }, 
+         {
+          "name": "Materias primas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inventarios - Mercancias en Tr\u00e1nsito", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos Elaborados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos en Curso de Elaboraci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Inventarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales Varios ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plantas en crecimiento", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "PROVISI\u00d3N POR DETERIORO DE ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "En producci\u00f3n", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "En desarrollo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animales vivos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inventarios"
+       }
+      ], 
+      "name": "ACTIVOS"
+     }
+    ], 
+    "name": "Cuentas de Balance", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Compras - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercaderias / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos .../ otros costos vinculados con las compras de materias primas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ comisiones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos vinculados con las compras / costos vinculados con las compras de materias primas  ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ comisiones    ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ seguros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ derechos aduaneros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras - Costos ...- Costos vinculados con las compras .../ otros costos vinculados con las compras de mercader\u00edas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras - Costos Vinculados con las compras / costos vinculados con las compras de mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vincu...,otros costos vinculados con las compras de materiales, suministros y repuestos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, seguros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de materiales, suministros y repuestos, transporte  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de materiales, suministros y repuestos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, derechos aduaneros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, transporte  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, comisiones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos ../ costos vinculados con las compras de envases y .., otrs costos vinculados con las compras d env y emb", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Compras  - Costos .../ costos vinculados con las compras de envases y embalajes, seguros ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Compras  - Costos vinculados con las compras / costos vinculados con las compras de envases y embalajes ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Costos Vinculados con las compras  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos de extracc\u00edon ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Garant\u00edas ", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Garant\u00edas en titularizaci\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materias primas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ repuestos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compras - Envases y embalajes / embalajes ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Compras - Envases y embalajes / envases ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Compras - Envases y embalajes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compras (Gastos por naturaleza)", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "COSTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas imputables ...- Gastos financieros imputables a cuentas de existencias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Cargas imputables ...- Cargas imputables a cuentas de costos y gastos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas imputables a cuentas de costos y gastos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cargas cubiertas por provisiones - Cargas cubiertas por provisiones", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Cargas cubiertas por provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / costos de financiaci\u00f3n, productos terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / costos de financiaci\u00f3n, productos terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / existencias de servicios terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / existencias de servicios terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costos de producci\u00f3n no absorbido, productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Costo de ventas - Productos terminados / costo de ineficiencia, productos terminados  ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Productos terminados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ desechos y desperdicios, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / desechos y desperdicios ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ...- Subproductos, desechos .../ subproductos, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Subproductos, desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros - Categoria de productos 01", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercaderi\u00e1s de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Costo de ventas - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Costo de ventas - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Servicios / relacionadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Servicios / terceros (Costo diferido)", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos en proceso ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / existencias por recibir ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / productos terminados ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materias primas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / mercader\u00edas ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / subproductos, desechos y desperdicios ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / envases y embalajes ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias / materiales auxiliares, suministros y repuestos ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Costo de ventas - Gastos por desvalorizaci\u00f3n de existencias ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Costo de ventas  ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "INGRESOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Excedente bruto ...- Exdedente bruto (insuficiencia bruta) de explotaci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Excedente bruto (insuficiencia bruta) de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado de explotaci\u00f3n - Resultado de explotaci\u00f3n", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado de explotaci\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Resultado antes ...- Resultado antes de participaciones e impuestos ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Resultado antes de participaciones e impuestos ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ materiales auxiliares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ suministros", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materiales .../ repuestos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materiales auxiliares, suministros y repuestos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / otras mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas iinmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variaci\u00f3n ...- Mercader\u00edas / mercader\u00edas manufacturadas - Categoria de productos 01", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Variaci\u00f3n de existencias - Mercader\u00edas / mercaderias manufacturadas", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Mercader\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ embalajes", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de existencias - Envases .../ envases", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Costo de Venta - Categoria de productos 01", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos de extracci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos agropecuarios y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n ...- Materias .../ materias primas para productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de existencias - Materias primas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de existencias  (perdidas de inventario)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / beneficio de movilidad al trabajador", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaciones extraordinarias", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / asignaci\u00f3n familiar", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / sueldos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / subsidios por enfermedad", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / horas Extras", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Remuneraciones - Sueldos y Salarios / bonificaci\u00f3n por riesgo de caja", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de personal ...- Remuneraciones / sueldos y salarios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / vacaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / gratificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / comisiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Remuneraciones / remuneraciones en especie", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Remuneraciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de pensiones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ caja de beneficios de seguridad social del pescador", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de ...- Seguridad .../ seguro complementario de trabajo de riesgo, accidentes de trabajo y enfermedades profesionales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguros particulares de prestaciones de salud - EPS y otros particulares", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ r\u00e9gimen de prestaciones de salud", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ seguro de vida", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Seguridad y .../ contribuciones al SENCICO y el SENATI ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Seguridad y previsi\u00f3n social y otras contribuciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal  ...- Otras Remuneraciones / planilla de movilidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Otras remuneraciones   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Capacitaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ Compensaci\u00f3n por tiempo de servicio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ otros beneficios post-empleo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de personal ...- Beneficios sociales .../ pensiones y jubilaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de personal, directores y gerentes - Beneficios sociales de los trabajadores ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Gerentes", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Indemnizaciones al personal", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Retribuciones al directorio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos de personal, directores y gerentes - Atenci\u00f3n al personal  ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compras - Categoria de productos 01", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de personal, directores y gerentes", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de ventas   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / verificaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Producci\u00f3n encargada a terceros / comisi\u00f3n de cobranzas   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Producci\u00f3n encargada a terceros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / agua", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / gas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / energ\u00eda el\u00e9ctrica", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios / internet", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / cable", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / radio", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios b\u00e1sicos / tel\u00e9fono", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios b\u00e1sicos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultoria / administrartiva ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / mercadotecnia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / medioambiental ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / legal y tributaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / producci\u00f3n ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / auditor\u00eda y contable ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Asesor\u00eda y consultor\u00eda / investigaci\u00f3n y desarrollo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Asesor\u00eda y consultor\u00eda ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / relaciones p\u00fablicas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / diarios y revistas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / televisi\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / articulos promocionales", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / radial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / otros medios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Publicidad, publicaciones, relaciones p\u00fablicas / publicidad", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Publicidad, publicaciones, relaciones p\u00fablicas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / edificios y locales", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inversi\u00f3n inmoviliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / unidades de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / combustible y lubricantes", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Mantenimiento y reparaciones / herramientas", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Mantenimiento y reparaciones / activos adquiridos en arrendamiento financiero ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Mantenimiento y reparaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / terrenos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / equipos diversos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / edificaciones  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / vigilancia", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / guardian\u00eda", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Servicios de contratistas / conserjer\u00eda", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Servicios de contratistas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos de laboratorio", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / mantenimiento de cuentas", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / transferencias de fondos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / talonario de cheques", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Otros servicios ...- Gastos bancarios / otros servicios bancarios", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos bancarios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ gastos notariales y de registro ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ legalizaciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ tr\u00e1mites judiciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ varios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Otros servicios prestados .../ centrales de riesgo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros - Otros servicios prestados por terceros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ correos  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alojamiento", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ alimentaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos de servicios ...- Transporte, correos .../ otros gastos de viaje ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de pasajeros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos de servicios ...- Transporte, correos .../ transporte, de carga", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos de servicios ...- Transporte, correos .../ transporte ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos de servicios prestados por terceros -Transporte, correos y gastos de viaje  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos de servicios prestados por terceros", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos por tributos - Gobierno regional ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Cotizaciones con car\u00e1cter de tributo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto al patrimonio vehicular ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / licencia de funcionamiento ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / arbitrios municipales y seguridad ciudadana ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno local / impuesto predial ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno local", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENATI ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Otros gastos por tributos / contribuci\u00f3n al SENCICO", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Otros gastos por tributos ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos por tributos - Otros tributos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos por tributos - Gobierno central / c\u00e1nones ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / regal\u00edas mineras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a las transacciones financieras ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto a los juegos de casino y m\u00e1quinas tragamonedas ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto general a las ventas y selectivo al consumo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos por tributos - Gobierno central / impuesto temporal a los activos netos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos por tributos - Gobierno central ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos por tributos   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inversiones inmobiliarias  ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos biol\u00f3gicos ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, activos adquiridos en arrendamiento financiero", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, inmuebles, maquinaria y equipo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Otros ...- Costo neto .../ operaciones discontinuadas,abandono de activos, intangibles ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Otros ...- Costo neto .../ operaciones discontinuadas, abandono de activos ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inversiones inmobiliarias", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos biol\u00f3gicos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / inmuebles, maquinaria y equipo", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / intangibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ...- Costo neto ...- Costo neto de enajenaci\u00f3n de activos inmovilizados / activos adquiridos en arrendamiento financiero", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Otros ...- Costo neto ... / Costo neto de enajenaci\u00f3n de activos inmovilizados   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Costo neto de enajenaci\u00f3n de activos inmovilizados y operaciones discontinuadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gastos de investigaci\u00f3n y desarrollo", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Regal\u00edas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suministros  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros gastos de ...- Seguros / vehiculos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / robo, desfalco", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros gastos de ...- Seguros / contra incendio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Seguros", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Licencias y derechos de vigencia", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Gesti\u00f3n medioambiental", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros gastos de gesti\u00f3n - Suscripciones  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / sanciones administrativas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / gastos extraordinarios ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / otros gastos ( )", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ...- Otros gastos de gesti\u00f3n / donaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros gastos de gesti\u00f3n - Otros gastos de gesti\u00f3n  ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otros gastos de gesti\u00f3n", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Gastos por participaciones en negocios conjuntos", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Participaci\u00f3n en los resultados de subsidiarias y afiliadas bajo el m\u00e9todo del valor patrimonial", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "P\u00e9rdida por medici\u00f3n ...- Obligaciones financieras", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado / inversiones inmobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / productos terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inmuebles, maquinaria y equipo ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, inversi\u00f3n inmoviliaria ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, intangibles ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta, activos biol\u00f3gicos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "P\u00e9rdida por medici\u00f3n ...- Activo realizable", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "P\u00e9rdida por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaci\u00f3n en los resultados de subsidiarias y asociadas bajo el m\u00e9todo del valor patrimonial ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ..- Participaci\u00f3n ../ participaciones en negocios conjuntos ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Participaci\u00f3n en resultados de entidades relacionadas ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Otros gastos financieros / primas por opciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Otros gastos financieros / gastos financieros en medici\u00f3n a valor descontado", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Otros gastos financieros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos financieros - Gastos en operaciones .../ emisi\u00f3n y colocaci\u00f3n de instrumentos representativos de deuda y patrimonio", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros -  Gastos en operaciones de endeudamiento y otros", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos financieros - Gastos en operaciones de factoraje / gastos por menor valor ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Gastos en operaciones de factoraje ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / otros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones disponibles para la venta ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable / inversiones para negociaci\u00f3n ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - P\u00e9rdida por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos.../ contratos de arrendamiento financiero", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones comerciales (compra de mercaderia)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ otros instrumentos financieros por pagar (sobre giro bancario)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones tributarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ otras entidades", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Gastos ...- Intereses por ...- Prestamos de instituciones .../ instituciones financieras", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Gastos...- Intereses por pr\u00e9stamos .../ pr\u00e9stamos de instituciones financieras y otras entidades", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ obligaciones emitidas", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Gastos ...- Intereses por pr\u00e9stamos .../ documentos vendidos o descontados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Gastos financieros - Intereses por pr\u00e9stamos y otras obligaciones", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Diferencia de cambio", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - Descuentos concedidos por pronto pago", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Gastos financieros - P\u00e9rdida por instrumentos financieros derivados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Gastos financieros  (gastos en operaciones de endudamiento, intereses,...)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, costo / patentes y propiedad industrial ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de ...- Amortizaci\u00f3n de intangibles, revaluaci\u00f3n / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Amortizaci\u00f3n de intangibles / amortizaci\u00f3n de intangibles, revaluaci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Amortizaci\u00f3n de intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n / activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de activos biol\u00f3gicos en  producci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inversiones inmobiliarias / edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / otros activos intangibles", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / costos de exploraci\u00f3n y desarrollo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / patentes y propiedad industrial", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / plusval\u00eda mercantil ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / programas de computadora (software)", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / f\u00f3rmulas, dise\u00f1os y prototipos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de intangibles / concesiones, licencias y otros derechos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Deterioro del ...- Desvalorizaci\u00f3n de inmuebles maquinaria y equipo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Deterioro del valor de los activos / desvalorizaci\u00f3n de inmuebles maquinaria y equipo   ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Deterioro del valor de los activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, terceros", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar diversas, relacionadas ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa, cuentas por cobrar comerciales, terceros ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de .., cuentas por cobrar al personal, a los accionistas(socios)..", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / estimaci\u00f3n de cuentas de cobranza dudosa", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones mobiliarias, inversiones a ser mantenidas hasta el vencimento ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n ../ desvalorizaci\u00f3n de inversiones ., instrumentos financieros representativos de derecho patrimonial", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Valuaci\u00f3n de activos / desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Valuaci\u00f3n de activos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para gastos de responsabilidad social", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para protecci\u00f3n y remediaci\u00f3n del medio ambiente", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, actualizaci\u00f3n financiera ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas, costo  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para garant\u00edas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado, costo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del ..., actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n por desmantelamiento, retiro o rehabilitaci\u00f3n del inmovilizado", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Provisiones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, actualizaci\u00f3n financiera", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Provisones - Provisi\u00f3n para litigios / provisi\u00f3n para litigios, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para litigios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / provisi\u00f3n para reestructuraciones", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Valuaci\u00f3n y deterioro ...- Provisiones / otras provisiones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Provisiones", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, revaluaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmoviliarias / edificaciones, costo de financiaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inversiones inmobiliarias / edificaciones, costo", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento .../ equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / muebles y enseres", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo / equipos diversos", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costo", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos adquiridos en arrendamiento financiero .../ edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos adquiridos en arrendamiento financiero, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal   ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal   ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipos diversos", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ equipo de transporte", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ herramientas y unidades de reemplazo", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ muebles y enseres", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, revaluaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ maquinarias y equipos de  explotaci\u00f3n", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de inmuebles, maquinaria y equipo .../ edificaciones  ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de inmuebles, maquinaria y equipo, costos de financiaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n - Depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n .../ activos biol\u00f3gicos de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Valuaci\u00f3n y ...- Depreciaci\u00f3n / depreciaci\u00f3n de activos biol\u00f3gicos en producci\u00f3n, costo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Depreciaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valuaci\u00f3n y ...- Agotamiento / agotamiento de recursos naturales adquiridos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Valuaci\u00f3n y deterioro de activos y provisiones - Agotamiento", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valuaci\u00f3n y deterioro de activos y provisiones", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "COSTO DE PRODUCCI\u00d3N "
+         }, 
+         {
+          "name": "OBLIGACIONES FINANCIERAS"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PRIMA POR OPERACIONES DE REPORTO"
+         }, 
+         {
+          "name": "OTROS GASTOS"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "FISCALES"
+         }, 
+         {
+          "name": "ORGANISMOS DE CONTROL"
+         }, 
+         {
+          "name": "MUNICIPALES"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "ACTIVOS NO CORRIENTES "
+         }, 
+         {
+          "name": "CUENTAS POR COBRAR"
+         }, 
+         {
+          "name": "COSTO DE VENTAS"
+         }
+        ], 
+        "name": "P\u00c9RDIDA POR MEDICI\u00d3N DE ACTIVOS NO FINANCIEROS AL VALOR RAZONABLE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ARRENDAMIENTOS"
+         }, 
+         {
+          "name": "POR PUBLICIDAD"
+         }, 
+         {
+          "name": "OTROS"
+         }, 
+         {
+          "name": "SEGUROS"
+         }, 
+         {
+          "name": "MATERIALES Y SUMINISTROS"
+         }, 
+         {
+          "name": "SERVICIOS Y MANTENIMIENTO"
+         }, 
+         {
+          "name": "DEPRECIACI\u00d3N"
+         }, 
+         {
+          "name": "AMORTIZACIONES"
+         }, 
+         {
+          "name": "PROVISIONES"
+         }
+        ], 
+        "name": "GASTOS GENERALES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACTIVOS DE EXPLORACI\u00d3N Y EVALUACI\u00d3N MINERA"
+         }, 
+         {
+          "name": "PLUSVAL\u00cdA MERCANTIL (GOODWILL)"
+         }, 
+         {
+          "name": "ACTIVOS BIOL\u00d3GICOS"
+         }, 
+         {
+          "name": "PROPIEDADES DE INVERSI\u00d3N"
+         }, 
+         {
+          "name": "CUENTAS Y DOCUMENTOS POR COBRAR"
+         }, 
+         {
+          "name": "EXISTENCIAS"
+         }, 
+         {
+          "name": "PROPIEDADES  PLANTA Y EQUIPO"
+         }
+        ], 
+        "name": "GASTOS POR  DETERIORO"
+       }
+      ], 
+      "name": "GASTOS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ingresos financieros - Ingresos en operaciones de factoraje (factoring)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Dividendos  ", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Participaci\u00f3n en result de subsidiarias y asociadas bajo m\u00e9todo de valor patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Participaci\u00f3n en.../Ingresos por participaciones en negocios conjuntos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Participaci\u00f3n en resultados de entidades relacionadas", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ingresos financieros - Ganancia por instrumento financiero derivado", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Diferencia en Cambio (desajuste)", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ingresos financieros - Descuentos obtenidos por pronto pago", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones disponibles para la venta", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Inversiones mantenidas para negociaci\u00f3n ", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos financieros - Ganancia por.../Otras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Ganancia por medici\u00f3n de activos y pasivos financieros al valor razonable", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos ...- Rendimientos ganados / inversiones a ser mantenidas hasta vencimiento", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / pr\u00e9stamos otorgados (Intereses Moratorios)", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / instrumentos financieros representativos de derecho patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Devengado", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales / Por Devengar", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ingresos ...- Rendimientos ganados / cuentas por cobrar comerciales", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ingresos ...- Rendimientos ganados / dep\u00f3sitos en instituciones financieras", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Rendimientos Ganados (moras e intereses cobrados)", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ingresos...- Otros ingresos ... /ingresos financieros  en medici\u00f3n a valor descontado (venta al cr\u00e9dito)", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ingresos financieros - Otros ingresos financieros", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ingresos financieros    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / productos terminados", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Activos biol\u00f3gicos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inversiones inmobiliarias", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Inmuebles, maquinaria y equipo", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes../Intangibles", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / activos no corrientes mantenidos para la venta   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo realizable / mercader\u00edas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n activos no financieros al valor razonable - Activo realizable   ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado / activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ganancia por medici\u00f3n ...- Activo inmovilizado  / inversiones inmobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable - Activo inmovilizado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ganancia por medici\u00f3n de activos no financieros al valor razonable", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de intangibles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inversiones inmobiliarias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de inmuebles, maquinaria y equipo", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ...../Recuperaci\u00f3n de deterioro de activos biol\u00f3gicos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de deterioro de cuentas de activos inmovilizados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n ... /cuentas de cobranza dudosa", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de existencias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Recuperaci\u00f3n .../ desvalorizaci\u00f3n de inversiones mobiliarias", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos ...- Recuperaci\u00f3n de cuentas de valuaci\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Alquileres / equipos diversos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / terrenos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / equipo de transporte", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / edificaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Alquileres / maquinarias y equipos de explotaci\u00f3n", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Otros ingresos de gesti\u00f3n - Alquileres", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / donaciones", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / reclamos al seguro", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / sudsidios gubernamentales ", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / dividendos de acciones preferentes ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / interes minoritario ( )", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / resultados por exposici\u00f3n a la inflaci\u00f3n ( )", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / ingresos extraordinarios ( )", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Otros ingresos ...- Otros ingresos de gesti\u00f3n / otros ingresos de gesti\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otros ingresos ...- Otros ingresos  de gesti\u00f3n", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inmuebles, maquinaria y equipo intangible", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones inmobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ intangibles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos biol\u00f3gicos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ inversiones mobiliarias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Otros ingresos ...- Enajenaci\u00f3n .../ activos adquiridos en arrendamiento financiero", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Otros ingresos ...- Enajenaci\u00f3n de activos inmovilizados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Regalias", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Servicios en beneficio del personal", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otros ingresos de gesti\u00f3n - Comisiones y corretajes", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Otros ingresos de gesti\u00f3n  ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / relacionadas", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos / terceros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos,rebajas y bonificaciones concedidos", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Custodia", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T\u00edtulos de Renta Variable", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Depositos en efectivo", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "T\u00edtulos de Renta Fija", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "En Garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES RECIBIDOS DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Titularizaci\u00f3n", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Encargos fiduciarios no inscritos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Garant\u00eda", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inversi\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Administraci\u00f3n", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Inmobiliario", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fideicomisos mercantiles no inscritos", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Negocios Fiduciarios"
+         }, 
+         {
+          "name": "Intermediaci\u00f3n de valores"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Colectivos", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Principal", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Intereses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fondos Administrados", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Patrimonio de Fondos de Inversi\u00f3n", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Intereses", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Administraci\u00f3n de portafolio "
+         }
+        ], 
+        "name": "ADMINISTRACION DE RECURSOS DE TERCEROS"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones concedidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos  / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Descuentos ...- Descuentos,rebajas y bonificaciones obtenidos / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Descuentos ...- Descuentos, rebajas y bonificaciones obtenidos", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Descuentos, rebajas y bonificaciones obtenidos", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen animal  ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Activos biol\u00f3gicos / activos biol\u00f3gicos en desarrollo de origen vegetal", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Activos biol\u00f3gicos ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n .../ costos de financiaci\u00f3n  inversiones inmobiliarias, edificaciones", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inversiones inmobiliarias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen vegetal", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo, de origen animal", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, activos biol\u00f3gicos en desarrollo ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, maquinaria y equipo, edificaciones ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Producci\u00f3n de activo ...- Costos de .../ costos de financiaci\u00f3n, inmuebles, ..., maquinarias y otros equipos de explotaci\u00f3n ", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Producci\u00f3n de activo ...- Costos de financiaci\u00f3n capitalizados / costos de financiaci\u00f3n, inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Costos de financiaci\u00f3n capitalizados ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / maquinarias y otros equipos de explotaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / otros equipos   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de comunicaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipos diversos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / muebles y enseres", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de transporte", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / equipo de seguridad", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Inmuebles, maquinaria y equipo / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inmuebles, maquinaria y equipo", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / programas de computadora (software)", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / costos de exploraci\u00f3n y desarrollo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Producci\u00f3n de activo ...- Intangibles / f\u00f3rmulas, dise\u00f1os y prototipos  ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Intangibles", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Producc\u00edon de activo ...- Inversiones inmobiliarias / edificaciones", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Producci\u00f3n de activo inmovilizado - Inversiones inmobiliarias", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Acreedores por  contra", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Producci\u00f3n de activo inmovilizado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Bienes en garant\u00eda", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valores en garant\u00eda", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "VALORES Y BIENES PROPIOS EN PODER DE TERCEROS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Emisiones no colocadas ", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "EMISIONES NO COLOCADAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Colaterales de las operaciones de reporto burs\u00e1til", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "COLATERALES DE LAS OPERACIONES DE REPORTO BURSATIL"
+       }, 
+       {
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de existencias de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Derechos sobre instrumentos financieros derivados", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "OTRAS CUENTAS DE ORDEN DEUDORAS"
+       }, 
+       {
+        "name": "Documentos Endosados", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / envases", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n ... / embalajes", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de envases y embalajes", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / existencias de productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos agropecuarios y pisc\u00edcolas en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos extra\u00eddos en proceso de transformaci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / otros productos en proceso ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos inmuebles en proceso", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso / productos en proceso de manufactura ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos en proceso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ desechos y desperdicios", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos .../ sub productos", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Variaci\u00f3n de la producc\u00edon almacenada - Variaci\u00f3n de productos terminados / productos de extracci\u00f3n terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos inmuebles terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos agropecuarios y pisc\u00edcolas terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados / productos manufacturados", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Variaci\u00f3n de la producci\u00f3n almacenada - Variaci\u00f3n de productos terminados", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Variaci\u00f3n de la producci\u00f3n almacenada", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos ... / subproductos, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / subproductos", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, terceros   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Subproductos, desechos... / desechos y desperdicios, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Subproductos , desechos y desperdicios / desechos y desperdicios", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Subproductos, desechos y desperdicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / terceros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventas - Prestaci\u00f3n de servicios / relacionadas", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventas - Prestaci\u00f3n de servicios", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos de extracci\u00f3n terminados, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos de extracci\u00f3n terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / existencias de servicios, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Productos terminados / existencias de servicios terminados ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos inmuebles terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos inmuebles terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados / productos agropecuarios y pisc\u00edcolas terminados", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Productos terminados / productos manufacturados, relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Productos terminados - Productos manufacturados    ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Productos terminados   ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Ventas - Software", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / terceros", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios / relacionadas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones - Prestaci\u00f3n de servicios   ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas agropecuarias y pisc\u00edcolas   ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas otras  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas de extracc\u00edon ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas relacionadas / mercader\u00edas inmuebles  ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercaderias relacionadas / mercader\u00edas manufacturadas   ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / mercader\u00edas relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos .../ subproductos ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Subproductos, desechos ... / desechos y desperdicios ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Subproductos, desechos y desperdicios, relacionadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos  inmuebles terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados .../ productos manufacturados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones ...- Productos terminados, relacionadas ", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos agropecuarios y pisc\u00edcolas terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / existencias de servicios terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos de extracc\u00edon terminados", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos manufacturados ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Productos terminados terceros / productos inmuebles terminados", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas / productos terminados terceros", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas de extracc\u00edon", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas otras", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas inmuebles", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas  - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas manufacturadas     ", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Ventas - Devoluciones ...- Mercader\u00edas terceros / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas - Devoluciones sobre ventas  - Mercader\u00edas terceros", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas - Devoluciones sobre ventas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras, terceros (Venta Diferida)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas otras", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas agropecuarias y pisc\u00edcolas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas terceros - Categoria de productos 01", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas, terceros", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas manufacturadas", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas inmuebles", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, relacionadas", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n, terceros", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Ventas  - Mercader\u00edas / mercader\u00edas de extracci\u00f3n", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Ventas  - Mercader\u00edas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Ventas (Ingresos)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /diferido", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Impuesto a la ...- Impuesto a la renta /corriente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Impuesto a la renta   ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - Utilidad", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Determinaci\u00f3n del resultado del ejercicio - P\u00e9rdida", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Determinaci\u00f3n del resultado del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valor agregado - Valor agregado", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Valor agregado", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Margen comercial - Margen comercial", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Margen comercial (Saldos intermediarios de gesti\u00f3n)", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de servicios ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de activo inmovilizado", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Producci\u00f3n del ejercicio - Producci\u00f3n de bienes", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Producci\u00f3n del ejercicio", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / corriente", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Participaciones de ...- Participaci\u00f3n de los trabajadores / diferida", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Participaciones de los trabajadores", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Ganancias y Perdidas", 
+    "root_type": "None"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Acreedoras por el contrario", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores entregados - Activos realizables entregados en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / reponsb. por LT o efectos desc. 00.2.000", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad / LT/.o efectos descontados 00.1.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Letras o efectos descontados y responsabilidad  ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables /  bienes en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables / bienes en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Bienes en pr\u00e9stamo, custodia y no capitalizables ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / intangibles ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cuentas por cobrar   ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / cartas fianza ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores entregados - Valores y bienes entregados en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores entregados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a futuro", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Permutas financieras (swap)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Compromisos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Compromisos sobre instrumentos financieros derivados ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bienes y valores recibidos - Activos realizables recibidos en consignaci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes de uso / bienes recibidos por embargos, 00.5.001", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes de uso / respons. por bienes recib. p, 00.6.001", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso muebles enseres, 00.4.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, bienes de uso equipos diversos, 00.4.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / respons. control bienes de uso, 00.4.000", 
+          "root_type": "None"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, muebles y enseres, 00.3.001", 
+            "root_type": "None"
+           }, 
+           {
+            "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, equipos diversos, 00.3.002", 
+            "root_type": "None"
+           }
+          ], 
+          "name": "Bienes y valores ...- Bienes de uso / inventario de bienes de uso, 00.3.000", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes de uso ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en custodia ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Bienes recibidos en pr\u00e9stamo y custodia / bienes recibidos en pr\u00e9stamo ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Bienes recibidos en pr\u00e9stamo y custodia ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / existencias", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n mobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inversi\u00f3n inmobiliaria ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / inmuebles, maquinaria y equipo ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / activos biol\u00f3gicos ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / intangibles", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cuentas por cobrar ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Bienes y valores ...- Valores y bienes recibidos en garant\u00eda / cartas fianza", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Bienes y valores recibidos - Valores y bienes recibidos en garant\u00eda ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Bienes y valores recibidos ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden acreedoras - Diversas", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden acreedoras ", 
+      "root_type": "None"
+     }, 
+     {
+      "name": "Deudoras por contra ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a t\u00e9rmino (forward)", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos de opci\u00f3n ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Permutas financieras (swap) ", 
+        "root_type": "None"
+       }, 
+       {
+        "name": "Derechos sobre instrumentos financieros derivados - Contratos a futuro ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Derechos sobre instrumentos financieros derivados    ", 
+      "root_type": "None"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otras cuentas de orden deudoras - Diversas", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / suministros ", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Bienes dados de baja / inmuebles, maquinaria y equipo", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Bienes dados de baja ", 
+        "root_type": "None"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en ejecuci\u00f3n", 
+          "root_type": "None"
+         }, 
+         {
+          "name": "Otras cuentas de orden deudoras - Contratos aprobados / contratos en tr\u00e1mite ", 
+          "root_type": "None"
+         }
+        ], 
+        "name": "Otras cuentas de orden deudoras - Contratos aprobados ", 
+        "root_type": "None"
+       }
+      ], 
+      "name": "Otras cuentas de orden deudoras", 
+      "root_type": "None"
+     }
+    ], 
+    "name": "Cuentas de Orden", 
+    "root_type": "None"
+   }
+  ], 
+  "name": "Per\u00fa - PCGE 2010", 
+  "root_type": "None"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/pl_pl_chart_template.json b/setup/doctype/company/charts/pl_pl_chart_template.json
new file mode 100644
index 0000000..13a8a01
--- /dev/null
+++ b/setup/doctype/company/charts/pl_pl_chart_template.json
@@ -0,0 +1,2426 @@
+{
+ "name": "Polska - Plan kont", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "name": "5500 bis 5590 Verbrauch von Werkzeugen und anderen Erzeugungshilfsmittel", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf igErwerb 20 % VSt/20 % USt", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf igErwerb 10 % VSt/10 % USt", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5400 bis 5490 Verbrauch von Betriebsstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Skontoertr\u00e4ge auf sonstige bezogene Herstellungsleistungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "5100 bis 5190 Verbrauch an Rohstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5300 bis 5390 Verbrauch von Hilfsstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5700 bis 5790 Sonstige bezogene Herstellungsleistungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf 20 %", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf igErwerb ohne Vorsteuerabzug und 10 % USt", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Wareneinkauf igErwerb ohne Vorsteuerabzug und 20 % USt", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Aufwandsstellenrechnung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5200 bis 5290 Verbrauch von bezogenen Fertig- und Einzelteilen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "5600 bis 5690 Verbrauch von Brenn- und Treibstoffen, Energie und Wasser", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Skontoertr\u00e4ge auf Materialaufwand", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Summe Wareneinsatz"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Rezerwa z tytu\u0142u odroczonego podatku dochodowego"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rezerwa d\u0142ugoterminowa na \u015bwiadczenia emerytalne i podobne"
+         }, 
+         {
+          "name": "Rezerwa kr\u00f3tkoterminowa na \u015bwiadczenia emerytalne i podobne"
+         }
+        ], 
+        "name": "Rezerwa na \u015bwiadczenia"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pozosta\u0142e rezerwy kr\u00f3tkoterminowe"
+         }, 
+         {
+          "name": "Pozosta\u0142e rezerwy d\u0142ugoterminowe"
+         }
+        ], 
+        "name": "Pozosta\u0142e rezerwy"
+       }
+      ], 
+      "name": "Rezerwy"
+     }, 
+     {
+      "name": "Kapita\u0142 podstawowy"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inne rozliczenia mi\u0119dzyokresowe d\u0142ugoterminowe"
+         }, 
+         {
+          "name": "Inne rozliczenia mi\u0119dzyokresowe kr\u00f3tkoterminowe"
+         }
+        ], 
+        "name": "Inne rozliczenia mi\u0119dzyokresowe"
+       }, 
+       {
+        "name": "Ujemna warto\u015b\u0107 firmy"
+       }
+      ], 
+      "name": "Rozliczenia mi\u0119dzyokresowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Zak\u0142adowy fundusz \u015bwiadcze\u0144 socjalnych"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Zak\u0142adowy fundusz rehabilitacji os\u00f3b niepe\u0142nosprawnych"
+         }, 
+         {
+          "name": "Fundusz nagr\u00f3d"
+         }, 
+         {
+          "name": "Fundusz na remont zasob\u00f3w mieszkaniowych"
+         }
+        ], 
+        "name": "Inne fundusze specjalne"
+       }
+      ], 
+      "name": "Fundusze specjalne"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Podatek dochodowy od os\u00f3b prawnych"
+       }, 
+       {
+        "name": "Inne obowi\u0105zkowe obci\u0105\u017cenia wyniku finansowego"
+       }
+      ], 
+      "name": "Podatek dochodowy i inne obowi\u0105zkowe obci\u0105\u017cenia wyniku finansowego"
+     }, 
+     {
+      "name": "Rozliczenia wyniku finansowego"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kapita\u0142 rezerwowy"
+       }, 
+       {
+        "name": "Kapita\u0142 zapasowy"
+       }, 
+       {
+        "name": "Kapita\u0142y wydzielone w jednostce statutowej i zak\u0142adach (oddzia\u0142ach) samodzielnie sporz\u0105dzaj\u0105cych bilans"
+       }, 
+       {
+        "name": "Kapita\u0142 z aktualizacji wyceny"
+       }
+      ], 
+      "name": "Pozosta\u0142e kapita\u0142y i fundusze"
+     }, 
+     {
+      "name": "Wynik finansowy"
+     }
+    ], 
+    "name": "Kapita\u0142y w\u0142asne i wynik finansowy"
+   }, 
+   {
+    "children": [
+     {
+      "name": "8600 bis 8690 Aufl\u00f6sung unversteuerten R\u00fccklagen"
+     }, 
+     {
+      "name": "Gewinabfuhr bzw. Verlust\u00fcberrechnung aus Ergebnisabf\u00fchrungsvertr\u00e4gen"
+     }, 
+     {
+      "name": "8100 bis 8130 Sonstige Zinsen und \u00e4hnliche Ertr\u00e4ge", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "nicht ausgenutzte Lieferantenskonti", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Erl\u00f6se aus dem Abgang von Wertpapieren des Umlaufverm\u00f6gens", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se aus dem Abgang von Beteiligungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8700 bis 8740 Aufl\u00f6sung von Kapitalr\u00fccklagen"
+     }, 
+     {
+      "name": "8260 bis 8270 Aufwendungen aus sonst. Fiananzanlagen und aus Wertpapieren des Umlaufverm\u00f6gens", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "8450 bis 8490 Au\u00dferordentliche Aufwendungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Buchwert abgegangener sonstiger Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8220 bis 8250 Aufwendungen aus Beteiligungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Ertr\u00e4ge aus dem Abgang von und der Zuschreibung zu Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8800 bis 8890 Zuweisung von unversteuerten R\u00fccklagen"
+     }, 
+     {
+      "name": "8050 bis 8090 Ertr\u00e4ge aus anderen Wertpapieren und Ausleihungen des Finanzanlageverm\u00f6gens", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8280 bis 8340 Zinsen und \u00e4hnliche Aufwendungem", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "8750 bis 8790 Aufl\u00f6sung von Gewinnr\u00fccklagen"
+     }, 
+     {
+      "name": "Buchwert abgegangener Beteiligungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8500 bis 8590 Steuern vom Einkommen und vom Ertrag"
+     }, 
+     {
+      "name": "Erl\u00f6se aus dem Abgang von sonstigen Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Buchwert abgegangener Wertpapiere des Umlaufverm\u00f6gens", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8400 bis 8440 Au\u00dferordentliche Ertr\u00e4ge", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Ertr\u00e4ge aus dem Abgang von und der Zuschreibung zu Wertpapieren des Umlaufverm\u00f6gens", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "8000 bis 8040 Ertr\u00e4ge aus Beteiligungen", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Summe Finanzertr\u00e4ge und Aufwendungen"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Hebezeuge und Montageanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Aufwendungen f\u00fcs das Ingangssetzen u. Erweitern eines Betriebes", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anlagen im Bau", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Vorrichtungen, Formen und Modelle", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Maschinenwerkzeuge", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Wohn- und Sozialgeb\u00e4ude auf eigenem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Wohn- und Sozialgeb\u00e4ude auf fremdem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Marken, Warenzeichen und Musterschutzrechte", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geringwertige Verm\u00f6gensgegenst\u00e4nde, soweit nicht im Erzeugungsprozess verwendet", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Grundst\u00fcckseinrichtunten auf fremdem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Patentrechte und Lizenzen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Bauliche Investitionen in fremden (gepachteten) Wohn- und Sozialgeb\u00e4uden", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Beteiligungen an angeschlossenen (assoziierten) Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "B\u00fcromaschinen, EDV - Anlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Gesch\u00e4fts(Firmen)wert", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Ausleihungen an  verbundene Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Beheizungs- und Beleuchtungsanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Sonstige Ausleihungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Andere Betriebs- und Gesch\u00e4ftsausstattung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an Personengesellschaften ohne Beteiligungscharakter", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Antriebsmaschinen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "LKW", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Transportanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "920 bis 930 Festverzinsliche Wertpapiere des Anlageverm\u00f6gens", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Genossenschaften ohne Beteiligungscharakter", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Bebaute Grundst\u00fccke (Grundwert)", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geringwertige Verm\u00f6gensgegenst\u00e4nde, soweit im Erzeugerprozess verwendet", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "940 bis 970 Sonstige Finanzanlagen, Wertrechte", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Andere Erzeugungshilfsmittel", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geleistete Anzahlungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Allgemeine Werkzeuge und Handwerkzeuge", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geleistete Anzahlungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Geleistete Anzahlungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Betriebs- und Gesch\u00e4ftsgeb\u00e4ude auf eigenem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Betriebs- und Gesch\u00e4ftsgeb\u00e4ude auf fremdem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Datenverarbeitungsprogramme", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Grundst\u00fcckseinrichtunten auf eigenem Grund", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Konzessionen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Sonstige Beteiligungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Bauliche Investitionen in fremden (gepachteten) Betriebs- und Gesch\u00e4ftsgeb\u00e4uden", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Beteiligungen an Gemeinschaftunternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "44 bis 49 Sonstige Maschinen und maschinelle Anlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "PKW", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pacht- und Mietrechte", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Ausleihungen an  verbundene Unternehmen, mit denen ein Beteiligungsverh\u00e4lnis besteht", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Nachrichten- und Kontrollanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an Kapitalgesellschaften ohne Beteiligungscharakter", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Fertigungsmaschinen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Gebinde", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kumulierte Abschreibungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Energieversorgungsanlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Andere Bef\u00f6rderungsmittel", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Grundst\u00fccksgleiche Rechte", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an Investmentfonds", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Unbebaute Grundst\u00fccke", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Summe Kontoklasse 0 Anlageverm\u00f6gen"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Aktywa z tytu\u0142u odroczonego podatku dochodowego"
+       }, 
+       {
+        "name": "Inne rozliczenia mi\u0119dzyokresowe"
+       }
+      ], 
+      "name": "Pozosta\u0142e rozliczenia mi\u0119dzyokresowe"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Produkty gotowe w magazynie", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Produkty gotowe poza jednostk\u0105", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Produkty gotowe"
+       }, 
+       {
+        "name": "P\u00f3\u0142produkty", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Produkty i p\u00f3\u0142produkty"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Czynne rozliczenia mi\u0119dzyokresowe koszt\u00f3w"
+       }, 
+       {
+        "name": "Bierne rozliczenia mi\u0119dzyokresowe koszt\u00f3w"
+       }
+      ], 
+      "name": "Rozliczenia mi\u0119dzyokresowe koszt\u00f3w"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Odchylenia z tytu\u0142u aktualizacji warto\u015bci zapas\u00f3w produkt\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odchylenia od cen ewidencyjnych produkt\u00f3w", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Odchylenia od cen ewidencyjnych produkt\u00f3w"
+     }
+    ], 
+    "name": "Produkty i rozliczenia mi\u0119dzyokresowe"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Amortyzacja", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Pozosta\u0142e koszty rodzajowe", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Pozosta\u0142e \u015bwiadczenia", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Odpisy na zak\u0142adowy fundusz \u015bwiadcze\u0144 socjalnych lub \u015bwiadczenia urlopowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sk\u0142adki na ubezpieczenia spo\u0142eczne, FP, FG\u015aP", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Ubezpieczenia spo\u0142eczne i inne \u015bwiadczenia"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Podatek od nieruchomo\u015bci", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Op\u0142aty s\u0105dowe, prawnicze i notarialne", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Koncesje", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Pozosta\u0142e podatki i op\u0142aty", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Op\u0142aty i prowizje bankowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Podatek akcyzowy", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Op\u0142aty skarbowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "VAT niepodlegaj\u0105cy odliczeniu", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Podatek od \u015brodk\u00f3w transportowych", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Podatki i op\u0142aty"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Wynagrodzenia os\u00f3b dora\u017anie zatrudnionych", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Wynagrodzenia pracownik\u00f3w", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Wynagrodzenia"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Zu\u017cycie paliwa do \u015brodk\u00f3w transportu", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Zu\u017cycie innych materia\u0142\u00f3w", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Zu\u017cycie surowc\u00f3w do wytwarzania produkt\u00f3w", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Zu\u017cycie materia\u0142\u00f3w biurowych", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Zu\u017cycie energii", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Zu\u017cycie materia\u0142\u00f3w i energii"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Us\u0142ugi celne", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi graficzne i drukarskie", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi telekomunikacyjne", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi kurierskie i transportowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi remontowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Pozosta\u0142e us\u0142ugi", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Us\u0142ugi pocztowe", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Analizy sanitarne", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Us\u0142ugi obce"
+       }
+      ], 
+      "name": "Koszty wed\u0142ug rodzaj\u00f3w"
+     }, 
+     {
+      "name": "\u015awiadczenia na rzecz pracownik\u00f3w", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Koszty zgromadzone", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty nie wliczane do warto\u015bci sprzeda\u017cy", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Przypadaj\u0105ce na przysz\u0142e okresy", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Nie podlegaj\u0105ce rozliczeniu w czasie", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Rozliczenie koszt\u00f3w"
+     }
+    ], 
+    "name": "Koszty wed\u0142ug rodzaj\u00f3w i ich rozliczenie"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Sprzeda\u017c produkt\u00f3w na kraj", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c produkt\u00f3w na eksport", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c us\u0142ug na kraj", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c us\u0142ug na eksport", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Sprzeda\u017c produkt\u00f3w"
+     }, 
+     {
+      "name": "Straty nadzwyczajne", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Otrzymane dotacje", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Przychody z us\u0142ug socjalnych", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Przychody ze zbycia niefinansowych aktyw\u00f3w trwa\u0142ych", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Inne pozosta\u0142e przychody operacyjne", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Przychody ze wzrostu warto\u015bci niefinansowych aktyw\u00f3w trwa\u0142ych", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Pozosta\u0142e przychody operacyjne"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Sprzeda\u017c wysy\u0142kowa towar\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c detaliczna towar\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c hurtowa towar\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Prowizja komisowa", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Sprzeda\u017c towar\u00f3w"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Warto\u015b\u0107 sprzedanych towar\u00f3w w sprzeda\u017cy detalicznej", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 sprzedanych towar\u00f3w w sprzeda\u017cy wysy\u0142kowej", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 sprzedanych towar\u00f3w w sprzeda\u017cy hurtowej", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Prowizja komisowa", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Warto\u015b\u0107 sprzedanych towar\u00f3w w cenach zakupu"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Koszt wytworzenia wyrob\u00f3w gotowych wydanych do w\u0142asnych sklep\u00f3w", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt wytworzenia produkt\u00f3w uznanych za niedobory", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt wytworzenia \u015bwiadcze\u0144 na rzecz \u015brodk\u00f3w trwa\u0142ych w budowie", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt wytworzenia zako\u0144czonych prac rozwojowych", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt zaniechania okre\u015blonego rodzaju dzia\u0142alno\u015bci", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszt obrot\u00f3w wewn\u0119trznych"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Koszt w\u0142asny sprzeda\u017cy us\u0142ug na eksport", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt w\u0142asny sprzeda\u017cy us\u0142ug na kraj", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt w\u0142asny sprzeda\u017cy produkt\u00f3w na kraj", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszt w\u0142asny sprzeda\u017cy produkt\u00f3w na eksport", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty sprzedanych produkt\u00f3w"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Koszt wyrob\u00f3w w\u0142asnej produkcji wydanych do w\u0142asnych sklep\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "\u015awiadczenia na rzecz \u015brodk\u00f3w trwa\u0142ych w budowie", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Koszt niedobor\u00f3w produkt\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Koszt zaniechania okre\u015blonego rodzaju dzia\u0142alno\u015bci", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Obroty wewn\u0119trzne"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Warto\u015b\u0107 sprzedanych inwestycji", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Odpisy z tytu\u0142u utraty warto\u015bci inwestycji-koszty", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ujemne r\u00f3\u017cnice kursu walut", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pozosta\u0142e koszty finansowe", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Odsetki zap\u0142acone", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty finansowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kwoty nale\u017cne z tytu\u0142u dywidend", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Otrzymane odsetki", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Aktualizacja warto\u015bci inwestycji-przychody", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Przychody ze zbycia inwestycji", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Kwoty nale\u017cne ze sprzeda\u017cy aktyw\u00f3w finansowych", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Dodatnie r\u00f3\u017cnice kursu walut", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Pozosta\u0142e przychody finansowe", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Przychody finansowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Warto\u015b\u0107 w cenach zakupu sprzedanych odpad\u00f3w", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 w cenach zakupu sprzedanych materia\u0142\u00f3w", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 w cenach zakupu sprzedanych opakowa\u0144", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Warto\u015b\u0107 sprzedanych materia\u0142\u00f3w i opakowa\u0144"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inne pozosta\u0142e koszty operacyjne", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Odpisy z tytu\u0142u utraty warto\u015bci aktyw\u00f3w niefinansowych", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Dotacje przekazane", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Warto\u015b\u0107 sprzedanych niefinansowych aktyw\u00f3w trwa\u0142ych", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Pozosta\u0142e koszty operacyjne"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Sprzeda\u017c odpad\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c materia\u0142\u00f3w", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Sprzeda\u017c opakowa\u0144", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Sprzeda\u017c materia\u0142\u00f3w i opakowa\u0144"
+     }, 
+     {
+      "name": "Zyski nadzwyczajne", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Przychody i koszty zwi\u0105zane z ich osi\u0105gni\u0119ciem"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Zobowi\u0105zania warunkowe"
+       }, 
+       {
+        "name": "Weksle obce dyskontowane lub indosowane"
+       }, 
+       {
+        "name": "Nale\u017cno\u015bci warunkowe"
+       }
+      ], 
+      "name": "Rozrachunki pozabilansowe"
+     }, 
+     {
+      "name": "Rozrachunki z odbiorcami"
+     }, 
+     {
+      "name": "Odpisy aktualizuj\u0105ce rozrachunki"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pozosta\u0142e rozrachunki z urz\u0119dem skarbowym"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rozliczenie nale\u017cnego VAT-7%"
+         }, 
+         {
+          "name": "Rozliczenie nale\u017cnego VAT-22%"
+         }, 
+         {
+          "name": "Rozliczenie nale\u017cnego VAT-0%"
+         }
+        ], 
+        "name": "Rozrachunki z urz\u0119dem skarbowym z tytu\u0142u VAT nale\u017cnego"
+       }, 
+       {
+        "name": "Rozrachunki publicznoprawne z PFRON"
+       }, 
+       {
+        "name": "Rozrachunki publicznoprawne z urz\u0119dem celnym"
+       }, 
+       {
+        "name": "Pozosta\u0142e rozrachunki publicznoprawne"
+       }, 
+       {
+        "name": "Rozrachunki z urz\u0119dem skarbowym z tytu\u0142u VAT"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rozliczenie naliczonego VAT-22%"
+         }, 
+         {
+          "name": "Rozliczenie naliczonego VAT-0%"
+         }, 
+         {
+          "name": "Rozliczenie naliczonego VAT-7%"
+         }
+        ], 
+        "name": "VAT naliczony i jego rozliczenie"
+       }, 
+       {
+        "name": "Rozrachunki publicznoprawne z ZUS"
+       }, 
+       {
+        "name": "Rozrachunki publicznoprawne z urz\u0119dem miasta/gminy"
+       }
+      ], 
+      "name": "Rozrachunki publicznoprawne"
+     }, 
+     {
+      "name": "Rozrachunki z dostawcami"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Rozrachunki z tytu\u0142u po\u017cyczek udzielonych pracownikom"
+       }, 
+       {
+        "name": "Inne rozrachunki z pracownikami"
+       }, 
+       {
+        "name": "Rozrachunki z tytu\u0142u wynagrodze\u0144"
+       }
+      ], 
+      "name": "Rozrachunki z pracownikami"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Rozrachunki wewn\u0105trzzak\u0142adowe"
+       }, 
+       {
+        "name": "Rozrachunki z tytu\u0142u dop\u0142at i zwrotu dop\u0142at"
+       }, 
+       {
+        "name": "Pozosta\u0142e rozrachunki"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Po\u017cyczki otrzymane"
+         }, 
+         {
+          "name": "Po\u017cyczki udzielone"
+         }
+        ], 
+        "name": "Po\u017cyczki"
+       }, 
+       {
+        "name": "Rozrachunki z tytu\u0142u dywidend"
+       }, 
+       {
+        "name": "Nale\u017cno\u015bci dochodzone na drodze s\u0105dowej"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rozliczenie nadwy\u017cek"
+         }, 
+         {
+          "name": "Rozliczenie niedobor\u00f3w"
+         }
+        ], 
+        "name": "Rozliczenie niedobor\u00f3w i nadwy\u017cek"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rozrachunki z tytu\u0142u wk\u0142ad\u00f3w niepieni\u0119\u017cnych na kapita\u0142 zak\u0142adowy"
+         }, 
+         {
+          "name": "Rozrachunki z tytu\u0142u umorzenia udzia\u0142\u00f3w w\u0142asnych"
+         }, 
+         {
+          "name": "Rozrachunki z tytu\u0142u podwy\u017cszenia kapita\u0142u ze \u015brodk\u00f3w w\u0142asnych sp\u00f3\u0142ki"
+         }, 
+         {
+          "name": "Rozrachunki z tytu\u0142u wp\u0142at na kapita\u0142 zak\u0142adowy"
+         }
+        ], 
+        "name": "Rozrachunki zwi\u0105zane z kapita\u0142em zak\u0142adowym"
+       }
+      ], 
+      "name": "Pozosta\u0142e rozrachunki"
+     }
+    ], 
+    "name": "Rozrachunki i roszczenia"
+   }, 
+   {
+    "children": [
+     {
+      "name": "3900 bis 3990 Passive Rechnungsabgrenzungsposten", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3040 bis 3090 Sonstige R\u00fcckstellungen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Verbindlichkeiten aus Lieferungen u. Leistungen EU", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Umsatzsteuer aus i.g. Lieferungen 20%"
+     }, 
+     {
+      "name": "Umsatzsteuer aus i.g. Lieferungen 10%"
+     }, 
+     {
+      "name": "Verbindlichkeiten aus Lieferungen u. Leistungen Inland", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Verrechnung Finanzamt"
+     }, 
+     {
+      "name": "3110 bis 3170 Verbindlichkeiten gegen\u00fcber Kredidinstituten", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3380 bis 3390 Verbindlichkeiten aus der Annahme gezogener Wechsel u. d. Ausstellungen eigener Wechsel", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Erhaltene Anzahlungenauf Bestellungen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "R\u00fcckstellungen f\u00fcr Pensionen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3700 bis 3890 \u00dcbrige sonstige Verbindlichkeiten", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Verbindlichkeiten aus Lieferungen u. Leistungen sonst. Ausland", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Umsatzsteuer aus i.g. Erwerb 20%"
+     }, 
+     {
+      "name": "Umsatzsteuer", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Umsatzsteuer aus i.g. Erwerb 10%"
+     }, 
+     {
+      "name": "USt. \u00a719 /art (reverse charge)"
+     }, 
+     {
+      "name": "Umsatzsteuer Zahllast"
+     }, 
+     {
+      "name": "Anleihen (einschlie\u00dflich konvertibler)", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Verbindlichkeiten gegen\u00fcber Gesellschaften", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3600 bis 3690 Verbindlichkeiten im Rahmen der sozialen Sicherheit", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3180 bis 3190 Verbindlichkeiten gegen\u00fcber Finanzinstituten", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3400 bis 3470 Verbindlichkeiten gegen\u00fc. verb. Untern., Verbindl. gegen\u00fc. Untern., mit denen eine Beteiligungsverh\u00e4lnis besteht", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Umsatzsteuer-Evidenzkonto f\u00fcr erhaltene Anzahlungen auf Bestellungen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "3020 bis 3030 Steuerr\u00fcckstellungen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "R\u00fcckstellungen f\u00fcr Abfertigung", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Summe Fremdkapital"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Koszty sprzeda\u017cy wyrob\u00f3w", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty utrzymania punkt\u00f3w sprzeda\u017cy detalicznej", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty dzia\u0142alno\u015bci podstawowej-handlowej"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Straty zwi\u0105zane z wykonaniem d\u0142ugotrwa\u0142ych us\u0142ug", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rozliczone koszty dzia\u0142alno\u015bci", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty nie zako\u0144czonych d\u0142ugotrwa\u0142ych us\u0142ug", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty utrzymania hurtowni", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty dzia\u0142alno\u015bci podstawowej-produkcyjnej"
+     }, 
+     {
+      "name": "Rozliczenie koszt\u00f3w dzia\u0142alno\u015bci", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "\u015awiadczenia us\u0142ug na potrzeby reprezentacji i reklamy", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Koszty zarz\u0105dzania jednostk\u0105", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty zarz\u0105du"
+     }, 
+     {
+      "children": [
+       {
+        "name": "\u015awiadczenia us\u0142ug transportowych", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pozosta\u0142e koszty", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Koszty dzia\u0142alno\u015bci pomocniczej"
+     }
+    ], 
+    "name": "Koszty wed\u0142ug typ\u00f3w dzia\u0142alno\u015bci i ich rozliczenie"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Erl\u00f6se 20 %", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4630 bis 4650 Ertr\u00e4ge aus dem Abgang vom Anlageverm\u00f6gen, ausgen. Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se aus im Inland stpfl. EG Lieferungen 20 % USt", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4400 bis 4490 Erl\u00f6sschm\u00e4lerungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se i.g. Lieferungen (stfr)", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4500 bis 4570 Ver\u00e4nderungen des Bestandes an fertigen und unfertigen Erzeugn. sowie an noch nicht abrechenbaren Leistungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4660 bis 4670 Ertr\u00e4ge aus der Zuschreibung zum Anlageverm\u00f6gen, ausgen. Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se 0 % Ausfuhrlieferungen/Drittl\u00e4nder", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4580 bis 4590 andere aktivierte Eigenleistungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se 10 %", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4600 bis 4620 Erl\u00f6se aus dem Abgang vom Anlageverm\u00f6gen, ausgen. Finanzanlagen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Erl\u00f6se aus im Inland stpfl. EG Lieferungen 10 % USt", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4800 bis 4990 \u00dcbrige betriebliche Ertr\u00e4ge", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "4700 bis 4790 Ertr\u00e4ge aus der Aufl\u00f6sung von R\u00fcckstellungen", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Summe Betriebliche Ertr\u00e4ge"
+   }, 
+   {
+    "children": [
+     {
+      "name": "7100 bis 7190 Sonstige Steuern"
+     }, 
+     {
+      "name": "7650 bis 7680 Werbung und Repr\u00e4sentationen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7480 bis 7490 Lizenzaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7700 bis 7740 Versicherungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Verwaltungskosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7200 bis 7290 Instandhaltung u. Reinigung durh Dritte, Entsorgung, Beleuchtung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Abschreibungen auf aktivierte Aufwendungen f\u00fcr das Ingangs. u. Erweitern des Betriebes", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Herstellungskosten der zur Erzielung der Umsatzerl\u00f6se erbrachten Leistungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7610 bis 7620 Druckerzeugnisse und Vervielf\u00e4ltigungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Aufwandsstellenrechnung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Fachliteratur und Zeitungen ", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7380 bis 7390 Nachrichtenaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Spenden und Trinkgelder", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7320 bis 7330 Kfz - Aufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7840 bis 7880 Verschiedene betriebliche Aufwendungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7300 bis 7310 Transporte durch Dritte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Spesen des Geldverkehrs", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Buchwert abgegangener Anlagen, ausgenommen Finanzanlagen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7360 bis 7370 Tag- und N\u00e4chtigungsgelder", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7580 bis 7590 Aufsichtsratsverg\u00fctungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Aus- und Fortbildung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7800 bis 7810 Schadensf\u00e4lle", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7340 bis 7350 Reise- und Fahraufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7750 bis 7760 Beratungs- und Pr\u00fcfungsaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7500 bis 7530 Aufwand f\u00fcr beigestelltes Personal", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Sonstige betrieblichen Aufwendungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Vertriebskosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7010 bis 7080 Abschreibungen auf das Anlageverm\u00f6gen (ausgenommen Finanzanlagen)", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7540 bis 7570 Provisionen an Dritte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "B\u00fcromaterial und Drucksorten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7910 bis 7950 Aufwandsstellenrechung der Hersteller", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Abschreibungen vom Umlaufverm\u00f6gen, soweit diese die im Unternehmen \u00fcblichen Abschreibungen \u00fcbersteigen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Skontoertr\u00e4ge auf sonstige betriebliche Aufwendungen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "7400 bis 7430 Miet- und Pachtaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "7440 bis 7470 Leasingaufwand", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Mitgliedsbeitr\u00e4ge", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Verluste aus dem Abgang vom Anlageverm\u00f6gen, ausgenommen Finanzanlagen", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Summe Abschreibungen und Aufwendungen"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Postwertzeichen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Unterschiedsbetrag zur gebotenen Pensionsr\u00fcckstellung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen aus Lief. und Leist. Inland ", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2750 bis 2770 Kassenbest\u00e4nde in Fremdw\u00e4hrung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2250 bis 2270 Forderungen gegen\u00fcber Unternehmen, mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2200 bis 2220 Forderungen gegen\u00fcber verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2000 bis 2007 Forderungen aus Lief. und Leist. Inland", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu sonstigen Forderungen und Verm\u00f6gensgegenst\u00e4nden", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Besitzwechsel ...", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Eingeforderte aber noch nicht eingezahlte Einlagen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen aus Lief. und Leist. Ausland", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen gegen\u00fcber verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen gegen\u00fcber Unternehmen mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen aus Lief. und Leist. EU", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Eigene Anteile (Wertpapiere)", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen gegen\u00fcber Unternehmen mit denen ein Beteiligungsverh\u00e4ltnis besteht", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Sonstige Anteile", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2100 bis 2120 Forderungen aus Lief. und Leist. EU", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Schecks in Inlandsw\u00e4hrung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Vorsteuer \u00a719/Art 19 ( reverse charge ) "
+     }, 
+     {
+      "name": "Vorsteuer aus ig. Erwerb 10%"
+     }, 
+     {
+      "name": "Vorsteuer", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Steuerabgrenzung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Disagio", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen aus Lief. und Leist. Inland ", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Wertberichtigungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Unterschiedsbetrag gem. Abschnitt XII Pensionskassengesetz", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Kassenbestand", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen gegen\u00fcber verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Aktive Rechnungsabrenzungsposten", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Stempelmarken", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu sonstigen Forderungen und Verm\u00f6gensgegenst\u00e4nden", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Wertberichtigungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Pauschalwertberichtigungen zu Forderungen aus Lief. und Leist. Ausland", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2150 bis 2170 Forderungen aus Lief. und Leist. Ausland", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Anteile an verbundenen Unternehmen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Bank / Guthaben bei Kreditinstituten", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2630 bis 2670 Sonstige Wertpapiere", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einzelwertberichtigungen zu Forderungen aus Lief. und Leist. EU", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "2300 bis 2460 Sonstige Forderungen und Verm\u00f6gensgegenst\u00e4nde", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Einfuhrumsatzsteuer (bezahlt)", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Summe Umlaufverm\u00f6gen"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Nieruchomo\u015bci", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Warto\u015bci niematerialne i prawne", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Inwestycje w nieruchomo\u015bci i prawa"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inne warto\u015bci niematerialne i prawne", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Koszty zako\u0144czonych prac rozwojowych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Nabyta warto\u015b\u0107 firmy", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Zaliczki na warto\u015bci niematerialne i prawne", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Warto\u015bci niematerialne i prawne"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Odpisy umorzeniowe innych \u015brodk\u00f3w trwa\u0142ych", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe warto\u015bci grunt\u00f3w i prawa wieczystego u\u017cytkowania grunt\u00f3w", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe \u015brodk\u00f3w transportu", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe ulepsze\u0144 obcych \u015brodk\u00f3w trwa\u0142ych", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe urz\u0105dze\u0144 technicznych i maszyn", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe budynk\u00f3w, lokali i obiekt\u00f3w in\u017cynierii l\u0105dowej i wodnej", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odpisy umorzeniowe \u015brodk\u00f3w trwa\u0142ych"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Odpisy umorzeniowe innych warto\u015bci niematerialnych i prawnych", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe warto\u015bci firmy", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe zako\u0144czonych prac rozwojowych", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odpisy umorzeniowe warto\u015bci niematerialnych i prawnych"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Odpisy umorzeniowe inwestycji w warto\u015bci niematerialne i prawne", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odpisy umorzeniowe inwestycji w nieruchomo\u015bci", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odpisy umorzeniowe inwestycji w nieruchomo\u015bci i prawa"
+       }
+      ], 
+      "name": "Odpisy umorzeniowe \u015brodk\u00f3w trwa\u0142ych oraz warto\u015bci niematerialnych i prawnych"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Zaliczki na \u015brodki trwa\u0142e w budowie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Nak\u0142ady na budow\u0119 \u015brodka trwa\u0142ego", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Ulepszenia \u015brodka trwa\u0142ego", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Ulepszenia obcych \u015brodk\u00f3w trwa\u0142ych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Inwestycje budowy \u015brodka trwa\u0142ego", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "\u015arodki trwa\u0142e w budowie"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inne \u015brodki trwa\u0142e", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Budynki, lokale i obiekty in\u017cynierii l\u0105dowej i wodnej", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u015arodki transportu", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Grunty w\u0142asne i prawa wieczystego u\u017cytkowania grunt\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Urz\u0105dzenia techniczne i maszyny", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "\u015arodki Trwa\u0142e"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Inne rozliczenia mi\u0119dzyokresowe", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aktywa z tytu\u0142u odroczonego podatku dochodowego", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "D\u0142ugoterminowe rozliczenia mi\u0119dzyokresowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Od pozosta\u0142ych jednostek", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Od jednostek powi\u0105zanych", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Nale\u017cno\u015bci d\u0142ugoterminowe"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inne d\u0142ugoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzielone po\u017cyczki", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odpisy aktualizuj\u0105ce d\u0142ugoterminowe aktywa finansowe"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzielone po\u017cyczki", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne d\u0142ugoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "W jednostkach powi\u0105zanych"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inne d\u0142ugoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzielone po\u017cyczki", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "W pozosta\u0142ych jednostkach"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Inne rodzaje d\u0142ugoterminowych aktyw\u00f3w finansowych", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inne inwestycje d\u0142ugoterminowe"
+       }
+      ], 
+      "name": "D\u0142ugoterminowe aktywa finansowe"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Odpisy aktualizuj\u0105ce udzielone po\u017cyczki d\u0142ugoterminowe", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odpisy aktualizuj\u0105ce inne rodzaje d\u0142ugoterminowych aktyw\u00f3w finansowych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odpisy aktualizuj\u0105ce udzia\u0142y i akcje w obcych jednostkach", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odpisy aktualizuj\u0105ce lokaty", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Odpisy aktualizuj\u0105ce d\u0142ugoterminowe aktywa finansowe"
+     }
+    ], 
+    "name": "Aktywa Trwa\u0142e"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Bilanzgewinn (-verlust )", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Er\u00f6ffnungsbilanz"
+     }, 
+     {
+      "name": "9700 bis 9790 Einlagen stiller Gesellschafter "
+     }, 
+     {
+      "name": "9300 bis 9380 Gewinnr\u00fccklagen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "9900 bis 9999 Evidenzkonten"
+     }, 
+     {
+      "name": "9000 bis 9180 Gezeichnetes bzw. gewidmetes Kapital", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "nicht eingeforderte ausstehende Einlagen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "9600 bis 9690 Privat und Verrechnungskonten bei Einzelunternehmen und Personengesellschaften"
+     }, 
+     {
+      "name": "Schlussbilanz"
+     }, 
+     {
+      "name": "9200 bis 9290 Kapitalr\u00fccklagen", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Gewinn- und Verlustrechnung"
+     }, 
+     {
+      "name": "9400 bis 9590 Bewertungsreserven uns sonst. unversteuerte R\u00fccklagen", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Summe Eigenkapital R\u00fccklagen Abschlusskonten"
+   }, 
+   {
+    "children": [
+     {
+      "name": "1000 bis 1090 Bezugsverrechnung", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1900 bis 1990 Wertberichtigungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1200 bis 1290 Bezogene Teile", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1700 bis 1790 Noch nicht abgerechenbare Leistungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "geleistete Anzahlungen", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1100 bis 1190 Rohstoffe", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1600 bis 1690 Waren", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1350 bis 1390 Betriebsstoffe", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1500 bis 1590 Fertige Erzeugniss", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1300 bis 1340 Hilfsstoffe", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "1400 bis 1490 Unfertige Erzeugniss", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Summe Vorr\u00e4te"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Materia\u0142y", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Opakowania", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Materia\u0142y w przerobie", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Materia\u0142y i opakowania"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Towary poza jednostk\u0105", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Towary w detalu", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Towary w zak\u0142adach gastronomicznych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Towary w hurcie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Nieruchomo\u015bci i prawa maj\u0105tkowe przeznaczone do obrotu", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Towary skupu", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Towary"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Odchylenia od cen ewidencyjnych materia\u0142\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odchylenia od cen ewidencyjnych opakowa\u0144", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Odchylenia z tytu\u0142u aktualizacji warto\u015bci zapas\u00f3w materia\u0142\u00f3w i towar\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Odchylenia od cen ewidencyjnych towar\u00f3w w hurcie", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odchylenia od cen ewidencyjnych towar\u00f3w w zak\u0142adach gastronomicznych", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odchylenia od cen ewidencyjnych towar\u00f3w w detalu", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Odchylenia od cen ewidencyjnych towar\u00f3w skupu", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Odchylenia od cen ewidencyjnych towar\u00f3w"
+       }
+      ], 
+      "name": "Odchylenia od cen ewidencyjnych materia\u0142\u00f3w i towar\u00f3w"
+     }, 
+     {
+      "name": "Zapasy obce", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Niedobory, szkody i nadwy\u017cki w transporcie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie zakupu sk\u0142adnik\u00f3w aktyw\u00f3w trwa\u0142ych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie zakupu towar\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Op\u0142aty manipulacyjne policzone przez Urz\u0105d Celny", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie warto\u015bci materia\u0142\u00f3w i towar\u00f3w w drodze", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie zakupu materia\u0142\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Reklamacje faktur dostawc\u00f3w", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rozliczenie zakupu us\u0142ug obcych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Warto\u015bci dostaw niefakturowanych", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Rozliczenie zakupu"
+     }
+    ], 
+    "name": "Materia\u0142y i towary"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Inne kr\u00f3tkoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Kr\u00f3tkoterminowe aktywa finansowe w pozosta\u0142ych jednostkach"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Udzielone po\u017cyczki", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Inne papiery warto\u015bciowe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Udzia\u0142y lub akcje", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inne kr\u00f3tkoterminowe aktywa finansowe", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Kr\u00f3tkoterminowe aktywa finansowe w jednostkach powi\u0105zanych"
+       }, 
+       {
+        "name": "Odpisy aktualizuj\u0105ce kr\u00f3tkoterminowe aktywa finansowe", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Kr\u00f3tkoterminowe aktywa finansowe"
+     }, 
+     {
+      "name": "Inne \u015brodki pieni\u0119\u017cne", 
+      "root_type": "Asset"
+     }, 
+     {
+      "name": "Inne inwestycje kr\u00f3tkoterminowe", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kasa krajowych \u015brodk\u00f3w pieni\u0119\u017cnych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kasa zagranicznych \u015brodk\u00f3w pieni\u0119\u017cnych", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "\u015arodki pieni\u0119\u017cne w kasie"
+     }, 
+     {
+      "name": "Inne aktywa pieni\u0119\u017cne", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Rachunek bankowy wyodr\u0119bnionych \u015brodk\u00f3w pieni\u0119\u017cnych ZF\u015aS", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Rachunek bankowy akretytywy", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Rachunek bankowy lokat terminowych", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Inne rachunki bankowe"
+       }, 
+       {
+        "name": "Rachunki kredyt\u00f3w bankowych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rachunek \u015brodk\u00f3w wyodr\u0119bnionych i zablokowanych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rachunek \u015brodk\u00f3w walutowych", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u015arodki pieni\u0119\u017cne w drodze", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rachunek bie\u017c\u0105cy", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Rachunki i kredyty bankowe"
+     }, 
+     {
+      "name": "Kr\u00f3tkoterminowe rozliczenia mi\u0119dzyokresowe", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "\u015arodki pieni\u0119\u017cne, rachunki bankowe oraz inne kr\u00f3tkoterminowe aktywa finansowe"
+   }, 
+   {
+    "children": [
+     {
+      "name": "6400 bis 6440 Aufwendungen f\u00fcr Abfertigungen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6200 bis 6390 Geh\u00e4lter", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6560 bis 6590 Gesetzlicher Sozialaufwand Angestellte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6500 bis 6550 Gesetzlicher Sozialaufwand Arbeiter", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6660 bis 6690 Gehaltsabh\u00e4ngige Abgaben und Pflichtbeitr\u00e4gte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6600 bis 6650 Lohnabh\u00e4ngige Abgaben und Pflichtbeitr\u00e4gte", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6450 bis 6490 Aufwendungen f\u00fcr Altersversorgung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Aufwandsstellenrechnung", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6000 bis 6190 L\u00f6hne", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "6700 bis 6890 Sonstige Sozialaufwendungen", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Summe Personalaufwand"
+   }
+  ], 
+  "name": "Plan kont"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/pt_pt_chart_template.json b/setup/doctype/company/charts/pt_pt_chart_template.json
new file mode 100644
index 0000000..d29cd43
--- /dev/null
+++ b/setup/doctype/company/charts/pt_pt_chart_template.json
@@ -0,0 +1,2134 @@
+{
+ "name": "Portugal - Template do Plano de Contas SNC", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Resultado l\u00edquido", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imposto estimado para o per\u00edodo", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Imposto diferido", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Impostos sobre o rendimento do per\u00edodo", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Resultado antes de impostos", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Resultado l\u00edquido do per\u00edodo", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Dividendos antecipados", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Resultados"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Edif\u00edcios e outras constru\u00e7\u00f5es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Deprecia\u00e7\u00f5es acumuladas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Terrenos e recursos naturais", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Outras propriedades de investimento", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Propriedades de investimento", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Terrenos e recursos naturais", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Equipamento administrativo", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Equipamento de transporte", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Equipamento b\u00e1sico", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Edif\u00edcios e outras constru\u00e7\u00f5es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Equipamentos biol\u00f3gicos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Deprecia\u00e7\u00f5es acumuladas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Outros activos fixos tang\u00edveis", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Activo fixos tang\u00edveis", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Detidos at\u00e9 \u00e0 maturidade", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Ac\u00e7\u00f5es da sgm (6500x1,00)", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Outros investimentos financeiros", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Participa\u00e7\u00f5es de capital", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Empr\u00e9stimos concedidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Investimentos noutras empresas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Participa\u00e7\u00f5es de capital outros m\u00e9todos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Participa\u00e7\u00f5es de capital m\u00e9todo da equiv. patrimonial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Empr\u00e9stimos concedidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Investimentos em entidades conjuntamente controladas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Participa\u00e7\u00f5es de capital m\u00e9todo da equiv. patrimonial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Participa\u00e7\u00f5es de capital outros m\u00e9todos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Empr\u00e9stimos concedidos", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Investimentos em associadas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Empr\u00e9stimos concedidos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Participa\u00e7\u00f5es de capital outros m\u00e9todos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Participa\u00e7\u00f5es de capital m\u00e9todo da equiv. patrimonial", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Investimentos em subsidi\u00e1rias", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Investimentos financeiros", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Activos n\u00e3o correntes detidos para venda", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Activos intang\u00edveis em curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Activos fixos tang\u00edveis em curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Propriedades de investimento em curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Investimentos financeiros em curso", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Adiantamentos por conta de investimentos", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Investimentos em curso", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Outros activos intang\u00edveis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Projectos de desenvolvimento", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Programas de computador", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Deprecia\u00e7\u00f5es acumuladas", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Propriedade industrial", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Activos intang\u00edveis", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "Investimentos"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Activos financeiros"
+         }, 
+         {
+          "name": "Passivos financeiros"
+         }
+        ], 
+        "name": "Instrumentos financeiros detidos para negocia\u00e7\u00e3o"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Potencialmente desfavor\u00e1veis"
+         }, 
+         {
+          "name": "Potencialmente favor\u00e1veis"
+         }
+        ], 
+        "name": "Derivados"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Outros activos financeiros"
+         }, 
+         {
+          "name": "Outros passivos financeiros"
+         }
+        ], 
+        "name": "Outros activos e passivos financeiros"
+       }
+      ], 
+      "name": "Outros instrumentos financeiros"
+     }, 
+     {
+      "name": "Caixa"
+     }, 
+     {
+      "name": "Dep\u00f3sitos \u00e0 ordem"
+     }, 
+     {
+      "name": "Outros dep\u00f3sitos banc\u00e1rios"
+     }
+    ], 
+    "name": "Meios financeiros l\u00edquidos"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mercadorias em tr\u00e2nsito", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mercadorias em poder de terceiros", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Mercadorias", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Produtos e trabalhos em curso", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Activos biol\u00f3gicos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Produtos e trabalhos em curso", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Subprodutos, desperd\u00edcios, res\u00edduos e refugos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Produtos acabados e interm\u00e9dios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mat\u00e9rias primas, subsidi\u00e1rias e de consumo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mercadorias", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Reclassifica\u00e7\u00e3o e regular. de invent. e activos biol\u00f3g.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Adiantamentos por conta de compras", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mat\u00e9rias subsidi\u00e1rias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Embalagens", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Materiais diversos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mat\u00e9rias em tr\u00e2nsito", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mat\u00e9rias primas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Mat\u00e9rias primas, subsidi\u00e1rias e de consumo", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Mat\u00e9rias primas, subsidi\u00e1rias e de consumo", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Devolu\u00e7\u00f5es de compras", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Descontos e abatimentos em compras", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Activos biol\u00f3gicos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mercadorias", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Compras", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Produtos em poder de terceiros", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Produtos acabados e interm\u00e9dios", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Subprodutos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Desperd\u00edcios, res\u00edduos e refugos", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Subprodutos, desperd\u00edcios, res\u00edduos e refugos", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Animais", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Plantas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Consum\u00edveis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Plantas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Animais", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "De produ\u00e7\u00e3o", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Activos biol\u00f3gicos", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Invent\u00e1rios e activos biol\u00f3gicos"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Outros servi\u00e7os", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Limpeza, higiene e conforto", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Contencioso e notariado", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Royalties", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Seguros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Rendas e alugueres", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Comunica\u00e7\u00e3o", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Despesas de representa\u00e7\u00e3o", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Servi\u00e7os diversos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Subcontratos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Electricidade", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Combust\u00edveis", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Outros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "\u00c1gua", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Energia e flu\u00eddos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Transporte de pessoal", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Transportes de mercadorias", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Desloca\u00e7\u00f5es e estadas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Outros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Desloca\u00e7\u00f5es, estadas e transportes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Publicidade e propaganda", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Conserva\u00e7\u00e3o e repara\u00e7\u00e3o", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Comiss\u00f5es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Honor\u00e1rios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Outros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Vigil\u00e2ncia e seguran\u00e7a", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Trabalhos especializados", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Trabalhos especializados", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Outros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Livros de documenta\u00e7\u00e3o t\u00e9cnica", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Material de escrit\u00f3rio", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Artigos de oferta", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Ferramentas e utens\u00edlios de desgaste r\u00e1pido", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Materiais", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Fornecimentos e servi\u00e7os externos", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Mercadorias", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Activos biol\u00f3gicos (compras)", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mat\u00e9rias primas, subsidi\u00e1rias e de consumo", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Custo das mercadorias vendidas e mat\u00e9rias consumidas", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gastos de ac\u00e7\u00e3o social", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Seguros de acidentes no trabalho e doen\u00e7as profissionais", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Encargos sobre remunera\u00e7\u00f5es", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Indemniza\u00e7\u00f5es", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Outros gastos com o pessoal", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Remunera\u00e7\u00f5es dos \u00f3rg\u00e3os sociais", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Remunera\u00e7\u00f5es do pessoal", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Pr\u00e9mios para pens\u00f5es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Outros benef\u00edcios", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Benef\u00edcios p\u00f3s emprego", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos com o pessoal", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Em activos n\u00e3o correntes detidos para venda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em activos fixos tang\u00edveis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em propriedades de investimento", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em investimentos em curso", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em invent\u00e1rios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em investimentos financeiros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Outros devedores", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Clientes", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Em d\u00edvidas a receber", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em activos intang\u00edveis", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Perdas por imparidade", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Activos fixos tang\u00edveis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Activos intang\u00edveis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Propriedades de investimento", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos de deprecia\u00e7\u00e3o e de amortiza\u00e7\u00e3o", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Impostos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Contratos onerosos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Garantias a clientes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Reestrutura\u00e7\u00e3o", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Outras provis\u00f5es", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Processos judiciais em curso", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mat\u00e9rias ambientais", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Acidentes de trabalho e doen\u00e7as profissionais", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Provis\u00f5es do per\u00edodo", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Em activos biol\u00f3gicos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em instrumentos financeiros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em investimentos financeiros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Em propriedades de investimento", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Perdas por redu\u00e7\u00f5es de justo valor", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Outros juros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Juros de financiamento obtidos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Juros suportados", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Outras", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Relativos a financiamentos obtidos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Diferen\u00e7as de c\u00e2mbio desfavor\u00e1veis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Relativos a financiamentos obtidos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Outros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Outros gastos e perdas de financiamento", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gastos e perdas de financiamento", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Taxas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Impostos directos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Impostos indirectos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Impostos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Gastos em propriedades de investimento", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Abates", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Aliena\u00e7\u00f5es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sinistros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Outros gastos e perdas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos e perdas em investimentos n\u00e3o financeiros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Outras perdas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Quebras", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sinistros", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Perdas em invent\u00e1rios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Outros gastos e perdas", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cobertura de preju\u00edzos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Aplica\u00e7\u00e3o do m\u00e9todo da equival\u00eancia patrimonial", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Aliena\u00e7\u00f5es", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos e perdas em subsid. , assoc. e empreend. conjuntos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "D\u00edvidas incobr\u00e1veis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ofertas e amostras de invent\u00e1rios", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Quotiza\u00e7\u00f5es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Outros n\u00e3o especificados", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Donativos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Correc\u00e7\u00f5es relativas a per\u00edodos anteriores", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Perdas em instrumentos financeiros", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Insufici\u00eancia da estimativa para impostos", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Outros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Descontos de pronto pagamento concedidos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aliena\u00e7\u00f5es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cobertura de preju\u00edzos", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Outros gastos e perdas", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Gastos e perdas nos restantes investimentos financeiros", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Outros gastos e perdas", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "Gastos"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Desempenho de cargos sociais noutras empresas", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Estudos, projectos e assist\u00eancia tecnol\u00f3gica", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Aluguer de equipamento", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Servi\u00e7os sociais", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Outros rendimentos suplementares", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Royalties", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Rendimentos suplementares", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Outros rendimentos e ganhos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Aliena\u00e7\u00f5es", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Rendas e outros rendimentos em propriedades de investimento", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sinistros", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Rendimentos e ganhos em investimentos n\u00e3o financeiros", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aliena\u00e7\u00f5es", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Diferen\u00e7as de c\u00e2mbio favor\u00e1veis", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Outros rendimentos e ganhos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Rendimentos e ganhos nos restantes activos financeiros", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aplica\u00e7\u00e3o do m\u00e9todo da equival\u00eancia patrimonial", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Aliena\u00e7\u00f5es", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Outros rendimentos e ganhos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Rendimentos e ganhos em subsidi\u00e1rias, associadas e empr", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Recupera\u00e7\u00e3o de d\u00edvidas a receber", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Descontos de pronto pagamento obtidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sinistros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sobras", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Outros ganhos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ganhos em invent\u00e1rios", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Correc\u00e7\u00f5es relativas a per\u00edodos anteriores", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ganhos em outros instrumentos financeiros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Restitui\u00e7\u00e3o de impostos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Outros n\u00e3o especificados", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Excesso da estimativa para impostos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Imputa\u00e7\u00e3o de subs\u00eddios para investimentos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Outros", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Outros rendimentos e ganhos", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Em activos fixos tang\u00edveis", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Em propriedades de investimento", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Em activos intang\u00edveis", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Em investimentos em curso", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Outros devedores", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Clientes", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Em d\u00edvidas a receber", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Em invent\u00e1rios", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Em investimentos financeiros", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Em activos n\u00e3o correntes detidos para venda", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "De perdas por imparidade", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos intang\u00edveis", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Activos fixos tang\u00edveis", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Propriedades de investimento", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "De deprecia\u00e7\u00f5es e de amortiza\u00e7\u00f5es", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Impostos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Acidentes no trabalho e doen\u00e7as profissionais", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Outras provis\u00f5es", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Processos judiciais em curso", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Garantias a clientes", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Reestrutura\u00e7\u00e3o", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Contratos onerosos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Mat\u00e9rias ambientais", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "De provis\u00f5es", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Revers\u00f5es", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Em activos biol\u00f3gicos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Em investimentos financeiros", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Em propriedades de investimento", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Em instrumentos financeiros", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Ganhos por aumentos de justo valor", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Mercadoria", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Activos biol\u00f3gicos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produtos acabados e interm\u00e9dios", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subprodutos, desperd\u00edcios, res\u00edduos e refugos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Descontos e abatimentos em vendas", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Iva das vendas com imposto inclu\u00eddo", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Devolu\u00e7\u00f5es de vendas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Vendas", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Servi\u00e7os secund\u00e1rios", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Iva dos servi\u00e7os com imposto inclu\u00eddo", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Servi\u00e7o a", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Servi\u00e7o b", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Descontos e abatimentos", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Presta\u00e7\u00f5es de servi\u00e7os", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Activos biol\u00f3gicos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subprodutos, desperd\u00edcios, res\u00edduos e refugos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produtos e trabalhos em curso", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produtos acabados e interm\u00e9dios", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Varia\u00e7\u00f5es nos invent\u00e1rios da produ\u00e7\u00e3o", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Activos por gastos diferidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Activos intang\u00edveis", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Activos fixos tang\u00edveis", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Propriedades de investimento", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Trabalhos para a pr\u00f3pria entidade", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Outras", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "De subsidi\u00e1rias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "De associadas e empreendimentos conjuntos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "De aplica\u00e7\u00f5es de meios financeiros l\u00edquidos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Dividendos obtidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "De outras aplica\u00e7\u00f5es de meios financeiros l\u00edquidos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "De financiamentos concedidos a associadas e emp. conjun", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "De dep\u00f3sitos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "De outros financiamentos obtidos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "De financiamentos concedidos a subsidi\u00e1rias", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "De financiamentos obtidos", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Juros obtidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Outros rendimentos similares", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Juros, dividendos e outros rendimentos similares", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Subs\u00eddios do estado e outros entes p\u00fablicos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subs\u00eddios de outras entidades", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Subs\u00eddios \u00e0 explora\u00e7\u00e3o", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "Rendimentos"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Lucros dispon\u00edveis", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Empr\u00e9stimos concedidos empresa m\u00e3e", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Accionistas c. subscri\u00e7\u00e3o", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Quotas n\u00e3o liberadas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Adiantamentos por conta de lucros", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Resultados atribu\u00eddos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Outras opera\u00e7\u00f5es", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Accionistas/s\u00f3cios", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Tributos das autarquias locais", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Outras tributa\u00e7\u00f5es", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reten\u00e7\u00e3o de impostos sobre rendimentos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Iva a recuperar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Iva apuramento", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Iva liquida\u00e7\u00f5es oficiosas", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Iva reembolsos pedidos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Iva dedut\u00edvel", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Iva suportado", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Iva a pagar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Iva regulariza\u00e7\u00f5es", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Iva liquidado", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Imposto sobre o valor acrescentado", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Imposto sobre o rendimento", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Outros impostos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Contribui\u00e7\u00f5es para a seguran\u00e7a social", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Estado e outros entes p\u00fablicos", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acidentes de trabalho e doen\u00e7as profissionais", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Impostos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Contratos onerosos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Processos judiciais em curso", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Outras provis\u00f5es", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Garantias a clientes", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Mat\u00e9rias ambientais", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reestrutura\u00e7\u00e3o", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Provis\u00f5es", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Rendimentos a reconhecer", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Gastos a reconhecer", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Diferimentos", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Adiantamentos de clientes"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes empresas associadas"
+         }, 
+         {
+          "name": "Clientes gerais"
+         }, 
+         {
+          "name": "Clientes empresas subsidi\u00e1rias"
+         }, 
+         {
+          "name": "Clientes empresa m\u00e3e"
+         }, 
+         {
+          "name": "Clientes empreendimentos conjuntos"
+         }, 
+         {
+          "name": "Clientes outras partes relacionadas"
+         }
+        ], 
+        "name": "Clientes c/c"
+       }, 
+       {
+        "name": "Perdas por imparidade acumuladas"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Clientes gerais"
+         }, 
+         {
+          "name": "Clientes empresa m\u00e3e"
+         }, 
+         {
+          "name": "Clientes empresas subsidi\u00e1rias"
+         }, 
+         {
+          "name": "Clientes outras partes relacionadas"
+         }, 
+         {
+          "name": "Clientes empresas associadas"
+         }, 
+         {
+          "name": "Clientes empreendimentos conjuntos"
+         }
+        ], 
+        "name": "Clientes t\u00edtulos a receber"
+       }
+      ], 
+      "name": "Clientes"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Com o pessoal"
+         }, 
+         {
+          "name": "Com os \u00f3rg\u00e3os sociais"
+         }
+        ], 
+        "name": "Outras opera\u00e7\u00f5es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Aos \u00f3rg\u00e3os sociais"
+         }, 
+         {
+          "name": "Ao pessoal"
+         }
+        ], 
+        "name": "Adiantamentos"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ao pessoal"
+         }, 
+         {
+          "name": "Aos \u00f3rg\u00e3os sociais"
+         }
+        ], 
+        "name": "Remunera\u00e7\u00f5es a pagar"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Do pessoal"
+         }, 
+         {
+          "name": "Dos \u00f3rg\u00e3os sociais"
+         }
+        ], 
+        "name": "Cau\u00e7\u00f5es"
+       }, 
+       {
+        "name": "Perdas por imparidade acumuladas"
+       }
+      ], 
+      "name": "Pessoal"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Fornecedores gerais"
+         }, 
+         {
+          "name": "Fornecedores empresas subsidi\u00e1rias"
+         }, 
+         {
+          "name": "Fornecedores outras partes relacionadas"
+         }, 
+         {
+          "name": "Fornecedores empreendimentos conjuntos"
+         }, 
+         {
+          "name": "Fornecedores empresa m\u00e3e"
+         }, 
+         {
+          "name": "Fornecedores empresas associadas"
+         }
+        ], 
+        "name": "Fornecedores c/c"
+       }, 
+       {
+        "name": "Adiantamentos a fornecedores"
+       }, 
+       {
+        "name": "Perdas por imparidade acumuladas"
+       }, 
+       {
+        "name": "Facturas em recep\u00e7\u00e3o e confer\u00eancia"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Fornecedores outras partes relacionadas"
+         }, 
+         {
+          "name": "Fornecedores empreendimentos conjuntos"
+         }, 
+         {
+          "name": "Fornecedores empresas subsidi\u00e1rias"
+         }, 
+         {
+          "name": "Fornecedores empresa m\u00e3e"
+         }, 
+         {
+          "name": "Fornecedores gerais"
+         }, 
+         {
+          "name": "Fornecedores empresas associadas"
+         }
+        ], 
+        "name": "Fornecedores t\u00edtulos a pagar"
+       }
+      ], 
+      "name": "Fornecedores"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Empr\u00e9stimos banc\u00e1rios", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Loca\u00e7\u00f5es financeiras", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Descobertos banc\u00e1rios", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Institui\u00e7\u00f5es de cr\u00e9dito e sociedades financeiras", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Outros participantes suprimentos e outros m\u00fatuos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Empresa m\u00e3e suprimentos e outros m\u00fatuos", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Participantes de capital", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Empr\u00e9stimos por obriga\u00e7\u00f5es", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Mercado de valores mobili\u00e1rios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Outros financiadores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Subsidi\u00e1rias, associadas e empreendimentos conjuntos", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Financiamentos obtidos", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Outros devedores e credores", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Perdas por imparidade acumuladas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Credores por subscri\u00e7\u00f5es n\u00e3o liberadas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Benef\u00edcios p\u00f3s emprego", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Adiantamentos a fornecedores de investimentos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Facturas em recep\u00e7\u00e3o e confer\u00eancia", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Fornecedores de investimentos contas gerais", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Fornecedores de investimentos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Credores por acr\u00e9scimos de gastos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Devedores por acr\u00e9scimo de rendimentos", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Devedores e credores por acr\u00e9scimos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Adiantamentos por conta de vendas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activos por impostos diferidos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Passivos por impostos diferidos", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Impostos diferidos", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Outras contas a receber e a pagar", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Contas a receber e a pagar"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Antes de imposto sobre o rendimento", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Impostos diferidos", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Reavalia\u00e7\u00f5es decorrentes de diplomas legais", 
+        "root_type": "Liability"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Impostos diferidos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Antes de imposto sobre o rendimento", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Outros excedentes", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Excedentes de revalor. de activos fixos tang\u00edveis e int", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Doa\u00e7\u00f5es", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Ajustamentos por impostos diferidos", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Subs\u00eddios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Outras", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Diferen\u00e7as de convers\u00e3o de demonstra\u00e7\u00f5es financeiras", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Outras varia\u00e7\u00f5es no capital pr\u00f3prio", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Outros instrumentos de capital pr\u00f3prio", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Resultados transitados", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Capital", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Outras reservas", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Reservas legais", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Reservas", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Lucros n\u00e3o atribu\u00eddos", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Decorrentes de outras varia\u00e7\u00f5es nos capitais pr\u00f3prios d", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Ajustamentos de transi\u00e7\u00e3o", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "Relacionados com o m\u00e9todo da equival\u00eancia patrimonial", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Outros", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Ajustamentos em activos financeiros", 
+      "root_type": "Liability"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Descontos e pr\u00e9mios", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Valor nominal", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Ac\u00e7\u00f5es (quotas) pr\u00f3prias", 
+      "root_type": "Liability"
+     }, 
+     {
+      "name": "Pr\u00e9mios de emiss\u00e3o", 
+      "root_type": "Liability"
+     }
+    ], 
+    "name": "Capital, reservas e resultados transitados"
+   }
+  ], 
+  "name": "SNC Portugal"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/ro_romania_chart_template.json b/setup/doctype/company/charts/ro_romania_chart_template.json
new file mode 100644
index 0000000..d8f8463
--- /dev/null
+++ b/setup/doctype/company/charts/ro_romania_chart_template.json
@@ -0,0 +1,9881 @@
+{
+ "name": "Romania - Chart of Accounts", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Venituri din sconturi obtinute", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Venituri din actiuni detinute la entitatile afiliate", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus sur autres formes de participation ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances rattach\u00e9es \u00e0 des participations", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din interese de participare", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din imobilizari financiare"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Revenus des titres immobilis\u00e9s", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des pr\u00eats", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances immobilis\u00e9es", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din investitii financiare pe termen scurt", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Alte venituri financiare", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din diferente de curs valutar", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Revenus des cr\u00e9ances diverses", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances commerciales ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din creante imobilizate", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Venituri din imobilizari financiare cedate", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Castiguri din investitii pe termen scurt cedate", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din investitii financiare cedate"
+           }, 
+           {
+            "name": "Venituri din dobanzi", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENITURI FINANCIARE"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Venituri din subventii de exploatare pentru alte cheltuieli externe", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare aferente altor venituri", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru asigurari si protectie sociala", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru dobanda datorata", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru materii prime si materiale consumabile ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru alte cheltuieli de exploatare", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare aferente cifrei de afaceri", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru plata personalului", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din subventii de exploatare"
+           }
+          ], 
+          "name": "VENITURI DIN SUBVENTII DE EXPLOATARE"
+         }
+        ], 
+        "name": "CONTURI DE VENITURI"
+       }, 
+       {
+        "name": "CONTURI DE CHELTUIELI"
+       }
+      ], 
+      "name": "Conturile de venituri si cheltuieli"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Diferente de pret la materii prime si materiale"
+           }, 
+           {
+            "name": "Materiale de natura obiectelor de inventar"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Seminte si materiale de plantat"
+             }, 
+             {
+              "name": "Combustibili"
+             }, 
+             {
+              "name": "Materiale auxiliare"
+             }, 
+             {
+              "name": "Furaje"
+             }, 
+             {
+              "name": "Alte materiale consumabile"
+             }, 
+             {
+              "name": "Materiale pentru ambalat"
+             }, 
+             {
+              "name": "Piese de schimb"
+             }
+            ], 
+            "name": "Materiale consumabile"
+           }, 
+           {
+            "name": "Materii prime"
+           }
+          ], 
+          "name": "STOCURI DE MATERII PRIME SI MATERIALE"
+         }
+        ], 
+        "name": "CONTURI DE STOCURI SI PRODUCTIE IN CURS DE EXECUTIE"
+       }, 
+       {
+        "name": "CONTURI DE IMOBILIZARI"
+       }, 
+       {
+        "name": "CONTURI DE TREZORERIE"
+       }, 
+       {
+        "name": "Conturi de capitaluri"
+       }, 
+       {
+        "name": "CONTURI DE TERTI"
+       }
+      ], 
+      "name": "Conturi de bilant"
+     }
+    ], 
+    "name": "Conturi financiare"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Decontari privind interesele de participare"
+         }, 
+         {
+          "name": "OP\u00c9RATIONS AVEC LES AUTRES ORGANISMES INTERNATIONAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour garanties donn\u00e9es aux clients"
+           }, 
+           {
+            "name": "Provisions pour amendes, doubles droits et p\u00e9nalit\u00e9s"
+           }, 
+           {
+            "name": "Autres provisions pour risques et charges"
+           }, 
+           {
+            "name": "Provisions pour pertes de change"
+           }, 
+           {
+            "name": "Provisions pour imp\u00f4ts"
+           }, 
+           {
+            "name": "Provisions pour litiges"
+           }
+          ], 
+          "name": "Autres provisions pour risques et charges"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente decontarilor intre entitatile afiliate"
+           }, 
+           {
+            "name": "Decontari privind interesele de participare"
+           }, 
+           {
+            "name": "Dobanzi aferente decontarilor privind interesele de participare"
+           }, 
+           {
+            "name": "Decontari intre entitatile afiliate"
+           }
+          ], 
+          "name": "OP\u00c9RATIONS AVEC LES ORGANISMES AFRICAINS"
+         }, 
+         {
+          "name": "Dividende de plata"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionari/asociati dobanzi la conturi curente"
+           }, 
+           {
+            "name": "Actionari/asociati - conturi curente"
+           }
+          ], 
+          "name": "Sume datorate actionarilor/asociatilor"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Organismes internationaux, subventions \u00e0 recevoir"
+           }, 
+           {
+            "name": "Organismes internationaux, fonds de dotation \u00e0 recevoir"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "ORGANISMES INTERNATIONAUX, FONDS DE DOTATION ET SUBVENTIONS \u00c0 RECEVOIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionnaires d\u00e9faillants"
+           }, 
+           {
+            "name": "Associ\u00e9s - Versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Apports en num\u00e9raire"
+             }, 
+             {
+              "name": "Apports en nature"
+             }
+            ], 
+            "name": "Associ\u00e9s - Comptes d'apport en soci\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Associ\u00e9s - Capital \u00e0 rembourser"
+           }, 
+           {
+            "name": "Associ\u00e9s - Versements anticip\u00e9s"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Associ\u00e9s - Capital appel\u00e9, non vers\u00e9"
+             }, 
+             {
+              "name": "Actionnaires - Capital souscrit et appel\u00e9, non vers\u00e9"
+             }
+            ], 
+            "name": "Apporteurs - Capital appel\u00e9, non vers\u00e9"
+           }
+          ], 
+          "name": "Decontari cu actionarii/asociatii privind capitalul"
+         }
+        ], 
+        "name": "ORGANISMES INTERNATIONAUX"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres repr\u00e9sentants du personnel"
+           }, 
+           {
+            "name": "D\u00e9l\u00e9gu\u00e9s du personnel"
+           }, 
+           {
+            "name": "Syndicats et Comit\u00e9s d'entreprises, d'\u00c9tablissement"
+           }
+          ], 
+          "name": "REPR\u00c9SENTANTS DU PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte creante in legatura cu personalul"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Dettes provisionn\u00e9es pour cong\u00e9s \u00e0 payer"
+           }, 
+           {
+            "name": "Dettes provisionn\u00e9es pour participation des salari\u00e9s aux r\u00e9sultats", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres Charges \u00e0 payer"
+           }
+          ], 
+          "name": "PERSONNEL, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "PERSONNEL \u2013 D\u00c9P\u00d4TS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serve sp\u00e9ciale", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Organismes sociaux rattach\u00e9s \u00e0 l'entreprise"
+           }, 
+           {
+            "name": "Assistance m\u00e9dicale"
+           }, 
+           {
+            "name": "Allocations familiales"
+           }, 
+           {
+            "name": "Autres oeuvres sociales internes"
+           }
+          ], 
+          "name": "PERSONNEL, OEUVRES SOCIALES INTERNES"
+         }, 
+         {
+          "name": "PERSONNEL, R\u00c9MUN\u00c9RATIONS DUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel, acomptes"
+           }, 
+           {
+            "name": "Personnel, avances"
+           }, 
+           {
+            "name": "Frais avanc\u00e9s et fournitures au personnel"
+           }
+          ], 
+          "name": "PERSONNEL, AVANCES ET ACOMPTES"
+         }, 
+         {
+          "name": "PERSONNEL, PARTICIPATION AUX B\u00c9N\u00c9FICES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel, saisies-arr\u00eats"
+           }, 
+           {
+            "name": "Personnel, avis \u00e0 tiers d\u00e9tenteur"
+           }, 
+           {
+            "name": "Personnel, oppositions"
+           }
+          ], 
+          "name": "PERSONNEL, OPPOSITIONS, SAISIES-ARR\u00caTS"
+         }
+        ], 
+        "name": "PERSONNEL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances litigieuses"
+           }, 
+           {
+            "name": "Cr\u00e9ances douteuses"
+           }
+          ], 
+          "name": "CR\u00c9ANCES CLIENTS LITIGIEUSES OU DOUTEUSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances en compte"
+           }, 
+           {
+            "name": "Effets \u00e0 recevoir"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR CESSIONS D'IMMOBILISATIONS"
+         }, 
+         {
+          "name": "Clients et comptes rattach\u00e9s "
+         }, 
+         {
+          "name": "Efecte de primit de la clienti"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - Groupe"
+           }, 
+           {
+            "name": "Clients, \u00c9tat et Collectivit\u00e9s publiques"
+           }, 
+           {
+            "name": "Clients"
+           }, 
+           {
+            "name": "Clients, d\u00e9gr\u00e8vement de Taxes sur la Valeur Ajout\u00e9e (T.V.A.)"
+           }, 
+           {
+            "name": "Clients, organismes internationaux"
+           }, 
+           {
+            "name": "Clients - Ventes de biens ou de prestations de services"
+           }, 
+           {
+            "name": "Clienti"
+           }, 
+           {
+            "name": "Client, retenues de garantie"
+           }
+          ], 
+          "name": "CLIENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients, factures \u00e0 \u00e9tablir"
+           }, 
+           {
+            "name": "Clients - Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Clients, int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "CLIENTS, PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "CLIENTS, \u00c9FFETS ESCOMPT\u00c9S NON \u00c9CHUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat et Collectivit\u00e9s publiques, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Organismes Internationaux, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Clients - Groupe, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Clients, Effets \u00e0 recevoir"
+           }
+          ], 
+          "name": "CLIENTS, \u00c9FFETS \u00c0 RECEVOIR EN PORTEFEUILLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - Groupe, avances et acomptes re\u00e7us"
+           }, 
+           {
+            "name": "Clients, avances et acomptes re\u00e7us"
+           }, 
+           {
+            "name": "Clients - Autres avoirs ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Clients - Dettes pour emballages et mat\u00e9riels consign\u00e9s ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Clients, dettes pour emballages et mat\u00e9riels consign\u00e9s"
+           }, 
+           {
+            "name": "Rabais, Remises, Ristournes et autres avoirs \u00e0 accorder"
+           }
+          ], 
+          "name": "CLIENTS CR\u00c9DITEURS"
+         }
+        ], 
+        "name": "CLIENTS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES FOURNISSEURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres comptes d\u00e9biteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s, comptes courants"
+           }, 
+           {
+            "name": "Associ\u00e9s, op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Groupe, comptes courants"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions de valeurs mobili\u00e8res de placement"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ASSOCI\u00c9S ET GROUPE"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES D\u00c9BITEURS DIVERS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur op\u00e9rations H.A.O."
+           }, 
+           {
+            "name": "Sur op\u00e9rations d'exploitation"
+           }
+          ], 
+          "name": "RISQUES PROVISIONN\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances sur cessions d'immobilisations"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions de titres de placement"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances H.A.O."
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES DE CR\u00c9ANCES H.A.O."
+         }, 
+         {
+          "children": [
+           {
+            "name": "Op\u00e9rations faites en commun et en GIE", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Comptes du groupe", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Comptes courants des associ\u00e9s", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ORGANISMES INTERNATIONAUX"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES \u00c9TAT ET COLLECTIVIT\u00c9S PUBLIQUES"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ORGANISMES SOCIAUX"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances douteuses"
+           }, 
+           {
+            "name": "Cr\u00e9ances litigieuses"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES CLIENTS"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS ET RISQUES PROVISIONN\u00c9S (TIERS)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "DETTES SUR ACQUISITION DE TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "Quotas d'\u00e9mission allou\u00e9s par l'\u00c9tat"
+         }, 
+         {
+          "name": "AUTRES DETTES HORS ACTIVITES ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Produits"
+           }
+          ], 
+          "name": "AUTRES CR\u00c9ANCES HORS ACTIVIT\u00c9S ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "name": "CR\u00c9ANCES SUR CESSIONS DE TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "Produits constat\u00e9s d'avance", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Factures non parvenues"
+           }, 
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Immobilisations corporelles"
+           }, 
+           {
+            "name": "Immobilisations incorporelles"
+           }
+          ], 
+          "name": "FOURNISSEURS D'INVESTISSEMENTS"
+         }, 
+         {
+          "name": "FOURNISSEURS D'INVESTISSEMENTS, EFFETS \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "En compte"
+           }, 
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Factures \u00e0 \u00e9tablir"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR CESSIONS D'IMMOBILISATIONS"
+         }
+        ], 
+        "name": "CR\u00c9ANCES ET DETTES HORS ACTIVIT\u00c9S ORDINAIRES (HAO)"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Alte sume primite cu caracter de subventii pentru investitii"
+           }, 
+           {
+            "name": "Plusuri de inventar de natura imobilizarilor"
+           }, 
+           {
+            "name": "Subventii guvernamentale pentru investitii"
+           }, 
+           {
+            "name": "Donatii pentru investitii"
+           }, 
+           {
+            "name": "Imprumuturi nerambursabile cu caracter de subventii pentru investitii"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR TRAVAUX NON ENCORE FACTURABLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits"
+           }, 
+           {
+            "name": "Charges"
+           }
+          ], 
+          "name": "R\u00c9PARTITION P\u00c9RIODIQUE DES CHARGES ET DES PRODUITS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des dettes", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Augmentation des cr\u00e9ances", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PRODUITS CONSTAT\u00c9S D'AVANCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }, 
+           {
+            "name": "Diminution des cr\u00e9ances"
+           }, 
+           {
+            "name": "Augmentation des dettes"
+           }
+          ], 
+          "name": "CHARGES CONSTAT\u00c9ES D'AVANCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9biteurs divers"
+           }, 
+           {
+            "name": "Cr\u00e9diteurs divers"
+           }
+          ], 
+          "name": "COMPTES D'ATTENTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances circulantes"
+           }, 
+           {
+            "name": "Diminution des dettes circulantes"
+           }
+          ], 
+          "name": "Ecarts de conversion - passif (El\u00e9ments circulants)"
+         }, 
+         {
+          "name": "Decontari din operatiuni in curs de clarificare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres de participation"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Titres de placement"
+           }
+          ], 
+          "name": "VERSEMENTS RESTANT \u00c0 EFFECTUER SUR TITRES NON LIB\u00c9R\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des cr\u00e9ances"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }, 
+           {
+            "name": "Augmentation des dettes"
+           }
+          ], 
+          "name": "\u00c9CARTS DE CONVERSION - ACTIF"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances"
+           }, 
+           {
+            "name": "Diminution des dettes"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }
+          ], 
+          "name": "\u00c9CARTS DE CONVERSION - PASSIF"
+         }
+        ], 
+        "name": "D\u00c9BITEURS ET CR\u00c9DITEURS DIVERS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Charges \u00e0 payer"
+           }, 
+           {
+            "name": "Dettes sur acquisitions de titres et valeurs de placement"
+           }, 
+           {
+            "name": "Divers cr\u00e9anciers"
+           }, 
+           {
+            "name": "Obligations, coupons \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Obligations \u00e9chues \u00e0\u00a0 rembourser"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Alte datorii fata de bugetul statului"
+           }, 
+           {
+            "name": "Alte creante privind bugetul statului"
+           }
+          ], 
+          "name": "\u00c9TAT, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat, fonds r\u00e9glement\u00e9 provisionn\u00e9"
+           }, 
+           {
+            "name": "\u00c9tat, avances et acomptes vers\u00e9s sur imp\u00f4ts"
+           }, 
+           {
+            "name": "\u00c9tat, fonds de dotation \u00e0 recevoir"
+           }, 
+           {
+            "name": "\u00c9tat, obligations cautionn\u00e9es"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'\u00e9quilibre \u00e0 recevoir"
+           }, 
+           {
+            "name": "Comptes transitoires ou d'attente - cr\u00e9diteurs"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'\u00e9quipement \u00e0 recevoir"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'exploitation \u00e0 recevoir"
+           }
+          ], 
+          "name": "\u00c9TAT, CR\u00c9ANCES ET DETTES DIVERSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs - retenues de garantie"
+           }, 
+           {
+            "name": "Impozitul pe venit"
+           }, 
+           {
+            "name": "Avances sur subventions"
+           }, 
+           {
+            "name": "Fournisseurs - effets \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Impozitul pe profit"
+           }, 
+           {
+            "name": "Fournisseurs - factures non parvenues"
+           }
+          ], 
+          "name": "\u00c9TAT, IMP\u00d4T SUR LES B\u00c9N\u00c9FICES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4ts et taxes recouvrables sur des obligataires"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes d'Etat"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes pour les collectivit\u00e9s publiques"
+           }, 
+           {
+            "name": "Autres imp\u00f4ts et taxes"
+           }, 
+           {
+            "name": "TVA colectata"
+           }, 
+           {
+            "name": "Droits de douane"
+           }, 
+           {
+            "name": "Clients - dettes pour emballages et mat\u00e9riel consign\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes recouvrables sur des associ\u00e9s"
+           }
+          ], 
+          "name": "\u00c9TAT, AUTRES IMP\u00d4TS ET TAXES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat, cr\u00e9dit de T.V.A. \u00e0 reporter"
+           }, 
+           {
+            "name": "Autres organismes sociaux"
+           }, 
+           {
+            "name": "Mutuelles"
+           }, 
+           {
+            "name": "Charges sociales \u00e0\u00a0 payer"
+           }, 
+           {
+            "children": [
+             {
+              "name": "ALLOCATION FAMILIALES"
+             }
+            ], 
+            "name": "\u00c9tat, T.V.A. due"
+           }, 
+           {
+            "name": "Caisses de retraite"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. DUE OU CR\u00c9DIT DE T.V.A."
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Etat, TVA factur\u00e9e 10%"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA \u00e0 d\u00e9caisser", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 7%"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 20%"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 14%"
+             }
+            ], 
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur factures non parvenues"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "TVA collect\u00e9e 5,5%", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "TVA collect\u00e9e 19,6%", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "TVA collect\u00e9e (autre taux)", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "TVA collect\u00e9e"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Etat, imp\u00f4ts et taxes \u00e0\u00a0 payer"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Taxes sur le chiffre d'affaires sur factures non parvenues", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Remboursement de taxes sur le chiffre d'affaires demand\u00e9", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Acomptes - R\u00e9gime simplifi\u00e9 d'imposition", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Taxes sur le chiffre d'affaires sur factures \u00e0 \u00e9tablir", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA r\u00e9cup\u00e9r\u00e9e d'avance", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Acomptes - R\u00e9gime du forfait", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Alte sume primite cu caracter de subventii"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur immobilisations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "TVA transf\u00e9r\u00e9e par d'autres entreprises", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA sur immobilisations", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA sur autres biens et services", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA d\u00e9ductible intracommunautaire", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Cr\u00e9dit de TVA \u00e0 reporter", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "T.V.A. transf\u00e9r\u00e9e par d'autres entreprises"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur services ext\u00e9rieurs et autres charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "TVA due intracommunautaire 5,5%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA due intracommunautaire (autre taux)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA due intracommunautaire 19,6%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat, IR"
+             }, 
+             {
+              "name": "Etat, taxe urbaine et taxe d'\u00e9dilit\u00e9"
+             }, 
+             {
+              "name": "Etat, Taxe professionnelle (ex patente)"
+             }
+            ], 
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur achats"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur transport"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. R\u00c9CUP\u00c9RABLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Comptes courants des associ\u00e9s cr\u00e9diteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s - versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "name": "Associ\u00e9s - capital \u00e0\u00a0 rembourser"
+           }, 
+           {
+            "name": "Associ\u00e9s - dividendes \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Associ\u00e9s - op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Autres comptes d'associ\u00e9s - cr\u00e9diteurs"
+           }
+          ], 
+          "name": "\u00c9TAT, AUTRES TAXES SUR LE CHIFFRE D'AFFAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4t G\u00e9n\u00e9ral sur le revenu"
+           }, 
+           {
+            "name": "Imp\u00f4ts sur salaires"
+           }, 
+           {
+            "name": "Contribution nationale de solidarit\u00e9"
+           }, 
+           {
+            "name": "Contribution nationale"
+           }, 
+           {
+            "name": "Autres imp\u00f4ts et contributions"
+           }
+          ], 
+          "name": "\u00c9TAT, IMP\u00d4TS RETENUS \u00c0 LA SOURCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges du personnel \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Personnel - autres cr\u00e9diteurs"
+           }, 
+           {
+            "name": "Oppositions sur salaires"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur ventes"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur prestations de services"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur travaux"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. FACTUR\u00c9E"
+         }
+        ], 
+        "name": "\u00c9TAT ET COLLECTIVIT\u00c9S PUBLIQUES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournisseurs - Achats d'immobilisations"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisations - Retenues de garantie"
+           }
+          ], 
+          "name": "Furnizori de imobilizari"
+         }, 
+         {
+          "name": "Efecte de platit pentru imobilizari"
+         }, 
+         {
+          "name": "Fournisseurs et comptes rattach\u00e9s "
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs"
+           }, 
+           {
+            "name": "Fournisseurs Groupe"
+           }, 
+           {
+            "name": "Fournisseurs - Achats de biens et prestations de services"
+           }, 
+           {
+            "name": "Fournisseur, retenues de garantie"
+           }, 
+           {
+            "name": "Fournisseurs sous-traitants"
+           }
+          ], 
+          "name": "FOURNISSEURS, DETTES EN COMPTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs sous-traitants, Effets \u00e0 payer"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe, Effets \u00e0 payer"
+           }, 
+           {
+            "name": "Fournisseurs, Effets \u00e0 payer"
+           }
+          ], 
+          "name": "FOURNISSEURS, EFFETS \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs sous-traitants"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe"
+           }, 
+           {
+            "name": "Fournisseurs - Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Fournisseurs"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisations "
+           }, 
+           {
+            "name": "Fournisseurs, int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "FOURNISSEURS, FACTURES NON PARVENUES"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Fournisseurs d'exploitation", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fournisseurs d'immobilisations", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fournisseurs - Autres avoirs"
+           }, 
+           {
+            "name": "Fournisseurs cr\u00e9ances pour emballages et mat\u00e9riels \u00e0 rendre"
+           }, 
+           {
+            "name": "Fournisseurs avances et acomptes vers\u00e9s"
+           }, 
+           {
+            "name": "Rabais, Remises, Ristournes et autres avoirs \u00e0 obtenir"
+           }, 
+           {
+            "name": "Fournisseurs - Cr\u00e9ances pour emballages et mat\u00e9riel \u00e0 rendre", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournisseurs sous-traitants avances et acomptes vers\u00e9s"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe avances et acomptes vers\u00e9s"
+           }
+          ], 
+          "name": "FOURNISSEURS D\u00c9BITEURS"
+         }, 
+         {
+          "name": "Efecte de platit"
+         }, 
+         {
+          "name": "Furnizori"
+         }
+        ], 
+        "name": "FOURNISSEURS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes sur acquisitions de valeurs mobili\u00e8res de placement", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "ASSOCI\u00c9S, DIVIDENDES \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Charges \u00e0 payer", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Divers - Charges \u00e0 payer et produits \u00e0 recevoir"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Principal"
+           }
+          ], 
+          "name": "ASSOCI\u00c9S, COMPTES COURANTS"
+         }, 
+         {
+          "name": "ASSOCI\u00c9S, OP\u00c9RATIONS FAITES EN COMMUN"
+         }, 
+         {
+          "name": "GROUPE, COMPTES COURANTS"
+         }, 
+         {
+          "name": "ACTIONNAIRES, RESTANT D\u00db SUR CAPITAL APPEL\u00c9"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Associ\u00e9s, versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "name": "Actionnaires, capital souscrit appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Associ\u00e9s, capital appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Actionnaires d\u00e9faillants"
+           }, 
+           {
+            "name": "Associ\u00e9s, autres apports"
+           }, 
+           {
+            "name": "Associ\u00e9s, versements anticip\u00e9s"
+           }, 
+           {
+            "name": "Associ\u00e9s apports en nature"
+           }, 
+           {
+            "name": "Associ\u00e9s apports en num\u00e9raire"
+           }, 
+           {
+            "name": "Associ\u00e9s, capital \u00e0 rembourser"
+           }
+          ], 
+          "name": "ASSOCI\u00c9S, OP\u00c9RATIONS SUR LE CAPITAL"
+         }
+        ], 
+        "name": "ASSOCI\u00c9S ET GROUPE"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres charges \u00e0 payer"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Charges sociales sur cong\u00e9s \u00e0 payer"
+           }, 
+           {
+            "name": "Charges sociales sur gratifications \u00e0 payer"
+           }
+          ], 
+          "name": "ORGANISMES SOCIAUX, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "CAISSES DE RETRAITE COMPL\u00c9MENTAIRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Accidents de travail"
+           }, 
+           {
+            "name": "Autres cotisations sociales"
+           }, 
+           {
+            "name": "Contributia angajatorilor la fondul de asigurare pentru accidente de munca si boli profesionale"
+           }, 
+           {
+            "name": "Caisse de retraite obligatoire"
+           }, 
+           {
+            "name": "Contributia angajatorilor la fondul pentru concedii si indemnizatii"
+           }, 
+           {
+            "name": "Caisse de retraite facultative"
+           }, 
+           {
+            "name": "Prestations familiales"
+           }
+          ], 
+          "name": "S\u00c9CURIT\u00c9 SOCIALE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T.V.A. sur factures \u00e0 \u00e9tablir"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur production livr\u00e9e \u00e0 soi-m\u00eame"
+           }, 
+           {
+            "name": "Mutuelle"
+           }
+          ], 
+          "name": "AUTRES ORGANISMES SOCIAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contributia unitatii la fondul de garantare pentru plata creantelor salariale"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de somaj"
+           }, 
+           {
+            "name": "Contributia personalului la fondul de somaj"
+           }
+          ], 
+          "name": "Ajutor de somaj"
+         }
+        ], 
+        "name": "ORGANISMES SOCIAUX"
+       }
+      ], 
+      "name": "Comptes de tiers"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mobilier", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cheptel", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mat\u00e9riel de transport", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau et mat\u00e9riel informatique ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales agencements am\u00e9nagements divers", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES DROITS ET VALEURS INCORPORELS"
+         }, 
+         {
+          "name": "MARQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de recherche et de d\u00e9veloppement"
+           }, 
+           {
+            "name": "Logiciels"
+           }, 
+           {
+            "name": "Autres droits et valeurs incorporels"
+           }
+          ], 
+          "name": "IMMOBILISATIONS INCORPORELLES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Agencements et am\u00e9nagements du mat\u00e9riel et outillage industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Outillage industriel", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur sol d'autrui", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur sol propre", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Installations complexes sp\u00e9cialis\u00e9es"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur sol propre", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur sol d'autrui", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique"
+           }, 
+           {
+            "name": "Mat\u00e9riel industriel", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "FONDS COMMERCIAL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mijloace de transport"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations non professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Autres ensembles immobiliers"
+             }, 
+             {
+              "name": "Ensembles immobiliers industriels (A, B, ...)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ensembles immobiliers administratifs et commerciaux (A, B, ...)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Echipamente tehnologice (masini, utilaje si instalatii de lucru)"
+           }, 
+           {
+            "name": "Primes de remboursement des obligations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Voies de fer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Voies d'eau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Barrages", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Pistes d'a\u00e9rodromes", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Voies de terre", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ouvrages d'infrastructure"
+           }, 
+           {
+            "name": "Aparate si instalatii de masurare, control si reglare"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales agencements am\u00e9nagements des constructions (m\u00eame ventilation que celle du compte 2131)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Animale si plantatii"
+           }
+          ], 
+          "name": "LOGICIELS"
+         }, 
+         {
+          "name": "INVESTISSEMENTS DE CR\u00c9ATION"
+         }, 
+         {
+          "name": "DROIT AU BAIL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Autres charges \u00e0\u00a0 r\u00e9partir"
+           }, 
+           {
+            "name": "Frais d acquisition des immobilisations"
+           }
+          ], 
+          "name": "BREVETS, LICENCES, CONCESSIONS ET DROITS SIMILAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de publicit\u00e9"
+           }, 
+           {
+            "name": "Frais de prospection"
+           }, 
+           {
+            "name": "Terenuri"
+           }, 
+           {
+            "name": "Amenajari de terenuri"
+           }, 
+           {
+            "name": "Frais d'augmentation du capital"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations non professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Autres ensembles immobiliers"
+             }, 
+             {
+              "name": "Ensembles immobiliers administratifs et commerciaux (A, B, ...)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ensembles immobiliers industriels (A, B, ...)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Terrains b\u00e2tis"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Carri\u00e8res", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Frais sur op\u00e9rations de fusions, scissions et transformations"
+           }, 
+           {
+            "name": "Autres frais pr\u00e9liminaires"
+           }
+          ], 
+          "name": "FRAIS DE RECHERCHE ET DE D\u00c9VELOPPEMENT"
+         }
+        ], 
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pistes d\u2019a\u00e9rodrome"
+           }, 
+           {
+            "name": "Barrages, Digues"
+           }, 
+           {
+            "name": "Voies de terre"
+           }, 
+           {
+            "name": "Voies d\u2019eau"
+           }, 
+           {
+            "name": "Autres"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Outillage"
+             }, 
+             {
+              "name": "Mat\u00e9riel"
+             }
+            ], 
+            "name": "Voies de fer"
+           }
+          ], 
+          "name": "OUVRAGES D\u2019INFRASTRUCTURE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Installations complexes sp\u00e9cialis\u00e9es sur sol propre"
+           }, 
+           {
+            "name": "Installations complexes sp\u00e9cialis\u00e9es sur sol d\u2019autrui"
+           }, 
+           {
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique sur sol d\u2019autrui"
+           }, 
+           {
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique sur sol propre"
+           }
+          ], 
+          "name": "INSTALLATIONS TECHNIQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avances et acomptes vers\u00e9s sur commandes d'immobilisations corporelles"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours de mobilier, mat\u00e9riel de bureau et am\u00e9nagements divers"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours de mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours des installations techniques, mat\u00e9riel et outillage"
+           }, 
+           {
+            "name": "Autres immobilisations corporelles en cours"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours des terrains et constructions"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS ET INSTALLATIONS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres immobilisations corporelles"
+           }, 
+           {
+            "name": "Terrains", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Constructions", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Installations techniques mat\u00e9riel et outillage industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres immobilisations corporelles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES INSTALLATIONS ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immeubles de rapport"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "B\u00e2timents affect\u00e9s au logement du personnel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres b\u00e2timents"
+             }, 
+             {
+              "name": "B\u00e2timents industriels (A,B,,,)"
+             }, 
+             {
+              "name": "B\u00e2timents Administratifs et commerciaux"
+             }
+            ], 
+            "name": "B\u00e2timents industriels"
+           }, 
+           {
+            "name": "B\u00e2timents agricoles"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements des constructions"
+           }, 
+           {
+            "name": "Autres constructions"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES, ADMINISTRATIFS ET COMMERCIAUX SUR SOL D\u2019AUTRUI"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres terrains"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements de terrains"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "B\u00e2timents agricoles"
+           }, 
+           {
+            "name": "B\u00e2timents industriels"
+           }, 
+           {
+            "name": "Immeubles de rapport"
+           }, 
+           {
+            "name": "B\u00e2timents affect\u00e9s au logement du personnel"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES, ADMINISTRATIFS ET COMMERCIAUX SUR SOL PROPRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Agencements, installations et am\u00e9nagements divers (biens n'appartenant pas \u00e0\u00a0 l'entreprise)"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales"
+           }, 
+           {
+            "name": "Mat\u00e9riel informatique"
+           }, 
+           {
+            "name": "Autres"
+           }
+          ], 
+          "name": "AMENAGEMENTS DE BUREAUX"
+         }, 
+         {
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES ET COMMERCIAUX MIS EN CONCESSION"
+         }
+        ], 
+        "name": "B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS CORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres divers"
+           }, 
+           {
+            "name": "Actions"
+           }
+          ], 
+          "name": "Autres titres immobilis\u00e9s"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres de participation"
+           }
+          ], 
+          "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS INCORPORELLES"
+         }
+        ], 
+        "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (groupe)"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des soci\u00e9t\u00e9s en participation"
+           }, 
+           {
+            "name": "Avances \u00e0 des Groupements d'int\u00e9r\u00eat \u00e9conomique (G.I.E.)"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (hors groupe)"
+           }
+          ], 
+          "name": "CR\u00c9ANCES RATTACH\u00c9ES \u00c0 DES PARTICIPATIONS ET AVANCES \u00c0 DES G.I.E."
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00eats au personnel"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur titres immobilis\u00e9s (droits de cr\u00e9ance)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur d\u00e9p\u00f4ts et cautionnements", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur pr\u00eats", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur cr\u00e9ances diverses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Immobilisations financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur l'Etat"
+           }, 
+           {
+            "name": "Pr\u00eats et cr\u00e9ances non commerciales"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9p\u00f4ts pour le gaz"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour l\u2019\u00e9lectricit\u00e9"
+           }, 
+           {
+            "name": "Cautionnements sur autres op\u00e9rations"
+           }, 
+           {
+            "name": "Cautionnements sur march\u00e9s publics"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour le t\u00e9l\u00e9phone, le t\u00e9lex, la t\u00e9l\u00e9copie"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour l\u2019eau"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour loyers d\u2019avance"
+           }, 
+           {
+            "name": "Autres d\u00e9p\u00f4ts et cautionnements"
+           }
+          ], 
+          "name": "D\u00c9P\u00d4TS ET CAUTIONNEMENTS VERS\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Parts de fonds commun de placement (F.C.P.)"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s de l\u2019activit\u00e9 de portefeuille (T.I.A.P.)"
+           }, 
+           {
+            "name": "Titres participatifs"
+           }, 
+           {
+            "name": "Autres titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Certificats d\u2019investissement"
+           }
+          ], 
+          "name": "TITRES IMMOBILIS\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00eats aux associ\u00e9s"
+           }, 
+           {
+            "name": "Titres pr\u00eat\u00e9s"
+           }, 
+           {
+            "name": "Autres titres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Pr\u00eats participatifs"
+           }, 
+           {
+            "name": "Diminution des cr\u00e9ances immobilis\u00e9es"
+           }
+          ], 
+          "name": "PR\u00caTS ET CR\u00c9ANCES NON COMMERCIALES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances divers hors groupe"
+           }, 
+           {
+            "name": "Or et m\u00e9taux pr\u00e9cieux ()"
+           }, 
+           {
+            "name": "Cr\u00e9ances diverses groupe"
+           }
+          ], 
+          "name": "IMMOBILISATIONS FINANCI\u00c8RES DIVERSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Fonds r\u00e9glement\u00e9"
+           }, 
+           {
+            "name": "Autres"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR L\u2019\u00c9TAT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des dettes de financement"
+           }, 
+           {
+            "name": "Pr\u00eats immobiliers"
+           }, 
+           {
+            "name": "Pr\u00eats mobiliers et d\u2019installation"
+           }, 
+           {
+            "name": "Autres pr\u00eats (frais d\u2019\u00e9tudes\u2026)"
+           }
+          ], 
+          "name": "PR\u00caTS AU PERSONNEL"
+         }, 
+         {
+          "name": "Versements restant \u00e0 effectuer sur titres immobilis\u00e9s non lib\u00e9r\u00e9s", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AUTRES IMMOBLISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PARTICIPATIONS DANS DES ORGANISMES PROFESSIONNELS"
+         }, 
+         {
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S CONF\u00c9RANT UNE INFLUENCE NOTABLE"
+         }, 
+         {
+          "name": "Titluri puse in echivalenta"
+         }, 
+         {
+          "name": "PARTS DANS DES GROUPEMENTS D\u2019INT\u00c9R\u00caT \u00c9CONOMIQUE (G.I.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte creante imobilizate"
+           }, 
+           {
+            "name": "Dobanda aferenta creantelor legate de interesele de participare"
+           }, 
+           {
+            "name": "Imprumuturi acordate pe termen lung"
+           }, 
+           {
+            "name": "Dobanda aferenta imprumuturilor acordate pe termen lung"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances rattach\u00e9es \u00e0 des participations ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sume datorate de entitatile afiliate"
+           }, 
+           {
+            "name": "Dobanda aferenta sumelor datorate de entitatile afiliate"
+           }, 
+           {
+            "name": "Creante legate de interesele de participare"
+           }, 
+           {
+            "name": "Dob\u00e2nzi aferente altor creante imobilizate"
+           }
+          ], 
+          "name": "Creante imobilizate"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres titres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S SOUS CONTR\u00d4LE EXCLUSIF"
+         }, 
+         {
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S SOUS CONTR\u00d4LE CONJOINT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES TITRES DE PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Varsaminte de efectuat pentru alte imobilizari financiare"
+           }, 
+           {
+            "name": "Varsaminte de efectuat privind actiunile detinute la entitatile afiliate"
+           }, 
+           {
+            "name": "Varsaminte de efectuat privind interesele de participare"
+           }
+          ], 
+          "name": "Varsaminte de efectuat pentru imobilizari financiare"
+         }
+        ], 
+        "name": "TITRES DE PARTICIPATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel d'emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et outillage industriel et commercial"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations animales et agricoles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et mobilier"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation de mat\u00e9riel en cours"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DE MAT\u00c9RIEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances rattach\u00e9es \u00e0 des participations et avances \u00e0 des GIE"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances immobilis\u00e9es (m\u00eame ventilation que celle du compte 276)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des pr\u00eats au personnel"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des pr\u00eats et cr\u00e9ances non commerciales"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances sur l'Etat"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des d\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES AUTRES IMMOBILISATIONS FINANCI\u00c8RES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans des soci\u00e9t\u00e9s sous contr\u00f4le exclusif"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres titres de participation"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des participations dans des organismes professionnels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des parts dans des GIE"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (m\u00eame ventilation que celle du compte 267)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans les soci\u00e9t\u00e9s sous contr\u00f4le conjoint"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans les soci\u00e9t\u00e9s conf\u00e9rant une influence notable"
+           }, 
+           {
+            "name": "Ajustari pentru pierderea de valoare a sumelor datorate entitatilor afiliate"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES TITRES DE PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea terenurilor si amenajarilor de terenuri"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du droit au bail"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres droits et valeurs incorporels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des logiciels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des marques"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations incorporelles en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des brevets, licences, concessions et droits similaires"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du fonds commercial"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des investissements de cr\u00e9ation"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES IMMOBILISATIONS INCORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea fondului comercial"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea altor imobilizari necorporale"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea concesiunilor, brevetelor, licentelor, marcilor comerciale, drepturilor si activelor similare"
+           }, 
+           {
+            "name": "Droit au bail", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea cheltuielilor de dezvoltare"
+           }
+          ], 
+          "name": "Ajustari pentru deprecierea imobilizarilor necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents et installations en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol propre"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations corporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des installations techniques"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des ouvrages d'infrastructures"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol d'autrui"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles et commerciaux mis en concession"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des am\u00e9nagements de bureaux"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres installations et agencements"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains de gisement"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains nus"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains b\u00e2tis"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres terrains"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains am\u00e9nag\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des travaux de mise en valeur des terrains"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des am\u00e9nagements de terrains en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains mis en concession"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des avances et acomptes vers\u00e9s sur immobilisations incorporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des avances et acomptes vers\u00e9s sur immobilisations corporelles"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS"
+         }
+        ], 
+        "name": "PROVISIONS POUR DEPRECIATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligations convertibles"
+           }, 
+           {
+            "name": "Autres emprunts obligataires"
+           }, 
+           {
+            "name": "Obligations ordinaires"
+           }
+          ], 
+          "name": "PRIMES DE REMBOURSEMENT DES OBLIGATIONS"
+         }, 
+         {
+          "name": "Alte imobilizari necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Charges diff\u00e9r\u00e9es"
+           }, 
+           {
+            "name": "Frais d'acquisition d'immobilisations"
+           }, 
+           {
+            "name": "Charges \u00e0 \u00e9taler"
+           }
+          ], 
+          "name": "CHARGES \u00c0 R\u00c9PARTIR SUR PLUSIEURS EXERCICES"
+         }, 
+         {
+          "name": "Cheltuieli de dezvoltare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de restructuration"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais de publicit\u00e9", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Frais de prospection", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Frais de prospection"
+           }, 
+           {
+            "name": "Frais de fonctionnement ant\u00e9rieurs au d\u00e9marrage"
+           }, 
+           {
+            "name": "Frais d'entr\u00e9e \u00e0 la Bourse"
+           }, 
+           {
+            "name": "Frais de constitution"
+           }, 
+           {
+            "name": "Frais de publicit\u00e9 et de lancement"
+           }, 
+           {
+            "name": "Frais divers d'\u00e9tablissement"
+           }, 
+           {
+            "name": "Frais de modification du capital (fusions, scissions, transformations)"
+           }
+          ], 
+          "name": "FRAIS D'\u00c9TABLISSEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fond comercial negativ"
+           }, 
+           {
+            "name": "Fond comercial pozitiv"
+           }
+          ], 
+          "name": "Fond comercial"
+         }, 
+         {
+          "name": "Concesiuni, brevete, licente, marci comerciale, drepturi si active similare"
+         }
+        ], 
+        "name": "CHARGES IMMOBILIS\u00c9ES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres terrains"
+           }, 
+           {
+            "name": "Terrains nus"
+           }, 
+           {
+            "name": "Terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Terrains de gisement"
+           }
+          ], 
+          "name": "AM\u00c9NAGEMENTS DE TERRAINS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres travaux"
+           }, 
+           {
+            "name": "Plantation d'arbres et d'arbustes"
+           }
+          ], 
+          "name": "TRAVAUX DE MISE EN VALEUR DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Carri\u00e8res"
+           }
+          ], 
+          "name": "TERRAINS DE GISEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Parkings"
+           }
+          ], 
+          "name": "TERRAINS AM\u00c9NAG\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains des logements affect\u00e9s au personnel"
+           }, 
+           {
+            "name": "Terrains des immeubles de rapport"
+           }, 
+           {
+            "name": "Autres terrains"
+           }
+          ], 
+          "name": "AUTRES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains \u00e0 b\u00e2tir"
+           }, 
+           {
+            "name": "Brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "name": "Autres terrains nus"
+           }
+          ], 
+          "name": "TERRAINS NUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fonds commercial"
+           }, 
+           {
+            "name": "pour b\u00e2timents industriels et agricoles"
+           }, 
+           {
+            "name": "pour b\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "pour b\u00e2timents affect\u00e9s aux autres op\u00e9rations professionnelles"
+           }, 
+           {
+            "name": "pour b\u00e2timents affect\u00e9s aux autres op\u00e9rations non professionnelles"
+           }, 
+           {
+            "name": "Autres terrains b\u00e2tis"
+           }
+          ], 
+          "name": "TERRAINS B\u00c2TIS"
+         }, 
+         {
+          "name": "TERRAINS MIS EN CONCESSION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains d'exploitation foresti\u00e8re"
+           }, 
+           {
+            "name": "Immobilisation en recherche et d\u00e9veloppement"
+           }, 
+           {
+            "name": "Terrains d'exploitation agricole"
+           }, 
+           {
+            "name": "Autres terrains"
+           }
+          ], 
+          "name": "TERRAINS AGRICOLES ET FORESTIERS"
+         }
+        ], 
+        "name": "TERRAINS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "MAT\u00c9RIEL D\u2019EMBALLAGE R\u00c9CUP\u00c9RABLE ET IDENTIFIABLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel industriel"
+           }, 
+           {
+            "name": "Outillage commercial"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Autres pr\u00eats"
+           }, 
+           {
+            "name": "Pr\u00eats aux associ\u00e9s"
+           }, 
+           {
+            "name": "Outillage industriel"
+           }, 
+           {
+            "name": "Mat\u00e9riel commercial"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET OUTILLAGE INDUSTRIEL ET COMMERCIAL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel informatique"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier des logements du personnel"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier des immeubles de rapport"
+           }, 
+           {
+            "name": "Mobilier de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel bureautique"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET MOBILIER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bons divers"
+             }, 
+             {
+              "name": "Bons d'\u00e9quipement"
+             }, 
+             {
+              "name": "Obligations"
+             }
+            ], 
+            "name": "Collections et oeuvres d\u2019art"
+           }, 
+           {
+            "name": "Cr\u00e9ances immobilis\u00e9es"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cautionnements"
+             }, 
+             {
+              "name": "D\u00e9p\u00f4ts"
+             }
+            ], 
+            "name": "D\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }
+          ], 
+          "name": "AUTRES MAT\u00c9RIELS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Immobilisations animales et agricoles"
+           }, 
+           {
+            "name": "Mat\u00e9riel d\u2019emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Mat\u00e9riel et outillage industriel et commercial"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres"
+           }, 
+           {
+            "name": "Cheptel, animaux de trait"
+           }, 
+           {
+            "name": "Plantations agricoles"
+           }, 
+           {
+            "name": "Cheptel, animaux reproducteurs"
+           }, 
+           {
+            "name": "Animaux de garde"
+           }
+          ], 
+          "name": "IMMOBILISATIONS ANIMALES ET AGRICOLES"
+         }, 
+         {
+          "name": "AGENCEMENTS ET AM\u00c9NAGEMENTS DU MAT\u00c9RIEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel naval"
+           }, 
+           {
+            "name": "Mat\u00e9riel hippomobile"
+           }, 
+           {
+            "name": "Mat\u00e9riel automobile"
+           }, 
+           {
+            "name": "Mat\u00e9riel ferroviaire"
+           }, 
+           {
+            "name": "Mat\u00e9riel fluvial, lagunaire"
+           }, 
+           {
+            "name": "Mat\u00e9riel a\u00e9rien"
+           }, 
+           {
+            "name": "Autres (v\u00e9lo, mobylette, moto)"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL DE TRANSPORT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel agricole"
+           }, 
+           {
+            "name": "Outillage agricole"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET OUTILLAGE AGRICOLE"
+         }
+        ], 
+        "name": "MAT\u00c9RIEL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortissements des autres droits et valeurs incorporels"
+           }, 
+           {
+            "name": "Amortissements des investissements de cr\u00e9ation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des frais pr\u00e9liminaires au d\u00e9marrage"
+             }, 
+             {
+              "name": "Amortissements des frais de prospection"
+             }, 
+             {
+              "name": "Amortissements des frais de publicit\u00e9"
+             }, 
+             {
+              "name": "Amortissements des frais sur op\u00e9rations de fusions, scissions, et transformations"
+             }, 
+             {
+              "name": "Amortissements des frais d'augmentation du capital"
+             }, 
+             {
+              "name": "Amortissements des frais de constitution"
+             }, 
+             {
+              "name": "Amortissements des autres frais pr\u00e9liminaires"
+             }
+            ], 
+            "name": "Amortissements des frais de recherche et de d\u00e9veloppement"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des frais d'acquisition des immobilisations"
+             }, 
+             {
+              "name": "Amortissements des frais d'\u00e9mission des emprunts"
+             }, 
+             {
+              "name": "Amortissements des autres charges \u00e0\u00a0 r\u00e9partir"
+             }
+            ], 
+            "name": "Amortissements des brevets, licences, concessions et droits similaires"
+           }, 
+           {
+            "name": "Amortissements du droit au bail"
+           }, 
+           {
+            "name": "Amortissements des logiciels"
+           }, 
+           {
+            "name": "Amortissements des marques"
+           }, 
+           {
+            "name": "Amortissements du fonds commercial"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES IMMOBILISATIONS INCORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements des autres immobilisations incorporelles"
+           }, 
+           {
+            "name": "Amortissements des terrains de gisement"
+           }, 
+           {
+            "name": "Amortissements des terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Amortissements du fonds commercial"
+           }, 
+           {
+            "name": "Amortissements des brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "name": "Amortissements des travaux de mise en valeur des terrains"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Amortissements des installations techniques"
+             }, 
+             {
+              "name": "Amortissements du mat\u00e9riel et outillage"
+             }, 
+             {
+              "name": "Amortissements des emballages r\u00e9cup\u00e9rables identifiables"
+             }, 
+             {
+              "name": "Amortissements des autres installations techniques, mat\u00e9riel et outillage"
+             }
+            ], 
+            "name": "Amortissements des ouvrages d'infrastructure"
+           }, 
+           {
+            "name": "Amortissements des b\u00e2timents industriels, agricoles et commerciaux mis en concession"
+           }, 
+           {
+            "name": "Amortissements des autres installations et agencements"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des b\u00e2timents"
+             }, 
+             {
+              "name": "Amortissements des constructions sur terrains d'autrui"
+             }, 
+             {
+              "name": "Amortissements des ouvrages d'infrastructure"
+             }, 
+             {
+              "name": "Amortissements des installations, agencements et am\u00e9nagements des constructions"
+             }, 
+             {
+              "name": "Amortissements des autres constructions"
+             }
+            ], 
+            "name": "Amortissements des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol d'autrui"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des autres terrains"
+             }, 
+             {
+              "name": "Amortissements des terrains nus"
+             }, 
+             {
+              "name": "Amortissements des terrains am\u00e9nag\u00e9s"
+             }, 
+             {
+              "name": "Amortissements des terrains b\u00e2tis"
+             }, 
+             {
+              "name": "Amortissements des terrains de gisement"
+             }, 
+             {
+              "name": "Amortissements des agencements et am\u00e9nagements de terrains"
+             }
+            ], 
+            "name": "Amortissements des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol propre"
+           }, 
+           {
+            "name": "Amortissements des installations techniques"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements du mat\u00e9riel informatique"
+             }, 
+             {
+              "name": "Amortissements des agencements, installations et am\u00e9nagements divers"
+             }, 
+             {
+              "name": "Amortissements du mobilier de bureau"
+             }, 
+             {
+              "name": "Amortissements du mat\u00e9riel de bureau"
+             }, 
+             {
+              "name": "Amortissements des autres mobilier, mat\u00e9riel de bureau et am\u00e9nagements divers"
+             }
+            ], 
+            "name": "Amortissements des am\u00e9nagements de bureaux"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizarea altor imobilizari necorporale"
+           }, 
+           {
+            "name": "Amortizarea concesiunilor, brevetelor, licentelor, marcilor comerciale, drepturilor si activelor similare"
+           }, 
+           {
+            "name": "Amortizarea cheltuielilor de dezvoltare"
+           }, 
+           {
+            "name": "Amortizarea cheltuielilor de constituire"
+           }, 
+           {
+            "name": "Amortizarea fondului comercial"
+           }
+          ], 
+          "name": "Amortizari privind amortizarile necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements du mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel d'emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel et outillage industriel et commercial"
+           }, 
+           {
+            "name": "Amortissements des agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel et mobilier"
+           }, 
+           {
+            "name": "Amortissements des autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Amortissements des immobilisations animales et agricoles"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DU MAT\u00c9RIEL"
+         }
+        ], 
+        "name": "AMORTISSEMENTS"
+       }
+      ], 
+      "name": "Comptes d'immobilisations"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances immobilis\u00e9es"
+           }
+          ], 
+          "name": "Augmentation des cr\u00e9ances immobilis\u00e9es"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des dettes de financement"
+           }
+          ], 
+          "name": "EMPRUNTS \u00c9QUIVALENTS DE CR\u00c9DIT - BAIL IMMOBILIER"
+         }, 
+         {
+          "name": "EMPRUNTS \u00c9QUIVALENTS DE CR\u00c9DIT - BAIL MOBILIER"
+         }, 
+         {
+          "name": "Dettes rattach\u00e9es \u00e0 des participations (hors groupe)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur emprunts \u00e9quivalents d\u2019autres contrats"
+           }, 
+           {
+            "name": "sur emprunts \u00e9quivalents de cr\u00e9dit \u2013 bail mobilier"
+           }, 
+           {
+            "name": "sur emprunts \u00e9quivalents de cr\u00e9dit \u2013 bail immobilier"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "EMPRUNTS \u00c9QUIVALENTS D\u2019AUTRES CONTRATS"
+         }
+        ], 
+        "name": "DETTES DE CR\u00c9DIT - BAIL ET CONTRATS ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9sultat de l'exercice (b\u00e9n\u00e9fice)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "REPORT \u00c0 NOUVEAU CR\u00c9DITEUR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Perte - Amortissements r\u00e9put\u00e9s diff\u00e9r\u00e9s"
+           }, 
+           {
+            "name": "Perte nette \u00e0 reporter"
+           }
+          ], 
+          "name": "REPORT \u00c0 NOUVEAU D\u00c9BITEUR"
+         }
+        ], 
+        "name": "REPORT \u00c0 NOUVEAU"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PROVISIONS POUR PERTES DE CHANGE"
+         }, 
+         {
+          "name": "PROVISIONS POUR LITIGES"
+         }, 
+         {
+          "name": "PROVISIONS POUR PERTES SUR MARCH\u00c9S \u00c0 ACH\u00c8VEMENT FUTUR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres provisions financi\u00e8res pour risques et charges"
+           }, 
+           {
+            "name": "Provisions de propre assureur"
+           }, 
+           {
+            "name": "Provisions pour renouvellement des immobilisations (entreprises concessionnaires)"
+           }, 
+           {
+            "name": "Provisions pour amendes et p\u00e9nalit\u00e9s"
+           }
+          ], 
+          "name": "AUTRES PROVISIONS FINANCI\u00c8RES POUR RISQUES ET CHARGES"
+         }, 
+         {
+          "name": "PROVISIONS POUR PENSIONS ET OBLIGATIONS SIMILAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour grosses r\u00e9parations"
+           }
+          ], 
+          "name": "PROVISIONS POUR CHARGES \u00c0 REPARTIR SUR PLUSIEURS EXERCICES"
+         }, 
+         {
+          "name": "PROVISIONS POUR IMP\u00d4TS"
+         }, 
+         {
+          "name": "PROVISIONS POUR GARANTIES DONN\u00c9ES AUX CLIENTS"
+         }
+        ], 
+        "name": "PROVISIONS FINANCIERES POUR RISQUES ET CHARGES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hausse des prix", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Fluctuation des cours", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Provisions r\u00e9glement\u00e9es relatives aux stocks"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour investissement (participation des salari\u00e9s)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Provisions reconstitution des gisements miniers et p\u00e9troliers", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "SUBVENTIONS D'\u00c9QUIPEMENT B"
+         }, 
+         {
+          "name": "Plus-values r\u00e9investies", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9p\u00f4ts et cautionnements re\u00e7ues"
+           }, 
+           {
+            "name": "Avances de l'Etat"
+           }, 
+           {
+            "name": "Dettes de financement diverses"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Avances re\u00e7ues et comptes courants bloqu\u00e9s"
+           }, 
+           {
+            "name": "Dettes rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "name": "Emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisation"
+           }
+          ], 
+          "name": "AUTRES SUBVENTIONS D'INVESTISSEMENT"
+         }, 
+         {
+          "name": "Amortissements d\u00e9rogatoires", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Provision sp\u00e9ciale de r\u00e9\u00e9valuation", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pierderi legate de emiterea, rascumpararea, vanzarea, cedarea cu titlu gratuit sau anularea instrumentelor de capitaluri proprii."
+         }, 
+         {
+          "name": "Provisions r\u00e9glement\u00e9es relatives aux autres \u00e9l\u00e9ments de l'actif", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres"
+           }, 
+           {
+            "name": "\u00c9tat"
+           }, 
+           {
+            "name": "Emprunts obligataires"
+           }, 
+           {
+            "name": "D\u00e9partements"
+           }, 
+           {
+            "name": "R\u00e9gions"
+           }, 
+           {
+            "name": "Entreprises publiques ou mixtes"
+           }, 
+           {
+            "name": "Organismes internationaux"
+           }, 
+           {
+            "name": "Entreprises et organismes priv\u00e9s"
+           }, 
+           {
+            "name": "Communes et collectivit\u00e9s publiques d\u00e9centralis\u00e9es"
+           }
+          ], 
+          "name": "SUBVENTIONS D'\u00c9QUIPEMENT A"
+         }
+        ], 
+        "name": "SUBVENTIONS D'INVESTISSEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PLUS-VALUES DE CESSION \u00c0 R\u00c9INVESTIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour remises en \u00e9tat", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AUTRES PROVISIONS ET FONDS R\u00c9GLEMENTES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9l\u00e8vement pour le Budget"
+           }, 
+           {
+            "name": "Fonds National"
+           }
+          ], 
+          "name": "FONDS R\u00c9GLEMENT\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte provizioane"
+           }, 
+           {
+            "name": "Provizioane pentru pensii si obligatii similare"
+           }, 
+           {
+            "name": "Provizioane pentru litigii"
+           }, 
+           {
+            "name": "Provizioane pentru garantii acordate clientilor"
+           }, 
+           {
+            "name": "Provizioane pentru dezafectare imobilizari corporale si alte actiuni legate de acestea"
+           }, 
+           {
+            "name": "Provizioane pentru restructurare"
+           }, 
+           {
+            "name": "Provizioane pentru impozite"
+           }
+          ], 
+          "name": "AMORTISSEMENTS D\u00c9ROGATOIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hausse de prix"
+           }, 
+           {
+            "name": "Fluctuation des cours"
+           }
+          ], 
+          "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES RELATIVES AUX STOCKS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour gros entretien ou grandes r\u00e9visions ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PROVISIONS POUR INVESTISSEMENT"
+         }, 
+         {
+          "name": "PROVISION SP\u00c9CIALE DE R\u00c9\u00c9VALUATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reconstitution des gisements miniers et p\u00e9troliers"
+           }, 
+           {
+            "name": "Autres provisions pour charges"
+           }, 
+           {
+            "name": "Provisions pour charges \u00e0\u00a0 r\u00e9partir sur plusieurs exercices"
+           }, 
+           {
+            "name": "Provisions pour pensions de retraite et obligations similaires"
+           }
+          ], 
+          "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES RELATIVES AUX IMMOBILISATIONS"
+         }
+        ], 
+        "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES ET FONDS ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "COMPTES PERMANENTS NON BLOQU\u00c9S DES \u00c9TABLISSEMENTS ET SUCCURSALES"
+         }, 
+         {
+          "name": "INT\u00c9R\u00caTS COURUS SUR DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS"
+         }, 
+         {
+          "name": "COMPTES PERMANENTS BLOQU\u00c9S DES \u00c9TABLISSEMENTS ET SUCCURSALES"
+         }, 
+         {
+          "name": "DETTES LI\u00c9ES \u00c0 DES SOCI\u00c9T\u00c9S EN PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations (groupe)"
+           }, 
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations (hors groupe)"
+           }
+          ], 
+          "name": "DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON PRODUITS"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON CHARGES"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON DES SOCI\u00c9T\u00c9S EN PARTICIPATION"
+         }
+        ], 
+        "name": "DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS ET COMPTES DE LIAISON DES ETABLISSEMENTS ET SOCI\u00c9T\u00c9S EN PARTICIPATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres dotations"
+           }, 
+           {
+            "name": "Dotation initiale"
+           }, 
+           {
+            "name": "Dotations compl\u00e9mentaires"
+           }
+          ], 
+          "name": "CAPITAL PAR DOTATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actiuni proprii detinute pe termen lung"
+           }, 
+           {
+            "name": "Actiuni proprii detinute pe termen scurt"
+           }
+          ], 
+          "name": "ACTIONNAIRES, CAPITAL SOUSCRIT, NON APPEL\u00c9"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Interese care nu controleaza - alte capitaluri proprii"
+           }, 
+           {
+            "name": "Interese care nu controleaza - rezultatul exercitiului financiar"
+           }
+          ], 
+          "name": "Interese care nu controleaza"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres primes"
+           }, 
+           {
+            "name": "Primes de fusion"
+           }, 
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation (autres op\u00e9rations l\u00e9gales)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Primes d'\u00e9mission"
+           }, 
+           {
+            "name": "Primes de conversion"
+           }, 
+           {
+            "name": "Autres \u00e9carts de r\u00e9\u00e9valuation en France", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Primes d'apport"
+           }
+          ], 
+          "name": "PRIMES LI\u00c9ES AUX CAPITAUX PROPRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9mun\u00e9rations, imp\u00f4ts et autres charges personnelles"
+           }, 
+           {
+            "name": "Pr\u00e9l\u00e8vements d\u2019autoconsommation"
+           }, 
+           {
+            "name": "Bons de souscription d'actions", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres pr\u00e9l\u00e8vements"
+           }, 
+           {
+            "name": "Op\u00e9rations courantes"
+           }, 
+           {
+            "name": "Prime de conversie a obligatiunilor in actiuni"
+           }, 
+           {
+            "name": "Apports temporaires"
+           }
+          ], 
+          "name": "COMPTE DE L'EXPLOITANT"
+         }, 
+         {
+          "name": "Rezerve din conversie"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Patrimoniul regiei"
+           }, 
+           {
+            "name": "Capital souscrit, non appel\u00e9"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Capital amorti", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Capital non amorti", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Capital souscrit, appel\u00e9, vers\u00e9, non amorti"
+           }, 
+           {
+            "name": "Capital souscrit, appel\u00e9, vers\u00e9, amorti"
+           }, 
+           {
+            "name": "Patrimoniul public"
+           }, 
+           {
+            "name": "Capital souscrit, appel\u00e9, non vers\u00e9"
+           }, 
+           {
+            "name": "Capital souscrit soumis \u00e0 des conditions particuli\u00e8res"
+           }
+          ], 
+          "name": "CAPITAL SOCIAL"
+         }, 
+         {
+          "name": "CAPITAL PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation libre"
+           }, 
+           {
+            "name": "Rezerve statutare sau contractuale"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00e9serves diverses", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serve de propre assureur", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Alte rezerve"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Plus-values nettes \u00e0 long terme", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serve l\u00e9gale proprement dite", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "\u00c9carts de r\u00e9\u00e9valuation l\u00e9gale"
+           }, 
+           {
+            "name": "Rezerve din diferente de curs valutar in relatie cu investitia neta intr-o entitate straina"
+           }, 
+           {
+            "name": "Rezerve reprezentand surplusul realizat din rezerve din reevaluare"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres r\u00e9serves r\u00e9glement\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Plus-values nettes \u00e0 long terme", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serves cons\u00e9cutives \u00e0 l'octroi de subventions d'investissement", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Rezerve de valoare justa"
+           }
+          ], 
+          "name": "\u00c9CARTS DE R\u00c9\u00c9VALUATION"
+         }
+        ], 
+        "name": "CAPITAL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Rezultatul reportat provenit din trecerea la aplicarea Reglementarilor contabile conforme cu Directiva a patra a Comunitatilor Economice Europene"
+           }, 
+           {
+            "name": "Rezultatul reportat provenit din corectarea erorilor contabile"
+           }, 
+           {
+            "name": "Rezultatul reportat provenit din adoptarea pentru prima data a IAS, mai pu\u00fein IAS 29"
+           }, 
+           {
+            "name": "Rezultatul reportat reprezentand profitul nerepartizat sau pierderea neacoperita"
+           }
+          ], 
+          "name": "Rezultatul reportat"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serve l\u00e9gale"
+           }
+          ], 
+          "name": "R\u00e9serve l\u00e9gale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Primes d'\u00e9mission"
+           }, 
+           {
+            "name": "Primes de fusion"
+           }, 
+           {
+            "name": "Primes d'apport"
+           }
+          ], 
+          "name": "R\u00c9SERVES STATUTAIRES OU CONTRACTUELLES"
+         }, 
+         {
+          "name": "Report \u00e0 nouveau (solde cr\u00e9diteur)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionnaires, capital souscrit-non appel\u00e9"
+           }, 
+           {
+            "name": "Capital social"
+           }, 
+           {
+            "name": "Fonds de dotation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Capital individuel"
+             }, 
+             {
+              "name": "Compte de l'exploitant"
+             }
+            ], 
+            "name": "Capital personnel"
+           }
+          ], 
+          "name": "R\u00c9SERVE L\u00c9GALE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves facultatives"
+           }, 
+           {
+            "name": "R\u00e9sultats nets en instance d'affectation (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "R\u00e9serves diverses"
+           }
+          ], 
+          "name": "AUTRES R\u00c9SERVES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9sultat net de l'exercice (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "R\u00e9sultat net de l'exercice (solde cr\u00e9diteur)"
+           }
+          ], 
+          "name": "R\u00e9sultat net de l'exercice"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves cons\u00e9cutives \u00e0 l'octroi de subventions d'investissement"
+           }, 
+           {
+            "name": "Autres r\u00e9serves r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "R\u00e9serves de plus-values nettes \u00e0 long terme"
+           }, 
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation"
+           }
+          ], 
+          "name": "R\u00c9SERVES R\u00c9GLEMENT\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "R\u00e9serves statutaires ou contractuelles"
+           }, 
+           {
+            "name": "R\u00e9serves facultatives"
+           }
+          ], 
+          "name": "Autres r\u00e9serves"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Report \u00e0\u00a0 nouveau (solde cr\u00e9diteur)"
+           }, 
+           {
+            "name": "Report \u00e0\u00a0 nouveau (solde d\u00e9biteur)"
+           }
+          ], 
+          "name": "Report \u00e0\u00a0 nouveau"
+         }
+        ], 
+        "name": "R\u00c9SERVES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "VALEUR AJOUT\u00c9E (V.A.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres subventions d'investissement (m\u00eame ventilation que celle du compte 1391)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises publiques", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises et organismes priv\u00e9s ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9gions", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "D\u00e9partements", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Collectivit\u00e9s publiques", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Communes", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Subventions d'\u00e9quipement"
+           }
+          ], 
+          "name": "R\u00c9SULTAT NET : PERTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres provisions r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "Provisions pour plus-values en instance d'imposition"
+           }, 
+           {
+            "name": "Provisions pour amortissements d\u00e9rogatoires"
+           }, 
+           {
+            "name": "Provisions pour investissements"
+           }, 
+           {
+            "name": "Provisions pour reconstitution des gisements"
+           }, 
+           {
+            "name": "Provisions pour acquisition et construction de logements"
+           }
+          ], 
+          "name": "R\u00c9SULTAT D'EXPLOITATION (R.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'investissement re\u00e7ues"
+           }, 
+           {
+            "name": "Subventions d'investissement inscrites au CPC"
+           }, 
+           {
+            "name": "Entreprises publiques", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Entreprises et organismes priv\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Communes", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Collectivit\u00e9s publiques", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00e9gions", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "D\u00e9partements", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "R\u00c9SULTAT NET : B\u00c9N\u00c9FICE"
+         }, 
+         {
+          "name": "R\u00c9SULTAT HORS ACTIVIT\u00c9S ORDINAIRES (R.H.A.O.)"
+         }, 
+         {
+          "name": "EXC\u00c9DENT BRUT D'EXPLOITATION (E.B.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9sultat en instance d'affectation : Perte"
+           }, 
+           {
+            "name": "R\u00e9sultat en instance d'affectation : B\u00e9n\u00e9fice"
+           }
+          ], 
+          "name": "R\u00c9SULTAT EN INSANCE D\u2019AFFECTATION"
+         }, 
+         {
+          "name": "R\u00c9SULTAT FINANCIER (R.F.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marge brute sur mati\u00e8res"
+           }, 
+           {
+            "name": "Marge brute sur marchandises"
+           }
+          ], 
+          "name": "MARGE BRUTE (M.B.)"
+         }, 
+         {
+          "name": "R\u00c9SULTAT DES ACTIVIT\u00c9S ORDINAIRES (R.A.O.)"
+         }
+        ], 
+        "name": "R\u00c9SULTAT NET DE L'EXERCICE"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Comptes de liaison des \u00e9tablissements"
+           }, 
+           {
+            "name": "Comptes de liaison du si\u00e8ge"
+           }
+          ], 
+          "name": "Comptes de liaison des \u00e9tablissements et succursales"
+         }, 
+         {
+          "name": "AVANCES RE\u00c7UES DE L'\u00c9TAT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Credite bancare pe termen lung nerambursate la scadenta"
+           }, 
+           {
+            "name": "Credite externe guvernamentale"
+           }, 
+           {
+            "name": "Credite bancare externe garantate de banci"
+           }, 
+           {
+            "name": "Credite bancare externe garantate de stat"
+           }, 
+           {
+            "name": "Credite bancare pe termen lung"
+           }, 
+           {
+            "name": "Credite de la trezoreria statului"
+           }, 
+           {
+            "name": "Credite bancare interne garantate de stat"
+           }
+          ], 
+          "name": "EMPRUNTS ET DETTES AUPR\u00c8S DES \u00c9TABLISSEMENTS DE CR\u00c9DIT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imprumuturi interne din emisiuni de obligatiuni garantate de stat"
+           }, 
+           {
+            "name": "Imprumuturi externe din emisiuni de obligatiuni garantate de banci"
+           }, 
+           {
+            "name": "Emprunts obligataires convertibles"
+           }, 
+           {
+            "name": "Autres emprunts obligataires"
+           }, 
+           {
+            "name": "Imprumuturi externe din emisiuni de obligatiuni garantate de stat"
+           }, 
+           {
+            "name": "Emprunts obligataires ordinaires"
+           }
+          ], 
+          "name": "EMPRUNTS OBLIGATAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avances bloqu\u00e9es pour augmentation du capital"
+           }, 
+           {
+            "name": "Droits du conc\u00e9dant exigibles en nature"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par l'\u00c9tat"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par les organismes internationaux"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par les autres organismes africains"
+           }, 
+           {
+            "name": "Emprunts participatifs", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AVANCES ASSORTIES DE CONDITIONS PARTICULI\u00c8RES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur autres emprunts et dettes"
+           }, 
+           {
+            "name": "sur avances re\u00e7ues et comptes courants bloqu\u00e9s"
+           }, 
+           {
+            "name": "sur d\u00e9p\u00f4ts et cautionnements re\u00e7us"
+           }, 
+           {
+            "name": "sur emprunts et dettes aupr\u00e8s des \u00e9tablissements de cr\u00e9dit"
+           }, 
+           {
+            "name": "sur avances re\u00e7ues de l'\u00c9tat"
+           }, 
+           {
+            "name": "sur avances assorties de conditions particuli\u00e8res"
+           }, 
+           {
+            "name": "sur emprunts obligataires"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cautionnements"
+           }, 
+           {
+            "name": "Cautionnements", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts"
+           }
+          ], 
+          "name": "D\u00c9P\u00d4TS ET CAUTIONNEMENTS RECUS"
+         }, 
+         {
+          "name": "AVANCES RE\u00c7UES ET COMPTES COURANTS BLOQU\u00c9S"
+         }, 
+         {
+          "name": "Prime privind rambursarea obligatiunilor"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente altor imprumuturi si datorii asimilate"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur participation des salari\u00e9s aux r\u00e9sultats", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur d\u00e9p\u00f4ts et cautionnements re\u00e7us", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur autres emprunts et dettes assimil\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts et dettes assortis de conditions particuli\u00e8res", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts obligataires convertibles ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur autres emprunts obligataires", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Dettes cons\u00e9cutives \u00e0 des titres emprunt\u00e9s"
+           }, 
+           {
+            "name": "Emprunts participatifs"
+           }, 
+           {
+            "name": "Rentes viag\u00e8res capitalis\u00e9es"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Dettes du conc\u00e9dant exigibles en nature"
+           }, 
+           {
+            "name": "Participation des travailleurs aux b\u00e9n\u00e9fices"
+           }
+          ], 
+          "name": "AUTRES EMPRUNTS ET DETTES"
+         }
+        ], 
+        "name": "EMPRUNTS ET DETTES ASSIMIL\u00c9ES"
+       }
+      ], 
+      "name": "Comptes de capitaux"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }, 
+           {
+            "name": "en devises"
+           }
+          ], 
+          "name": "CAISSE SUCCURSALE B"
+         }, 
+         {
+          "children": [
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }, 
+           {
+            "name": "en devises"
+           }
+          ], 
+          "name": "CAISSE SUCCURSALE A"
+         }, 
+         {
+          "children": [
+           {
+            "name": "en devises"
+           }, 
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }
+          ], 
+          "name": "CAISSE SI\u00c8GE SOCIAL"
+         }
+        ], 
+        "name": "CAISSE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "BANQUES, CREDITS DE TRESORERIE, INTERETS COURUS"
+         }, 
+         {
+          "name": "ESCOMPTE DE CR\u00c9DITS ORDINAIRES"
+         }, 
+         {
+          "name": "ESCOMPTE DE CR\u00c9DITS DE CAMPAGNE"
+         }, 
+         {
+          "name": "CR\u00c9DITS DE TR\u00c9SORERIE"
+         }
+        ], 
+        "name": "BANQUES, CR\u00c9DITS DE TR\u00c9SORERIE ET D'ESCOMPTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACCR\u00c9DITIFS"
+         }, 
+         {
+          "name": "VIREMENTS DE FONDS"
+         }, 
+         {
+          "name": "R\u00c9GIES D'AVANCE"
+         }, 
+         {
+          "name": "AUTRES VIREMENTS INTERNES"
+         }
+        ], 
+        "name": "R\u00c9GIES D'AVANCES, ACCR\u00c9DITIFS ET VIREMENTS INTERNES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "RISQUES PROVISIONN\u00c9S \u00c0 CARACT\u00c8RE FINANCIER"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES BANQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Autres valeurs mobili\u00e8res de placement et cr\u00e9ances assimil\u00e9es (provisions)"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de propri\u00e9t\u00e9 "
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES TITRES ET VALEURS \u00c0 ENCAISSER"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a obligatiunilor emise si recuperate"
+         }, 
+         {
+          "name": "Autres charges financi\u00e8res des exercices ant\u00e9rieurs"
+         }, 
+         {
+          "name": "Charges nettes sur cession de titres et valeurs de placement"
+         }, 
+         {
+          "name": "Escomptes accord\u00e9s"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES \u00c9TABLISSEMENTS FINANCIERS ET ASSIMIL\u00c9S"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a obligatiunilor"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES D\u2019INSTRUMENTS DE TR\u00c9SORERIE"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a altor invesitii pe termen scurt si creante asimilate"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS ET RISQUES PROVISIONN\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Alte titluri de plasament"
+           }, 
+           {
+            "name": "Dobanzi la obligatiuni si alte titluri de plasament"
+           }, 
+           {
+            "name": "Bons de souscription"
+           }
+          ], 
+          "name": "AUTRES VALEURS ASSIMIL\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Varsaminte de efctuat pentru alte investitii pe termen scurt"
+           }, 
+           {
+            "name": "Varsaminte de efctuat pentru actiunile detinute la institutiile afiliate"
+           }
+          ], 
+          "name": "Varsaminte de efctuat pentru investitiile pe termen scurt"
+         }, 
+         {
+          "name": "TITRES N\u00c9GOCIABLES HORS REGION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bons de souscription d'actions"
+           }, 
+           {
+            "name": "Bons de souscription d'obligations"
+           }
+          ], 
+          "name": "BONS DE SOUSCRIPTION"
+         }, 
+         {
+          "name": "Bons du Tr\u00e9sor et bons de caisse \u00e0 court terme"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions"
+           }, 
+           {
+            "name": "Titres du Tr\u00e9sor et bons de caisse \u00e0 court terme"
+           }, 
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Titres non cot\u00e9s"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bons de caisse \u00e0 court terme"
+           }, 
+           {
+            "name": "Titres du Tr\u00e9sor \u00e0 court terme"
+           }, 
+           {
+            "name": "Titres d'organismes financiers"
+           }
+          ], 
+          "name": "TITRES DU TR\u00c9SOR ET BONS DE CAISSE \u00c0 COURT TERME"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligations cot\u00e9es"
+           }, 
+           {
+            "name": "Obligations \u00e9mises par la soci\u00e9t\u00e9 et rachet\u00e9es par elle"
+           }, 
+           {
+            "name": "Obligations non cot\u00e9es"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de cr\u00e9ance"
+           }
+          ], 
+          "name": "OBLIGATIONS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions cot\u00e9es"
+           }, 
+           {
+            "name": "Actions propres"
+           }, 
+           {
+            "name": "Actions d\u00e9membr\u00e9es (certificats d'investissement ; droits de vote)"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de propri\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Actions non cot\u00e9es"
+           }
+          ], 
+          "name": "ACTIONS"
+         }
+        ], 
+        "name": "TITRES DE PLACEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Sume in curs de decontare"
+           }, 
+           {
+            "name": "Conturi la banci in valuta"
+           }, 
+           {
+            "name": "Conturi la banci in lei"
+           }
+          ], 
+          "name": "Conturi curente la banci"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Coupons \u00e9chus"
+           }, 
+           {
+            "name": "Ch\u00e8ques de voyage"
+           }, 
+           {
+            "name": "Warrants"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats \u00e9chus des obligations"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus \u00e0 recevoir"
+           }
+          ], 
+          "name": "AUTRES VALEURS \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "name": "EFFETS \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9gies d'avances et accr\u00e9ditifs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Caisse (succursale ou agence B)"
+             }, 
+             {
+              "name": "Caisse Centrale"
+             }, 
+             {
+              "name": "Caisse (succursale ou agence A)"
+             }
+            ], 
+            "name": "Caisses"
+           }
+          ], 
+          "name": "Caisses, r\u00e9gies d'avances et accr\u00e9ditifs"
+         }, 
+         {
+          "name": "Autres organismes financiers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tr\u00e9sorerie G\u00e9n\u00e9rale"
+           }, 
+           {
+            "name": "Banques (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "Autres \u00e9tablissements financiers et assimil\u00e9s (soldes d\u00e9biteurs)"
+           }, 
+           {
+            "name": "Ch\u00e8ques postaux"
+           }
+          ], 
+          "name": "CH\u00c8QUES \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "name": "Banques"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente creditelor pe termen scurt"
+           }, 
+           {
+            "name": "Credite externe garantate de stat"
+           }, 
+           {
+            "name": "Credite externe garantate de banci"
+           }, 
+           {
+            "name": "Credite de la trezoreria statului"
+           }, 
+           {
+            "name": "Credite interne garantate de stat"
+           }, 
+           {
+            "name": "Credite bancare pe termen scurt"
+           }, 
+           {
+            "name": "Credite bancare pe termen scurt nerambursate la scadenta"
+           }, 
+           {
+            "name": "Credite externe guvernamentale"
+           }
+          ], 
+          "name": "Credite bancare pe termen scurt"
+         }, 
+         {
+          "name": "CARTES DE CR\u00c9DIT \u00c0 ENCAISSER"
+         }, 
+         {
+          "name": "CH\u00c8QUES \u00c0 ENCAISSER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres valeurs \u00e0\u00a0 encaisser"
+           }, 
+           {
+            "name": "Efecte remise spre scontare"
+           }, 
+           {
+            "name": "Virement de fonds"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ch\u00e8ques \u00e0\u00a0 l'encaissement"
+             }, 
+             {
+              "name": "Ch\u00e8ques en portefeuille"
+             }
+            ], 
+            "name": "Ch\u00e8ques \u00e0\u00a0 encaisser ou \u00e0\u00a0 l'encaissement"
+           }, 
+           {
+            "name": "Cecuri de incasat"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Effets \u00e9chus \u00e0\u00a0 encaisser"
+             }, 
+             {
+              "name": "Effets \u00e0\u00a0 l'encaissement"
+             }
+            ], 
+            "name": "Efecte de incasat"
+           }
+          ], 
+          "name": "EFFETS \u00c0 ENCAISSER"
+         }
+        ], 
+        "name": "VALEURS \u00c0 ENCAISSER"
+       }, 
+       {
+        "children": [
+         {
+          "name": "BANQUES AUTRES \u00c9TATS REGION"
+         }, 
+         {
+          "name": "BANQUES, INTERETS COURUS"
+         }, 
+         {
+          "name": "BANQUES HORS ZONE MONETAIRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "BANQUE Y"
+           }, 
+           {
+            "name": "BANQUES X"
+           }
+          ], 
+          "name": "BANQUES LOCALES"
+         }, 
+         {
+          "name": "BANQUES AUTRES ETATS ZONE MONETAIRE"
+         }
+        ], 
+        "name": "BANQUES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Casa in lei"
+           }, 
+           {
+            "name": "Casa in valuta"
+           }
+          ], 
+          "name": "CH\u00c8QUES POSTAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte valori"
+           }, 
+           {
+            "name": "Timbre fiscale si postale"
+           }, 
+           {
+            "name": "Tichete si bilete de calatorie"
+           }, 
+           {
+            "name": "Bilete de tratament si odihna"
+           }
+          ], 
+          "name": "TR\u00c9SOR"
+         }, 
+         {
+          "name": "SOCI\u00c9T\u00c9S DE GESTION ET D'INTERM\u00c9DIATION (S.G.I.)"
+         }, 
+         {
+          "name": "ETABLISSEMENTS FINANCIERS, INTERETS COURUS"
+         }, 
+         {
+          "name": "AUTRES ORGANISMES FINANCIERS"
+         }
+        ], 
+        "name": "\u00c9TABLISSEMENTS FINANCIERS ET ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreditive in valuta"
+           }, 
+           {
+            "name": "Acreditive in lei"
+           }
+          ], 
+          "name": "OPTIONS DE TAUX D'INT\u00c9R\u00caT"
+         }, 
+         {
+          "name": "OPTIONS DE TAUX BOURSIERS"
+         }, 
+         {
+          "name": "AVOIRS D'OR ET AUTRES M\u00c9TAUX PR\u00c9CIEUX ()"
+         }, 
+         {
+          "name": "OPTIONS DE TAUX DE CHANGE"
+         }, 
+         {
+          "name": "INSTRUMENTS DE MARCH\u00c9S \u00c0 TERME"
+         }
+        ], 
+        "name": "INSTRUMENTS DE TR\u00c9SORERIE"
+       }
+      ], 
+      "name": "Comptes financiers"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "PRODUITS FINIS A"
+         }, 
+         {
+          "name": "PRODUITS FINIS B"
+         }, 
+         {
+          "name": "Diferente de pret la animale si pasari"
+         }
+        ], 
+        "name": "PRODUITS FINIS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits finis (ou groupe) A", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits finis (ou groupe) B", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Produits finis"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Autres titres et valeurs de placement similaires"
+           }, 
+           {
+            "name": "Actions, partie lib\u00e9r\u00e9e"
+           }, 
+           {
+            "name": "Actions, partie non lib\u00e9r\u00e9e"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bons de caisse"
+             }, 
+             {
+              "name": "Bons de tr\u00e9sor"
+             }
+            ], 
+            "name": "Bons de caisse et bons de tr\u00e9sor"
+           }
+          ], 
+          "name": "Titres et valeurs de placement"
+         }, 
+         {
+          "name": "Produse aflate la terti"
+         }, 
+         {
+          "name": "Animale aflate la terti"
+         }, 
+         {
+          "name": "Marfuri aflate la terti"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tudes en cours E1"
+           }, 
+           {
+            "name": "\u00c9tudes en cours E2"
+           }
+          ], 
+          "name": "\u00c9TUDES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestations de services S1"
+           }, 
+           {
+            "name": "Prestations de services S2"
+           }
+          ], 
+          "name": "PRESTATIONS DE SERVICES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9chets", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Rebuts", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8res de r\u00e9cup\u00e9ration", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ambalaje aflate la terti"
+         }
+        ], 
+        "name": "SERVICES EN COURS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits interm\u00e9diaires"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des marchandises"
+           }, 
+           {
+            "name": "Fournitures A, B, C, ..", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits finis"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des mati\u00e8res et fournitures"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE MARCHANDISES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea materialelor consumabile"
+           }, 
+           {
+            "name": "Emballages (m\u00eame ventilation que celle du compte 326)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea materialelor de natura obiectelor de inventar"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Travaux en cours (m\u00eame ventilation que celle du compte 335)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits en cours (m\u00eame ventilation que celle du compte 331)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS D'AUTRES APPOVISIONNEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea animalelor aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea marfurilor aflate la terti"
+           }, 
+           {
+            "name": "Produits finis (m\u00eame ventilation que celle du compte 355)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor reziduale aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor finite aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea semifabricatelor aflate la terti"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea materiilor prime si materialelor aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea ambalajelor aflate la terti"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES SERVICES EN COURS"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE PRODUITS FINIS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marchandises (ou groupe) A", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Marchandises (ou groupe) B", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS EN COURS DE ROUTE, EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du personnel - d\u00e9biteur"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor finite"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des clients et comptes rattach\u00e9s"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea semifabricatelor"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor reziduale"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres d\u00e9biteurs"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES PRODUCTIONS EN COURS"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Prestations de services S 2", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Etat - cr\u00e9dit de TVA (suivant d\u00e9claration)"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 7%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 20%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 14%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 10%"
+               }
+              ], 
+              "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges"
+             }, 
+             {
+              "name": "Etat - TVA r\u00e9cup\u00e9rable sur immobilisations"
+             }
+            ], 
+            "name": "Etat - TVA r\u00e9cup\u00e9rable"
+           }, 
+           {
+            "name": "Acomptes sur imp\u00f4ts sur les r\u00e9sultats"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Subventions d'\u00e9quilibre \u00e0\u00a0 recevoir"
+             }, 
+             {
+              "name": "Subventions d'exploitation \u00e0\u00a0 recevoir"
+             }, 
+             {
+              "name": "Subventions d'investissement \u00e0\u00a0 recevoir"
+             }
+            ], 
+            "name": "Subventions \u00e0\u00a0 recevoir"
+           }, 
+           {
+            "name": "Etat - autres comptes d\u00e9biteurs"
+           }
+          ], 
+          "name": "Produse finite"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits r\u00e9siduels B"
+           }, 
+           {
+            "name": "Produits r\u00e9siduels A"
+           }
+          ], 
+          "name": "PRODUITS R\u00c9SIDUELS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - retenues de garantie"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Clients - factures \u00e0\u00a0 \u00e9tablir"
+             }, 
+             {
+              "name": "Cr\u00e9ances sur travaux non encore factur\u00e9s"
+             }
+            ], 
+            "name": "Clients - factures \u00e0\u00a0 \u00e9tablir et cr\u00e9ances sur travaux non encore factur\u00e9s"
+           }, 
+           {
+            "name": "Clients douteux ou litigieux"
+           }, 
+           {
+            "name": "Clients - effets \u00e0\u00a0 recevoir"
+           }, 
+           {
+            "name": "Travaux en cours T2"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Clients - cat\u00e9gorie A"
+             }, 
+             {
+              "name": "Clients - cat\u00e9gorie B"
+             }
+            ], 
+            "name": "Travaux en cours T1"
+           }, 
+           {
+            "name": "Autres clients et comptes rattach\u00e9s"
+           }
+          ], 
+          "name": "TRAVAUX EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus et non \u00e9chus \u00e0\u00a0 percevoir"
+           }, 
+           {
+            "name": "Charges constat\u00e9es d'avance"
+           }, 
+           {
+            "name": "Comptes transitoires ou d'attente - d\u00e9biteurs"
+           }, 
+           {
+            "name": "Comptes de r\u00e9partition p\u00e9riodique des charges"
+           }
+          ], 
+          "name": "Comptes de r\u00e9gularisation - actif"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres comptes d'associ\u00e9s d\u00e9biteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s - comptes d'apport en soci\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Actionnaires - capital souscrit et appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Comptes courants des associ\u00e9s d\u00e9biteurs"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es aux comptes d'associ\u00e9s"
+           }, 
+           {
+            "name": "Associ\u00e9s - op\u00e9rations faites en commun"
+           }
+          ], 
+          "name": "Produse reziduale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires B"
+           }, 
+           {
+            "name": "Produits interm\u00e9diaires A"
+           }, 
+           {
+            "name": "Personnel - autres d\u00e9biteurs"
+           }
+          ], 
+          "name": "PRODUITS INTERM\u00c9DIAIRES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits en cours P2"
+           }, 
+           {
+            "name": "Produits en cours P1"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes \u00e0\u00a0 obtenir - avoirs non encore re\u00e7us"
+           }, 
+           {
+            "name": "Fournisseurs - cr\u00e9ances pour emballages et mat\u00e9riel \u00e0\u00a0 rendre"
+           }, 
+           {
+            "name": "Autres fournisseurs d\u00e9biteurs"
+           }
+          ], 
+          "name": "PRODUITS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances sur cessions d'immobilisations"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es aux autres d\u00e9biteurs"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions d'\u00e9l\u00e9ments d'actif circulant"
+           }, 
+           {
+            "name": "Divers d\u00e9biteurs"
+           }
+          ], 
+          "name": "Diferente de pret la produse"
+         }
+        ], 
+        "name": "PRODUITS EN COURS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produit en cours P 1", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produit en cours P 2", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES CONSOMMABLES"
+         }, 
+         {
+          "name": "FOURNITURES DE BUREAU"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages \u00e0 usage mixte"
+           }, 
+           {
+            "name": "Autres emballages"
+           }, 
+           {
+            "name": "Emballages perdus"
+           }, 
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables"
+           }
+          ], 
+          "name": "EMBALLAGES"
+         }, 
+         {
+          "name": "AUTRES MATI\u00c8RES"
+         }, 
+         {
+          "name": "FOURNITURES D'ATELIER ET D'USINE"
+         }, 
+         {
+          "name": "FOURNITURES DE MAGASIN"
+         }
+        ], 
+        "name": "AUTRES APPROVISIONNEMENTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PRODUITS FINIS EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "AUTRES APPROVISIONNEMENTS EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "MARCHANDISES EN COURS DE ROUTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Stock en d\u00e9p\u00f4t"
+           }, 
+           {
+            "name": "Stock en consignation"
+           }
+          ], 
+          "name": "STOCK EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+         }, 
+         {
+          "name": "STOCK PROVENANT D'IMMOBILISATIONS MISES HORS SERVICE OU AU REBUT"
+         }
+        ], 
+        "name": "STOCKS EN COURS DE ROUTE, EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+       }, 
+       {
+        "children": [
+         {
+          "name": "FOURNITURES (A,B)"
+         }, 
+         {
+          "name": "Marfuri in curs de aprovizionare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Emballages \u00e0 usage mixte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Emballages perdus", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animale in curs de aprovizionare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mati\u00e8re (ou groupe) D", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8re (ou groupe) C", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES A"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Combustibles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de bureau", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de magasin", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures d'atelier et d usine", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES B"
+         }, 
+         {
+          "name": "Ambalaje in curs de aprovizionare"
+         }
+        ], 
+        "name": "MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Marchandises A2"
+           }, 
+           {
+            "name": "Marchandises A1"
+           }, 
+           {
+            "name": "Marchandises en cours de route"
+           }, 
+           {
+            "name": "Autres marchandises"
+           }
+          ], 
+          "name": "MARCHANDISES A"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Biens r\u00e9siduels en cours"
+             }, 
+             {
+              "name": "Biens interm\u00e9diaires en cours"
+             }, 
+             {
+              "name": "Biens produits en cours"
+             }
+            ], 
+            "name": "Biens en cours"
+           }, 
+           {
+            "name": "Autres produits en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "\u00c9tudes en cours"
+             }, 
+             {
+              "name": "Prestations en cours"
+             }, 
+             {
+              "name": "Travaux en cours"
+             }
+            ], 
+            "name": "Services en cours"
+           }
+          ], 
+          "name": "Produits en cours"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits finis (groupe B)"
+           }, 
+           {
+            "name": "Produits finis (groupe A)"
+           }, 
+           {
+            "name": "Produits finis en cours de route"
+           }, 
+           {
+            "name": "Autres produits finis"
+           }
+          ], 
+          "name": "Produits finis"
+         }, 
+         {
+          "name": "MARCHANDISES HORS ACTIVIT\u00c9S ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres mati\u00e8res et fournitures consommables"
+           }, 
+           {
+            "name": "Mati\u00e8res et fournitures consommables en cours de route"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages perdus"
+             }, 
+             {
+              "name": "Emballages \u00e0\u00a0 usage mixte"
+             }, 
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables non identifiables"
+             }
+            ], 
+            "name": "Emballages"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mati\u00e8res premi\u00e8res (groupe B)"
+             }, 
+             {
+              "name": "Mati\u00e8res premi\u00e8res (groupe A)"
+             }
+            ], 
+            "name": "Marchandises B1"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournitures de magasin"
+             }, 
+             {
+              "name": "Fournitures de bureau"
+             }, 
+             {
+              "name": "Produits d'entretien"
+             }, 
+             {
+              "name": "Mati\u00e8res consommables (groupe B)"
+             }, 
+             {
+              "name": "Mati\u00e8res consommables (groupe A)"
+             }, 
+             {
+              "name": "Fournitures d'atelier et d'usine"
+             }, 
+             {
+              "name": "Combustibles"
+             }
+            ], 
+            "name": "Marchandises B2"
+           }
+          ], 
+          "name": "MARCHANDISES B"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits interm\u00e9diaires et produits r\u00e9siduels"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D\u00e9chets"
+             }, 
+             {
+              "name": "Mati\u00e8res de r\u00e9cup\u00e9ration"
+             }, 
+             {
+              "name": "Rebuts"
+             }
+            ], 
+            "name": "Produits r\u00e9siduels (ou mati\u00e8res de r\u00e9cup\u00e9ration)"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Produits interm\u00e9diaires (groupe A)"
+             }, 
+             {
+              "name": "Produits interm\u00e9diaires (groupe B)"
+             }
+            ], 
+            "name": "Produits interm\u00e9diaires"
+           }
+          ], 
+          "name": "Produits interm\u00e9diaires et produits r\u00e9siduels"
+         }, 
+         {
+          "name": "Fournitures A, B, C, ..", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "MARCHANDISES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires A"
+           }, 
+           {
+            "name": "Produits interm\u00e9diaires B"
+           }
+          ], 
+          "name": "PRODUITS INTERM\u00c9DIAIRES"
+         }, 
+         {
+          "name": "Diferente de pret la marfuri"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9chets"
+           }, 
+           {
+            "name": "Rebuts"
+           }, 
+           {
+            "name": "Mati\u00e8res de R\u00e9cup\u00e9ration"
+           }
+          ], 
+          "name": "PRODUITS R\u00c9SIDUELS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des cr\u00e9ances circulantes"
+           }, 
+           {
+            "name": "Augmentation des dettes circulantes"
+           }
+          ], 
+          "name": "\u00c9cart de conversion - Actif (\u00e9l\u00e9ments circulant)"
+         }
+        ], 
+        "name": "PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS"
+       }
+      ], 
+      "name": "Comptes de stocks et d'en-cours"
+     }
+    ], 
+    "name": "Comptes de bilan"
+   }, 
+   {
+    "name": "COMPTES DE RESULTATS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Giruri si garantii acordate"
+           }, 
+           {
+            "name": "Alte angajamente acordate "
+           }
+          ], 
+          "name": "Angajamente acordate"
+         }, 
+         {
+          "name": "Certificate de emisii de gaze cu efect de sera"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valori materiale primite in pastrare sau custodie"
+           }, 
+           {
+            "name": "Bunuri publice primite in administrare, concesiune si cu chirie"
+           }, 
+           {
+            "name": "Alte valori in afara bilantului"
+           }, 
+           {
+            "name": "Debitori scosi din activ, urmariti in continuare"
+           }, 
+           {
+            "name": "Efecte scontate neajunse la scadenta"
+           }, 
+           {
+            "name": "Valori materiale primite spre prelucrare sau reparare"
+           }, 
+           {
+            "name": "Stocuri de natura obiectelor de inventar date in folosinta"
+           }, 
+           {
+            "name": "Redevente, locatii de gestiune, chirii si alte datorii asimilate"
+           }, 
+           {
+            "name": "Imobilizari corporale luate cu chirie"
+           }
+          ], 
+          "name": "Alte conturi in afara bilantului"
+         }, 
+         {
+          "name": "Datorii contingente"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte angajamente primite"
+           }, 
+           {
+            "name": "Giruri si garantii primite"
+           }
+          ], 
+          "name": "Angajamente primite"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizarea aferenta gradului de neutilizare a mijloacelor fixe "
+           }
+          ], 
+          "name": "Amortizarea aferenta gradului de neutilizare a mijloacelor fixe"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi de incasat"
+           }, 
+           {
+            "name": "Dobanzi de platit"
+           }
+          ], 
+          "name": "Dobanzi aferente contractelor de leasing si altor contracte asimilate, neajunse la scadenta"
+         }, 
+         {
+          "name": "Active contingente"
+         }
+        ], 
+        "name": "CONTURI IN AFARA BILANTULUI"
+       }
+      ], 
+      "name": "CONTURI SPECIALE"
+     }, 
+     {
+      "name": "CONTURI DE GESTIUNE"
+     }
+    ], 
+    "name": "Conturi in afara bilantului"
+   }, 
+   {
+    "children": [
+     {
+      "name": "COMPTES DE PRODUITS"
+     }, 
+     {
+      "name": "COMPTES DE CHARGES"
+     }
+    ], 
+    "name": "COMPTES DE GESTION"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Comptes de produits"
+     }, 
+     {
+      "name": "Comptes de charges"
+     }
+    ], 
+    "name": "Comptes de gestion"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Comptes financiers"
+     }, 
+     {
+      "name": "Comptes de tiers"
+     }, 
+     {
+      "name": "Comptes de capitaux"
+     }, 
+     {
+      "name": "Comptes de stocks et d'en-cours"
+     }, 
+     {
+      "name": "Comptes d'immobilisations"
+     }
+    ], 
+    "name": "Comptes de bilan"
+   }, 
+   {
+    "children": [
+     {
+      "name": "COMPTES D'ECARTS SUR COUTS PREETABLIS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Costul productiei de executie"
+       }, 
+       {
+        "name": "Costul productiei obtinute"
+       }
+      ], 
+      "name": "COMPTES DE RECLASSEMENTS"
+     }, 
+     {
+      "name": "COMPTES DE RESULTATS"
+     }, 
+     {
+      "name": "COMPTES DE LIAISONS INTERNES"
+     }, 
+     {
+      "name": "COMPTES DE CO\u00dbTS"
+     }, 
+     {
+      "name": "COMPTES DE DIFFERENCES DE TRAITEMENT COMPTABLE\n        "
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Divers engagements obtenus"
+         }, 
+         {
+          "name": "Abandons de cr\u00e9ances conditionnels"
+         }, 
+         {
+          "name": "Ventes avec clause de r\u00e9serve de propri\u00e9t\u00e9"
+         }
+        ], 
+        "name": "AUTRES ENGAGEMENTS OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres engagements de financement obtenus"
+         }, 
+         {
+          "name": "Facilit\u00e9s de financement renouvelables"
+         }, 
+         {
+          "name": "Emprunts restant \u00e0 encaisser"
+         }, 
+         {
+          "name": " Facilit\u00e9s d'\u00e9mission"
+         }, 
+         {
+          "name": "Cr\u00e9dits confirm\u00e9s obtenus"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE FINANCEMENT OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Commandes fermes des clients"
+         }, 
+         {
+          "name": "Achats de marchandises \u00e0 terme"
+         }, 
+         {
+          "name": "Achats \u00e0 terme de devises"
+         }, 
+         {
+          "name": "Autres engagements r\u00e9ciproques"
+         }
+        ], 
+        "name": "ENGAGEMENTS R\u00c9CIPROQUES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Avals accord\u00e9s"
+         }, 
+         {
+          "name": "Cautions, garanties accord\u00e9es"
+         }, 
+         {
+          "name": "Effets endoss\u00e9s par l'entreprise"
+         }, 
+         {
+          "name": "Autres garanties accord\u00e9es"
+         }, 
+         {
+          "name": "Hypoth\u00e8ques accord\u00e9es"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE GARANTIE ACCORD\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets endoss\u00e9s par des tiers"
+         }, 
+         {
+          "name": "Hypoth\u00e8ques obtenues"
+         }, 
+         {
+          "name": "Autres garanties obtenues"
+         }, 
+         {
+          "name": "Cautions, garanties obtenues"
+         }, 
+         {
+          "name": "Avals obtenus"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE GARANTIE OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Achats avec clause de r\u00e9serve de propri\u00e9t\u00e9"
+         }, 
+         {
+          "name": "Divers engagements accord\u00e9s"
+         }, 
+         {
+          "name": "Annulations conditionnelles de dettes"
+         }, 
+         {
+          "name": "Engagements de retraite"
+         }
+        ], 
+        "name": "AUTRES ENGAGEMENTS ACCORD\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Commandes fermes aux fournisseurs"
+         }, 
+         {
+          "name": "Ventes de marchandises \u00e0 terme"
+         }, 
+         {
+          "name": "Autres engagements r\u00e9ciproques"
+         }, 
+         {
+          "name": "Ventes \u00e0 terme de devises"
+         }
+        ], 
+        "name": "ENGAGEMENTS R\u00c9CIPROQUES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9dits accord\u00e9s non d\u00e9caiss\u00e9s"
+         }, 
+         {
+          "name": "Autres engagements de financement accord\u00e9s"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE FINANCEMENT ACCORD\u00c9S"
+       }
+      ], 
+      "name": "ENGAGEMENTS OBTENUS ET ENGAGEMENTS ACCORD\u00c9S"
+     }, 
+     {
+      "children": [
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }
+      ], 
+      "name": "CONTREPARTIES DES ENGAGEMENTS"
+     }, 
+     {
+      "name": "COMPTES DE STOCKS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cheltuieli generale de administratie"
+       }, 
+       {
+        "name": "Cheltuieli indirecte de productie"
+       }, 
+       {
+        "name": "Cheltuielile activitatii de baza"
+       }, 
+       {
+        "name": "Cheltuieli de desfacere"
+       }, 
+       {
+        "name": "Cheltuielile activitatilor auxiliare"
+       }
+      ], 
+      "name": "COMPTES REFLECHIS"
+     }
+    ], 
+    "name": "Comptes des engagements hors bilan et comptabilit\u00e9 analytique"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotations aux amortissements des immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations pour d\u00e9pr\u00e9ciations des immobilisations incorporelles et corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cr\u00e9ances", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Stocks et en-cours", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciation des actifs circulants"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux amortissements des charges immobilis\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux amortissements des immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli de exploatare privind ajustarile pentru deprecierea activelor circulante", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX AMORTISSEMENTS D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotations aux amortissements des primes de remboursement des obligations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges financiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind amortizarea primelor de rambursare a obligatiunilor", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a imobilizarilor financiare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations financi\u00e8res", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Valeurs mobili\u00e8res de placement", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux d\u00e9pr\u00e9ciation des \u00e9l\u00e9ments financiers"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a activelor circulante", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli financiare privind amortizarile si ajustarile pentru pierdere de valoare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotations aux provisions r\u00e9glement\u00e9es (stocks)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux amortissements exceptionnels des immobilisations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements d\u00e9rogatoires", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux amortissements des primes de remboursement des obligations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux d\u00e9pr\u00e9ciations exceptionnelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions exceptionnelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres dotations aux amortissements \u00e0 caract\u00e8re financier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux autres provisions r\u00e9glement\u00e9es", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX AMORTISSEMENTS \u00c0 CARACT\u00c8RE FINANCIER", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "DOTATIONS AUX AMORTISSEMENTS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "QUOTE-PART DE R\u00c9SULTAT ANNUL\u00c9E SUR EX\u00c9CUTION PARTIELLE DE CONTRATS PLURI-EXERCICES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances des exercices ant\u00e9rieurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9ances de l'exercice", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "VALEUR COMPTABLE DES CESSIONS COURANTES D'IMMOBILISATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part transf\u00e9r\u00e9e de b\u00e9n\u00e9fices (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Pertes imput\u00e9es par transfert (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR OP\u00c9RATIONS FAITES EN COMMUN", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges provisionn\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur stocks", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. aux provisions pour risques et charges durables"
+             }, 
+             {
+              "name": "D.N.C. aux provisions pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Dotations non courantes aux provisions pour risques et charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. pour plus-values en instance d'imposition"
+             }, 
+             {
+              "name": "D.N.C. pour reconstitution de gisements"
+             }, 
+             {
+              "name": "D.N.C. pour acquisition et construction de logements"
+             }, 
+             {
+              "name": "D.N.C. pour investissements"
+             }, 
+             {
+              "name": "D.N.C. pour amortissements d\u00e9rogatoires"
+             }
+            ], 
+            "name": "sur cr\u00e9ances", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. aux provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+             }, 
+             {
+              "name": "D.N.C. aux provisions pour d\u00e9pr\u00e9ciation de l'actif immobilis\u00e9"
+             }
+            ], 
+            "name": "Dotations non courantes aux provisions pour d\u00e9pr\u00e9ciation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.A.E. de l'immobilisation en non-valeurs"
+             }, 
+             {
+              "name": "D.A.E. des immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.A.E. des immobilisations corporelles"
+             }
+            ], 
+            "name": "sur risques \u00e0 court terme", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES PROVISIONN\u00c9ES D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte cheltuieli de exploatare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9ances devenues irr\u00e9couvrables"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Dons"
+             }, 
+             {
+              "name": "Lots"
+             }, 
+             {
+              "name": "Lib\u00e9ralit\u00e9s"
+             }
+            ], 
+            "name": "Dons, lib\u00e9ralit\u00e9s et lots"
+           }, 
+           {
+            "name": "Dons", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "P\u00e9nalit\u00e9s et amendes fiscales"
+             }, 
+             {
+              "name": "P\u00e9nalit\u00e9s et amendes p\u00e9nales"
+             }
+            ], 
+            "name": "M\u00e9c\u00e9nat", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D\u00e9dits"
+             }, 
+             {
+              "name": "P\u00e9nalit\u00e9s sur march\u00e9s"
+             }
+            ], 
+            "name": "Jetons de pr\u00e9sence et autres r\u00e9mun\u00e9rations d'administrateurs", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES DIVERSES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part de perte support\u00e9e (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Quote-part de b\u00e9n\u00e9fice transf\u00e9r\u00e9e (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Quotes-parts de r\u00e9sultat sur op\u00e9rations faites en commun"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions accord\u00e9es de l'exercice"
+           }, 
+           {
+            "name": "Subventions accord\u00e9es des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Subventions accord\u00e9es"
+         }, 
+         {
+          "children": [
+           {
+            "name": "VNA des immobilisations c\u00e9d\u00e9es des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Clients", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "VNA des immobilisations corporelles c\u00e9d\u00e9es"
+           }, 
+           {
+            "name": "VNA des immobilisations incorporelles c\u00e9d\u00e9es"
+           }, 
+           {
+            "name": "Autres d\u00e9biteurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "VNA provisions des immobilisations financi\u00e8res c\u00e9d\u00e9es (droits de propri\u00e9t\u00e9)"
+           }, 
+           {
+            "name": "Droits d'auteur et de reproduction", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PERTES SUR CR\u00c9ANCES CLIENTS ET AUTRES D\u00c9BITEURS", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "AUTRES CHARGES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "M\u00e9decine du travail pharmacie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres amendes p\u00e9nales et fiscales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s d'assiette, imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s de recouvrement, imp\u00f4ts directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s d'assiette, imp\u00f4ts directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s de recouvrement, imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00c9NALIT\u00c9S ET AMENDES FISCALES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "AUTRES IMP\u00d4TS ET TAXES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu tichetele de masa acordate salariatilor", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres imp\u00f4ts et taxes directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes d'apprentissage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Patentes, licences et taxes annexes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes sur appointements et salaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Formation professionnelle continue", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts fonciers et taxes annexes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "IMP\u00d4TS ET TAXES DIRECTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Droits de mutation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres droits", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes sur les v\u00e9hicules de soci\u00e9t\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Droits de timbre", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Vignettes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DROITS D'ENREGISTREMENT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu renumerarea in instrumente de capitaluri proprii", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contributia unitatii la asigurarile sociale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii pentru ajutorul de somaj", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia angajatorului pentru asigurarile sociale de sanatate", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de garantare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de concedii medicale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la schemele de pensii facultative", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Alte cheltuieli privind asigurarile si protectia sociala", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la primele de asigurare voluntara de sanatate", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "IMP\u00d4TS ET TAXES INDIRECTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu primele reprezentand participarea personalului la profit", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "IMP\u00d4TS ET TAXES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PERTES SUR CESSIONS DE TITRES DE PLACEMENT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges exceptionnelles diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur instruments de tr\u00e9sorerie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur rentes viag\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur op\u00e9rations financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Malis provenant du rachat par l'entreprise d'actions et obligations \u00e9mises par elle-m\u00eame", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PERTES SUR RISQUES FINANCIERS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats sur dettes commerciales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats sur obligations cautionn\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats sur dettes diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Avances re\u00e7ues et d\u00e9p\u00f4ts cr\u00e9diteurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Comptes courants bloqu\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats bancaires et sur op\u00e9rations de tr\u00e9sorerie et d\u2019escompte", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES INT\u00c9R\u00caTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "PERTES DE CHANGE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges provisionn\u00e9es financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur titres de placement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur risques financiers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES PROVISIONN\u00c9ES FINANCI\u00c8RES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "ESCOMPTES ACCORD\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats dans loyers de cr\u00e9dit-bail immobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats dans loyers des autres contrats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats dans loyers de cr\u00e9dit-bail mobilier", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DANS LOYERS DE CR\u00c9DIT-BAIL ET CONTRATS ASSIMIL\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances devenues irr\u00e9couvrables dans l'exercice", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Subventions accord\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emprunts obligataires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rappels d'imp\u00f4ts (autres qu'imp\u00f4ts sur les b\u00e9n\u00e9fices)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres charges exceptionnelles sur op\u00e9ration de gestion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DES EMPRUNTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imposition minimale annuelle des soci\u00e9t\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts sur les b\u00e9n\u00e9fices"
+           }, 
+           {
+            "name": "Rappels et d\u00e9gr\u00e8vements d'imp\u00f4ts sur les r\u00e9sultats"
+           }
+          ], 
+          "name": "Imp\u00f4ts sur les r\u00e9sultats"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres \u00e9l\u00e9ments d'actif", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Immobilisations financi\u00e8res", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ESCOMPTES DES EFFETS DE COMMERCE", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "FRAIS FINANCIERS ET CHARGES ASSIMIL\u00c9ES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "D.E. aux amortissements des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "D.E. aux provisions des exercices ant\u00e9rieurs"
+             }
+            ], 
+            "name": "Dotations d'exploitation des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des immobilisations corporelles"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour d\u00e9pr\u00e9ciation des immobilisations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des stocks"
+             }, 
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des cr\u00e9ances de l'actif circulant"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour d\u00e9pr\u00e9ciations de l'actif circulant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour risques et charges durables"
+             }, 
+             {
+              "name": "D.E.P. pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour risques et charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des frais pr\u00e9liminaires"
+             }, 
+             {
+              "name": "D.E.A. des charges \u00e0\u00a0 r\u00e9partir"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements de l'immobilisation en non valeur"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des mobiliers, mat\u00e9riels de bureau et am\u00e9nagements divers"
+             }, 
+             {
+              "name": "D.E.A. du mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "D.E.A. des autres immobilisations corporelles"
+             }, 
+             {
+              "name": "D.E.A. des terrains"
+             }, 
+             {
+              "name": "D.E.A. des installations techniques, mat\u00e9riel et outillage"
+             }, 
+             {
+              "name": "D.E.A. des constructions"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements des immobilisations corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des autres immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.E.A. de l'immobilisation en recherche et d\u00e9veloppement"
+             }, 
+             {
+              "name": "D.E.A. du fonds commercial"
+             }, 
+             {
+              "name": "D.E.A. des brevets, marques, droits et valeurs similaires"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements des immobilisations incorporelles"
+           }
+          ], 
+          "name": "Dotations d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges d'exploitation des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Transports administratifs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Voyages et d\u00e9placements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transports entre \u00e9tablissements ou chantiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transfert de profits sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Pertes sur op\u00e9rations faites en commun"
+           }
+          ], 
+          "name": "AUTRES FRAIS DE TRANSPORT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Achats de marchandises \"groupe A\""
+           }, 
+           {
+            "name": "Achats de marchandises \"groupe B\""
+           }, 
+           {
+            "name": "Rabais, remises et ristournes obtenus sur achats de marchandises"
+           }, 
+           {
+            "name": "Achats revendus de marchandises des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Variation de stocks de marchandises"
+           }
+          ], 
+          "name": "TRANSPORTS SUR ACHATS()", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Honoraires"
+             }, 
+             {
+              "name": "Commissions et courtages"
+             }, 
+             {
+              "name": "Frais d'actes et de contentieux"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations d'interm\u00e9diaires et honoraires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Assurances - Mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "Assurances multirisque (vol, incendie,R,C,)"
+             }, 
+             {
+              "name": "Autres assurances"
+             }, 
+             {
+              "name": "Assurances - risques d'exploitation"
+             }
+            ], 
+            "name": "Primes d'assurances"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres redevances"
+             }, 
+             {
+              "name": "Redevances pour brevets"
+             }
+            ], 
+            "name": "Redevances pour brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel occasionnel"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0\u00a0 l'entreprise"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel int\u00e9rimaire"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations du personnel ext\u00e9rieur \u00e0\u00a0 l'entreprise"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Maintenance"
+             }, 
+             {
+              "name": "Entretien et r\u00e9parations des biens immobiliers"
+             }, 
+             {
+              "name": "Entretien et r\u00e9parations des biens mobiliers"
+             }
+            ], 
+            "name": "Entretien et r\u00e9parations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Redevances de cr\u00e9dit-bail - mobilier et mat\u00e9riel"
+             }
+            ], 
+            "name": "Redevances de cr\u00e9dit-bail"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Locations de constructions"
+             }, 
+             {
+              "name": "Locations et charges locatives diverses"
+             }, 
+             {
+              "name": "Locations de terrains"
+             }, 
+             {
+              "name": "Malis sur emballages rendus"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel informatique"
+             }, 
+             {
+              "name": "Locations de mobilier et de mat\u00e9riel de bureau"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel et d'outillage"
+             }
+            ], 
+            "name": "Locations et charges locatives"
+           }
+          ], 
+          "name": "TRANSPORTS POUR LE COMPTE DE TIERS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de travaux, \u00e9tudes et prestations de service"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res et fournitures consommables"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats des emballages"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res premi\u00e8res"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res et fournitures des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats non stock\u00e9s"
+             }
+            ], 
+            "name": "Rabais, remises et ristournes obtenus sur achats consomm\u00e9s de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks des emballages"
+             }, 
+             {
+              "name": "Variation des stocks de mati\u00e8res et fournitures consommables"
+             }, 
+             {
+              "name": "Variation des stocks de mati\u00e8res premi\u00e8res"
+             }
+            ], 
+            "name": "Variation des stocks de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de fournitures d'entretien"
+             }, 
+             {
+              "name": "Achats de fournitures non stockables (eau, \u00e9lectricit\u00e9,,)"
+             }, 
+             {
+              "name": "Achats de fournitures de bureau"
+             }, 
+             {
+              "name": "Achats de petit outillage et petit \u00e9quipement"
+             }
+            ], 
+            "name": "Achats non stock\u00e9s de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats des prestations de service"
+             }, 
+             {
+              "name": "Achats des \u00e9tudes"
+             }, 
+             {
+              "name": "Achats des travaux"
+             }
+            ], 
+            "name": "Achats de travaux, \u00e9tudes et prestations de service"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats d'emballages perdus"
+             }, 
+             {
+              "name": "Achats d'emballages r\u00e9cup\u00e9rables non identifiables"
+             }, 
+             {
+              "name": "Achats d'emballages \u00e0\u00a0 usage mixte"
+             }
+            ], 
+            "name": "Achats d'emballages"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de mati\u00e8res et fournitures B"
+             }, 
+             {
+              "name": "Achats de combustibles"
+             }, 
+             {
+              "name": "Achats de mati\u00e8res et fournitures A"
+             }, 
+             {
+              "name": "Achats de fournitures de bureau"
+             }, 
+             {
+              "name": "Achats de fournitures d'atelier et d'usine"
+             }, 
+             {
+              "name": "Achats de produits d'entretien"
+             }, 
+             {
+              "name": "Achats de fournitures de magasin"
+             }
+            ], 
+            "name": "Achats de mati\u00e8res et fournitures consommables"
+           }, 
+           {
+            "name": "Achats de mati\u00e8res et de fournitures des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de mati\u00e8res premi\u00e8res B"
+             }, 
+             {
+              "name": "Achats de mati\u00e8res premi\u00e8res A"
+             }
+            ], 
+            "name": "Achats de mati\u00e8res premi\u00e8res"
+           }
+          ], 
+          "name": "TRANSPORTS SUR VENTES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Dons"
+             }, 
+             {
+              "name": "Cotisations"
+             }
+            ], 
+            "name": "Cotisations et dons"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais sur effets de commerce"
+             }, 
+             {
+              "name": "Frais d'achat et de vente des titres"
+             }, 
+             {
+              "name": "Frais et commissions sur services bancaires"
+             }
+            ], 
+            "name": "Services bancaires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres transports"
+             }, 
+             {
+              "name": "Transports sur ventes"
+             }, 
+             {
+              "name": "Transports du personnel"
+             }, 
+             {
+              "name": "Transports sur achats"
+             }
+            ], 
+            "name": "Transports"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes obtenus sur autres charges externes"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais de t\u00e9l\u00e9phone"
+             }, 
+             {
+              "name": "Frais de t\u00e9lex et de t\u00e9l\u00e9grammes"
+             }, 
+             {
+              "name": "Frais postaux"
+             }
+            ], 
+            "name": "Frais postaux et frais de t\u00e9l\u00e9communication"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Documentation g\u00e9n\u00e9rale"
+             }, 
+             {
+              "name": "Recherches"
+             }, 
+             {
+              "name": "Documentation technique"
+             }, 
+             {
+              "name": "\u00c9tudes g\u00e9n\u00e9rales"
+             }
+            ], 
+            "name": "\u00c9tudes, recherches et documentation"
+           }, 
+           {
+            "name": "Autres charges externes des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Foires et expositions"
+             }, 
+             {
+              "name": "Publications"
+             }, 
+             {
+              "name": "Cadeaux \u00e0\u00a0 la client\u00e8le"
+             }, 
+             {
+              "name": "Primes de publicit\u00e9"
+             }, 
+             {
+              "name": "\u00c9chantillons, catalogues et imprim\u00e9s publicitaires"
+             }, 
+             {
+              "name": "Annonces et insertions"
+             }, 
+             {
+              "name": "Autres charges de publicit\u00e9 et relations publiques"
+             }
+            ], 
+            "name": "Publicit\u00e9, publications et relations publiques"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Missions"
+             }, 
+             {
+              "name": "Voyages et d\u00e9placements"
+             }, 
+             {
+              "name": "R\u00e9ceptions"
+             }, 
+             {
+              "name": "Frais de d\u00e9m\u00e9nagement"
+             }
+            ], 
+            "name": "D\u00e9placements, missions et r\u00e9ceptions"
+           }
+          ], 
+          "name": "TRANSPORTS DU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Charges sociales sur appointements et salaires de l'exploitant"
+             }, 
+             {
+              "name": "Appointements et salaires"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9ration de l'exploitant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres charges sociales diverses"
+             }, 
+             {
+              "name": "Indemnit\u00e9s de pr\u00e9avis et de licenciement"
+             }, 
+             {
+              "name": "Assurances groupe"
+             }, 
+             {
+              "name": "M\u00e9decine de travail, pharmacie"
+             }, 
+             {
+              "name": "Habillement et v\u00eatements de travail"
+             }, 
+             {
+              "name": "Allocations aux oeuvres sociales"
+             }, 
+             {
+              "name": "Prestations de retraites"
+             }
+            ], 
+            "name": "Charges sociales diverses"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Primes de repr\u00e9sentation"
+             }, 
+             {
+              "name": "Commissions au personnel"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations des administrateurs, g\u00e9rants et associ\u00e9s"
+             }, 
+             {
+              "name": "Indemnit\u00e9s et avantages divers"
+             }, 
+             {
+              "name": "Primes et gratifications"
+             }, 
+             {
+              "name": "Appointements et salaires"
+             }, 
+             {
+              "name": "Indemnit\u00e9s de d\u00e9placement"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations du personnel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations familiales"
+             }, 
+             {
+              "name": "Assurances accidents de travail"
+             }, 
+             {
+              "name": "Cotisations de s\u00e9curit\u00e9 sociale"
+             }, 
+             {
+              "name": "Cotisations aux mutuelles"
+             }, 
+             {
+              "name": "Cotisations aux caisses de retraite"
+             }
+            ], 
+            "name": "Charges sociales"
+           }, 
+           {
+            "name": "Charges du personnel des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Charges de personnel"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- sur biens immobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- sur biens mobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Maintenance", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Entretien et r\u00e9parations"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Taxe urbaine et taxe d'\u00e9dilit\u00e9"
+             }, 
+             {
+              "name": "Patente"
+             }, 
+             {
+              "name": "Taxes locales"
+             }
+            ], 
+            "name": "Imp\u00f4ts et taxes directs"
+           }, 
+           {
+            "name": "Assurance obligatoire dommage construction ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Risques d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes directs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Assurance transport sur autres biens", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Assurance transport sur achats", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Assurance transportsur ventes", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Assurance transport"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Droits d'enregistrement et de timbre"
+             }, 
+             {
+              "name": "Taxes sur les v\u00e9hicules"
+             }, 
+             {
+              "name": "Autres imp\u00f4ts, taxes et droits assimil\u00e9s"
+             }, 
+             {
+              "name": "La vignette"
+             }
+            ], 
+            "name": "Imp\u00f4ts, taxes et droits assimil\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "TRANSPORTS DE PLIS", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "TRANSPORTS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournitures non stockables - Electricit\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'entretien non stockables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures de bureau non stockables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats de petit mat\u00e9riel et outillage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables -Eau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables \u2013 Autres \u00e9nergies", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats de travaux, mat\u00e9riels et \u00e9quipements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats d'\u00e9tudes et prestations de services", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES ACHATS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournitures administratives", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables (eau, \u00e9nergie...) ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'entretien et de petit \u00e9quipement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres mati\u00e8res et fournitures", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli privind animalele si pasarile", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournitures de bureau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures de magasin", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Mati\u00e8res combustibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Mati\u00e8res consommables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'atelier et d'usine", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS STOCK\u00c9S DE MATI\u00c8RES ET FOURNITURES CONSOMMABLES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournitures d'atelier et d'usine", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Combustibles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Produits d'entretien", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fournitures de magasin", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fournitures de bureau", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Emballages perdus", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Emballages \u00e0 usage mixte", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Cheltuieli privind furajele", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli privind alte materiale consumabile", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli privind semintele si materialele de plantat", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mati\u00e8res (ou groupe) D", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mati\u00e8res (ou groupe) C", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS DE MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variation des stocks de marchandises", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks de mati\u00e8res premi\u00e8res et fournitures li\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks d'autres approvisionnements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks de marchandises", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE BIENS ACHET\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures A, B, C, ..", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS DE MARCHANDISES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages \u00e0 usage mixte", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emballages perdus", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS D'EMBALLAGES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- de mat\u00e9riel, \u00e9quipements et travaux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes non affect\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- de mati\u00e8res premi\u00e8res (et fournitures)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'autres approvisionnements stock\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'\u00e9tudes et prestations de services", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'approvisionnements non stock\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- de marchandises", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Rabais, remises et ristournes obtenus sur achats"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marchandise (ou groupe) B", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Marchandise (ou groupe) A", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Achats de marchandises"
+         }, 
+         {
+          "name": "Cheltuieli privind marfurile", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reduceri comerciale primite", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "ACHATS ET VARIATIONS DE STOCKS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges financi\u00e8res"
+           }, 
+           {
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciations des immobilisations financi\u00e8res"
+           }, 
+           {
+            "name": "Dotation aux provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Dotations financi\u00e8res des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Dotations aux amortissements des primes de remboursement des obligations"
+           }
+          ], 
+          "name": "Dotations financi\u00e8res"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9ceptions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de recrutement du personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de d\u00e9m\u00e9nagement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Missions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES CHARGES EXTERNES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Redevances pour logiciels", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour brevets, licences, concessions et droits similaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour marques", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "REDEVANCES POUR BREVETS, LICENCES, LOGICIELS ET DROITS SIMILAIRES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Concours divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres imp\u00f4ts locaux", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxes fonci\u00e8res", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxe professionnelle", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxe sur les v\u00e9hicules des soci\u00e9t\u00e9s", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Cotisations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Droits de mutation", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Droits d'enregistrement et de timbre"
+           }, 
+           {
+            "name": "Taxes sur le chiffre d'affaires non r\u00e9cup\u00e9rables ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "COTISATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes exigibles \u00e0 l'\u00e9tranger", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l'entreprise", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes diverses", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DE PERSONNEL EXT\u00c9RIEUR \u00c0 L'ENTREPRISE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participation des employeurs \u00e0 la formation professionnelle continue", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Allocation logement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements lib\u00e9ratoires ouvrant droit \u00e0 l'exon\u00e9ration de la taxe d'apprentissage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Participation des employeurs \u00e0 l'effort de construction", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Pertes de change des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Pertes de change propres \u00e0\u00a0 l'exercice"
+           }
+          ], 
+          "name": "FRAIS DE FORMATION DU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9mun\u00e9rations des transitaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'actes et de contentieux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions et courtages sur achats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers frais", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions et courtages sur ventes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS D'INTERM\u00c9DIAIRES ET DE CONSEILS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Commissions sur cartes de cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'\u00e9mission d'emprunts", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cotisation pour d\u00e9faut d'investissement obligatoire dans la construction", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres frais bancaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Location de coffres", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais sur effets", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des comptes courants et d\u00e9p\u00f4ts cr\u00e9diteurs"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des dettes rattach\u00e9es \u00e0\u00a0 des participations"
+             }, 
+             {
+              "name": "Autres int\u00e9r\u00eats des emprunts et dettes"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats bancaires et sur op\u00e9rations de financement"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des emprunts"
+             }
+            ], 
+            "name": "Frais sur titres (achat, vente, garde)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "FRAIS BANCAIRES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SERVICES EXT\u00c9RIEURS B", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rabais, remises et ristournes obtenus sur autres services ext\u00e9rieurs", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurances risques d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances insolvabilit\u00e9 clients", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances transport sur achats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances mat\u00e9riel de transport", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances multirisques", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances transport sur ventes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances responsabilit\u00e9 du producteur", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres primes d'assurances", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PRIMES D'ASSURANCE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Annonces et insertions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9dit-bail immobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9dit-bail mobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cadeaux \u00e0 la client\u00e8le", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contrats assimil\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Catalogues et imprim\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Publications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers (pourboires, dons courants...)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "REDEVANCES DE CR\u00c9DIT-BAIL ET CONTRATS ASSIMIL\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres frais de t\u00e9l\u00e9communications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9l\u00e9phone", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9l\u00e9copie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9lex", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de recrutement de personnel", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "FRAIS DE T\u00c9L\u00c9COMMUNICATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Documentation g\u00e9n\u00e9rale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Documentation technique", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "\u00c9tudes et recherches", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\u00c9TUDES, RECHERCHES ET DOCUMENTATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l'entreprise", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "SOUS-TRAITANCE G\u00c9N\u00c9RALE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Transports administratifs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transports collectifs du personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Entretien et r\u00e9parations des biens immobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Maintenance", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres entretiens et r\u00e9parations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Entretien et r\u00e9parations des biens mobiliers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ENTRETIEN, R\u00c9PARATIONS ET MAINTENANCE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9chantillons", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres charges de publicit\u00e9 et relations publiques", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Publications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cadeaux \u00e0 la client\u00e8le", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Annonces, insertions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Catalogues, imprim\u00e9s publicitaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Foires et expositions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de colloques, s\u00e9minaires, conf\u00e9rences", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PUBLICIT\u00c9, PUBLICATIONS, RELATIONS PUBLIQUES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Locations et charges locatives diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de b\u00e2timents", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'actes et de contentieux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Malis sur emballages", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de terrains", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de mat\u00e9riels et outillages", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations d'emballages", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "LOCATIONS ET CHARGES LOCATIVES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SERVICES EXT\u00c9RIEURS A", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Int\u00e9gration fiscale - Produits", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9gration fiscale - Charges", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli cu impozitul pe venit si cu alte impozite care nu apar in elementele de mai sus", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX PROVISIONS FINANCI\u00c8RES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ment d'imp\u00f4t sur les soci\u00e9t\u00e9s li\u00e9 aux distributions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Produits, Reports en arri\u00e8re des d\u00e9ficits", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour grosses r\u00e9parations", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX PROVISIONS D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contribution additionnelle \u00e0 l'imp\u00f4t sur les b\u00e9n\u00e9fices", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts dus \u00e0 l'\u00e9tranger", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts dus en France", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Imp\u00f4ts sur les b\u00e9n\u00e9fices"
+         }
+        ], 
+        "name": "DOTATIONS AUX PROVISIONS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cong\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Primes et gratifications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Avantages en nature", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de pr\u00e9avis, de licenciement et de recherche d'embauche", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Suppl\u00e9ment familial", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de maladie vers\u00e9es aux travailleurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des dettes commerciales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des dettes diverses", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Autres r\u00e9mun\u00e9rations directes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des dettes rattach\u00e9es \u00e0 des participations", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des emprunts et dettes assimil\u00e9es", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Appointements salaires et commissions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DIRECTES VERS\u00c9ES AU PERSONNEL NATIONAL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges sociales sur r\u00e9mun\u00e9ration du personnel non national", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Charges sociales sur r\u00e9mun\u00e9ration du personnel national", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES SOCIALES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avantages en nature", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Suppl\u00e9ment familial", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de maladie vers\u00e9es aux travailleurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cong\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Primes et gratifications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Appointements salaires et commissions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres r\u00e9mun\u00e9rations directes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de pr\u00e9avis, de licenciement et de recherche d'embauche", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DIRECTES VERS\u00c9ES AU PERSONNEL NON NATIONAL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Indemnit\u00e9s d'expatriation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres indemnit\u00e9s et avantages divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de logement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de repr\u00e9sentation", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INDEMNIT\u00c9S FORFAITAIRES VERS\u00c9ES AU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli din diferente de curs valutar", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l\u2019entreprise", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATION TRANSF\u00c9R\u00c9E DE PERSONNEL EXT\u00c9RIEUR", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges sociales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "R\u00e9mun\u00e9ration du travail de l'exploitant", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS ET CHARGES SOCIALES DE L'EXPLOITANT INDIVIDUEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "M\u00e9decine du travail et pharmacie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux Syndicats et Comit\u00e9s d'entreprise, d'\u00e9tablissement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux autres oeuvres sociales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux Comit\u00e9s d'hygi\u00e8ne et de s\u00e9curit\u00e9", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES CHARGES SOCIALES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "CHARGES DE PERSONNEL", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Comptes de charges"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferts de charges financi\u00e8res", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE PROVISIONS FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations corporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour grosses r\u00e9parations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations incorporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE PROVISIONS D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REPRISES D'AMORTISSEMENTS", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "REPRISES DE PROVISIONS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reprises sur provisions exceptionnelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises pour d\u00e9pr\u00e9ciations exceptionnelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur provisions r\u00e9glement\u00e9es (stocks) ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur autres provisions r\u00e9glement\u00e9es ", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements d\u00e9rogatoires", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Plus-values r\u00e9investies", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision sp\u00e9ciale de r\u00e9\u00e9valuation", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur provisions r\u00e9glement\u00e9es (immobilisations)"
+           }
+          ], 
+          "name": "TRANSFERTS DE CHARGES FINANCIERES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Venituri financiare din ajustari pentru pierderea de valoare a imobilizarilor financiare", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Valeurs mobili\u00e8res de placement", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations financi\u00e8res", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des \u00e9l\u00e9ments financiers"
+           }, 
+           {
+            "name": "Venituri financiare din ajustari pentru pierderea de valoare a activelor circulante", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur provisions financiers", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Venituri financiare din ajustari pentru pierdere de valoare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Venituri din ajustari pentru deprecierea activelor circulante ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din provizioane", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cr\u00e9ances", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Stocks et en-cours", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des actifs circulants"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des immobilisations corporelles et incorporelles"
+           }, 
+           {
+            "name": "Venituri din fondul comercial negativ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din ajustari pentru deprecierea imobilizarilor", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur amortissements des immobilisations incorporelles et corporelles "
+           }
+          ], 
+          "name": "TRANSFERTS DE CHARGES D'EXPLOITATION", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "TRANSFERTS DE CHARGES", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "GAINS SUR CESSIONS DE TITRES DE PLACEMENT", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "ESCOMPTES OBTENUS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REVENUS DE TITRES DE PLACEMENT", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur instruments de tr\u00e9sorerie", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonis provenant du rachat par l'entreprise d'actions et d'obligations \u00e9mises par elle-m\u00eame", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur op\u00e9rations financi\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur rentes viag\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits exceptionnels divers", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "GAINS SUR RISQUES FINANCIERS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur titres de placement", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur risques financiers", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "autres charges provisionn\u00e9es financi\u00e8res", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE CHARGES PROVISIONN\u00c9ES FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REVENUS DE PARTICIPATIONS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits exceptionnels sur op\u00e9rations de gestion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Rentr\u00e9es sur cr\u00e9ances amorties", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "D\u00e9gr\u00e8vements d'imp\u00f4ts autres qu'imp\u00f4ts sur les b\u00e9n\u00e9fices", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "D\u00e9dits et p\u00e9nalit\u00e9s per\u00e7us sur achats et sur ventes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Lib\u00e9ralit\u00e9s re\u00e7ues", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Subventions d'\u00e9quilibre", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DE PR\u00caTS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "GAINS DE CHANGE", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisations incorporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Immobilisations corporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Immobilisations financi\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Autres \u00e9l\u00e9ments d'actif", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Produits des cessions d'\u00e9l\u00e9ments d'actif"
+         }
+        ], 
+        "name": "REVENUS FINANCIERS ET PRODUITS ASSIMIL\u00c9S", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits des cessions des immobilisations des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations corporelles"
+           }, 
+           {
+            "name": "Droits d'auteur et de reproduction", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations financi\u00e8res (droits de propri\u00e9t\u00e9)"
+           }, 
+           {
+            "name": "Redevances pour concessions, brevets, licences, marques, proc\u00e9d\u00e9s, logiciels ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Produits des cessions d'immobilisations"
+         }, 
+         {
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR EX\u00c9CUTION PARTIELLE DE CONTRATS PLURIEXERCICES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part de b\u00e9n\u00e9fice attribu\u00e9e (comptabilit\u00e9 des associ\u00e9s non-g\u00e9rants)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Quote-part de perte transf\u00e9r\u00e9e (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Quotes-parts de r\u00e9sultats sur op\u00e9rations faites en commun"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "P\u00e9nalit\u00e9s re\u00e7ues sur march\u00e9s"
+             }, 
+             {
+              "name": "D\u00e9dits re\u00e7us"
+             }
+            ], 
+            "name": "Jetons de pr\u00e9sence et autres r\u00e9mun\u00e9rations d'administrateurs", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Indemnit\u00e9s d\u2019assurances re\u00e7ues", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Lib\u00e9ralit\u00e9s"
+             }, 
+             {
+              "name": "Lots"
+             }, 
+             {
+              "name": "Dons"
+             }
+            ], 
+            "name": "Dons, lib\u00e9ralit\u00e9s et lots re\u00e7us"
+           }, 
+           {
+            "name": "Alte venituri din exploatare", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din vanzarea activelor si alte operatii de capital", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din subventii pentru investitii", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Rentr\u00e9es sur cr\u00e9ances sold\u00e9es"
+           }
+          ], 
+          "name": "PRODUITS DIVERS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'\u00e9quilibre re\u00e7ues des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Subventions d'\u00e9quilibre re\u00e7ues de l'exercice"
+           }
+          ], 
+          "name": "Subventions d'\u00e9quilibre"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur subventions d'investissement de l'exercice"
+           }, 
+           {
+            "name": "Reprises sur subventions d'investissement des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Reprise sur subventions d'investissements"
+         }, 
+         {
+          "name": "PRODUITS DES CESSIONS COURANTES D'IMMOBILISATIONS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Reprises sur plus-values en instance d'imposition"
+             }, 
+             {
+              "name": "Reprises sur amortissements d\u00e9rogatoires"
+             }, 
+             {
+              "name": "Reprises sur provisions pour acquisition et construction de logements"
+             }, 
+             {
+              "name": "Reprises sur provisions pour reconstitution de gisements"
+             }, 
+             {
+              "name": "Reprises sur provisions pour investissements"
+             }
+            ], 
+            "name": "sur cr\u00e9ances", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reprises sur provisions pour risques et charges durables"
+             }, 
+             {
+              "name": "Reprises sur provisions pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Reprises non courantes sur provisions pour risques et charges"
+           }, 
+           {
+            "name": "sur autres charges provisionn\u00e9es", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R,N,C sur provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+             }, 
+             {
+              "name": "R,N,C sur provisions pour d\u00e9pr\u00e9ciation de l'actif immobilis\u00e9"
+             }
+            ], 
+            "name": "Reprises non courantes sur provisions pour d\u00e9pr\u00e9ciation"
+           }, 
+           {
+            "name": "Transferts de charges non courantes"
+           }, 
+           {
+            "name": "sur stocks", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R,A,E des immobilisations en non valeur"
+             }, 
+             {
+              "name": "R,A,E des immobilisations incorporelles"
+             }, 
+             {
+              "name": "R,A,E des immobilisations corporelles"
+             }
+            ], 
+            "name": "sur risques \u00e0 court terme", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE CHARGES PROVISIONN\u00c9ES D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "B\u00e9n\u00e9fices attribu\u00e9s par transfert (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Quote-part transf\u00e9r\u00e9e de pertes (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR OP\u00c9RATIONS FAITES EN COMMUN", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "AUTRES PRODUITS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "IMMOBILISATIONS INCORPORELLES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "IMMOBILISATIONS CORPORELLES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "IMMOBILISATIONS FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "PRODUCTION IMMOBILIS\u00c9E", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "VARIATIONS DES STOCKS DE PRODUITS FINIS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gains de change des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Gains de change propres \u00e0\u00a0 l'exercice"
+           }
+          ], 
+          "name": "Gains de change"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des pr\u00eats"
+             }, 
+             {
+              "name": "Revenus des autres cr\u00e9ances financi\u00e8res"
+             }
+            ], 
+            "name": "Int\u00e9r\u00eats et produits assimil\u00e9s"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats et autres produits financiers des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Revenus des cr\u00e9ances rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "name": "Escomptes obtenus"
+           }, 
+           {
+            "name": "Produits nets sur cessions de titres et valeurs de placement"
+           }, 
+           {
+            "name": "Revenus des titres et valeurs de placement"
+           }
+          ], 
+          "name": "Int\u00e9r\u00eats et autres produits financiers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur dotations financi\u00e8res des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res"
+           }, 
+           {
+            "name": "Reprises sur provisions pour risques et charges financi\u00e8res"
+           }, 
+           {
+            "name": "Reprises sur amortissements des primes de remboursement des obligations"
+           }, 
+           {
+            "name": "Reprise sur provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Transfert - Pertes de change"
+             }, 
+             {
+              "name": "Transfert - Charges d'int\u00e9r\u00eats"
+             }, 
+             {
+              "name": "Transfert - Autres charges financi\u00e8res"
+             }
+            ], 
+            "name": "Transfert de charges financi\u00e8res"
+           }
+          ], 
+          "name": "Reprises financi\u00e8res, transferts de charges"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tudes en cours", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Prestations de services en cours", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES EN-COURS DE SERVICES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits r\u00e9siduels", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Travaux en cours", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits en cours", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE PRODUITS EN COURS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits des titres de participation et des autres titres immobilis\u00e9s des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Revenus des titres de participation"
+           }, 
+           {
+            "name": "Revenus des titres immobilis\u00e9s"
+           }
+          ], 
+          "name": "Produits des titres de participation et des autres titres immobilis\u00e9s"
+         }
+        ], 
+        "name": "VARIATIONS DES STOCKS DE BIENS ET DE SERVICES PRODUITS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Bonis sur reprises et cessions d'emballages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Redevances pour brevets, logiciels, marques et droits similaires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Commissions et courtages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Locations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Autres produits accessoires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ports, emballages perdus et autres frais factur\u00e9s", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Mise \u00e0 disposition de personnel", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "PRODUITS ACCESSOIRES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "TRAVAUX FACTUR\u00c9S", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS FINIS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE MARCHANDISES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits d'activit\u00e9s annexes (cessions d'approvisionnements...)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Commissions et courtages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits des services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Locations diverses", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Mise \u00e0 disposition de personnel factur\u00e9e ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ports et frais accessoires factur\u00e9s", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonifications obtenues des clients et primes sur ventes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonis sur reprises d'emballages consign\u00e9s", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Venituri din activitati diverse", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS INTERM\u00c9DIAIRES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Venituri din vanzarea marfurilor", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- sur ventes de produits interm\u00e9diaires ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur produits des activit\u00e9s annexes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur ventes de produits finis", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur ventes de marchandises", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur prestations de services", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur \u00e9tudes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur travaux", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reduceri comerciale acordate", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "SERVICES VENDUS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS R\u00c9SIDUELS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes de marchandises"
+         }
+        ], 
+        "name": "VENTES", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventes de biens et services produits des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventes de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Ventes de produits finis"
+             }
+            ], 
+            "name": "Ventes de biens produits \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ports et frais accessoires factur\u00e9s"
+             }, 
+             {
+              "name": "Autres ventes et produits accessoires"
+             }, 
+             {
+              "name": "Bonis sur reprises d'emballages consign\u00e9s"
+             }, 
+             {
+              "name": "Locations divers es re\u00e7ues"
+             }, 
+             {
+              "name": "Produits de services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel"
+             }, 
+             {
+              "name": "Commissions et courtages re\u00e7us"
+             }
+            ], 
+            "name": "Ventes de produits accessoires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations de services"
+             }, 
+             {
+              "name": "Travaux"
+             }, 
+             {
+              "name": "Etudes"
+             }
+            ], 
+            "name": "Ventes de services produits \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations de services"
+             }, 
+             {
+              "name": "Travaux"
+             }, 
+             {
+              "name": "Etudes"
+             }
+            ], 
+            "name": "Ventes de services produits au Maroc"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Rabais, remises et ristournes accord\u00e9s sur ventes de B et S produits des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes au Maroc des biens produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes au Maroc des services produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes \u00e0\u00a0 l'\u00e9tranger des biens produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes \u00e0\u00a0 l'\u00e9tranger des services produits"
+             }
+            ], 
+            "name": "Rabais, remises et ristournes accord\u00e9s par l'entreprise"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventes de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Ventes de produits finis"
+             }, 
+             {
+              "name": "Ventes de produits r\u00e9siduels"
+             }
+            ], 
+            "name": "Ventes de biens produits au Maroc"
+           }, 
+           {
+            "name": "Redevances pour brevets, marques, droits et valeurs similaires"
+           }
+          ], 
+          "name": "SUR PRODUITS \u00c0 L'IMPORTATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisation en non valeurs produite"
+           }, 
+           {
+            "name": "Immobilisations corporelles produites"
+           }, 
+           {
+            "name": "Immobilisations incorporelles produites"
+           }, 
+           {
+            "name": "Immobilisations produites des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Immobilisations produites par l'entreprise pour elle m\u00eame"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'exploitation re\u00e7ues des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Subventions d'exploitations re\u00e7ues de l'exercice"
+           }
+          ], 
+          "name": "Subventions d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Profits sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Vers\u00e9es par l'\u00c9tat et les collectivit\u00e9s publiques", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Vers\u00e9es par des tiers", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Vers\u00e9es par les organismes internationaux", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Transfert de pertes sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Autres produits d'exploitation des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "AUTRES SUBVENTIONS D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "T,C,E - Autres charges d'exploitation"
+             }, 
+             {
+              "name": "T,C,E - Achats consomm\u00e9s de mati\u00e8res et fournitures"
+             }, 
+             {
+              "name": "T,C,E-Autres charges externes"
+             }, 
+             {
+              "name": "T,C,E - Achats de marchandises"
+             }, 
+             {
+              "name": "T,C,E - Charges de personnel"
+             }, 
+             {
+              "name": "T,C,E - Imp\u00f4ts et taxes"
+             }
+            ], 
+            "name": "Transferts des charges d'exploitation"
+           }, 
+           {
+            "name": "Reprises sur provisions pour risques et charges"
+           }, 
+           {
+            "name": "Reprises sur amortissements des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Reprises sur amortissements de l'immobilisation en non valeurs"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des immobilisations"
+           }, 
+           {
+            "name": "Reprises sur amortissements des immobilisations corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reprises sur amortissements des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "Reprises sur provisions des exercices ant\u00e9rieurs"
+             }
+            ], 
+            "name": "Reprises sur amortissements et provisions des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Reprise d'exploitation, transferts de charges"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Produits en cours", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Travaux en cours", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Variation des en-cours de production de biens"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks d'\u00e9tudes en cours"
+             }, 
+             {
+              "name": "Variation des stocks de prestations en cours"
+             }, 
+             {
+              "name": "Prestations de services en cours", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Variation des stocks de travaux en cours"
+             }
+            ], 
+            "name": "Variation des stocks de services en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Produits interm\u00e9diaires ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produits finis", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produits r\u00e9siduels", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Variation des stocks de produits"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks de produits interm\u00e9diaires en cours"
+             }, 
+             {
+              "name": "Variation des stocks de biens produits en cours"
+             }, 
+             {
+              "name": "Variation des stocks de produits r\u00e9siduels en cours"
+             }
+            ], 
+            "name": "Variation des stocks de produits en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks de produits r\u00e9siduels"
+             }, 
+             {
+              "name": "Variation des stocks de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Variation des stocks de produits finis"
+             }
+            ], 
+            "name": "Variation des stocks de biens produits"
+           }
+          ], 
+          "name": "SUR PRODUITS DE P\u00c9R\u00c9QUATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventes de marchandises \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "name": "Ventes de marchandises des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Ventes de marchandises au Maroc"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes accord\u00e9s par l'entreprise"
+           }
+          ], 
+          "name": "SUR PRODUITS \u00c0 L'EXPORTATION", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "SUBVENTIONS D'EXPLOITATION", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Comptes de produits"
+     }
+    ], 
+    "name": "Comptes de gestion"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dits de tr\u00e9sorerie"
+           }
+          ], 
+          "name": "Cr\u00e9dits de tr\u00e9sorerie"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Banques (solde cr\u00e9diteur)"
+           }, 
+           {
+            "name": "Autres \u00e9tablissements financiers et assimil\u00e9s (soldes cr\u00e9diteurs)"
+           }
+          ], 
+          "name": "Banques (solde cr\u00e9diteur)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dits d'escompte"
+           }
+          ], 
+          "name": "Cr\u00e9dits d'escompte"
+         }
+        ], 
+        "name": "TRESORERIE - PASSIF"
+       }
+      ], 
+      "name": "COMPTES DE TRESORERIE"
+     }, 
+     {
+      "name": "COMPTES D'ACTIF IMMOBILISE"
+     }, 
+     {
+      "name": "COMPTES D'ACTIF CIRCULANT (HORS TRESORERIE)"
+     }, 
+     {
+      "name": "COMPTES DU PASSIF CIRCULANT (HORS TRESORERIE)"
+     }, 
+     {
+      "name": "COMPTES DE FINANCEMENT PERMANENT"
+     }
+    ], 
+    "name": "COMPTES DE BILAN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "PERTES SUR CR\u00c9ANCES H.A.O."
+       }, 
+       {
+        "name": "DONS ET LIB\u00c9RALIT\u00c9S ACCORD\u00c9S"
+       }, 
+       {
+        "name": "CHARGES PROVISIONN\u00c9ES H.A.O."
+       }, 
+       {
+        "name": "ABANDONS DE CR\u00c9ANCES CONSENTIS"
+       }, 
+       {
+        "name": "CHARGES H.A.O. CONSTAT\u00c9ES"
+       }
+      ], 
+      "name": "CHARGES HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMMOBILISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "name": "R\u00e9sultat d'exploitation"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Insuffisance brute d'exploitation (d\u00e9biteur)"
+         }, 
+         {
+          "name": "Exc\u00e9dent brut d'exploitation (cr\u00e9diteur)"
+         }
+        ], 
+        "name": "Exc\u00e9dent brut d'exploitation"
+       }, 
+       {
+        "name": "Valeur ajout\u00e9e"
+       }, 
+       {
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }
+      ], 
+      "name": "VALEURS COMPTABLES DES CESSIONS D'IMMOBILISATIONS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "REPRISES DE SUBVENTIONS D\u2019INVESTISSEMENT"
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS POUR D\u00c9PR\u00c9CIATION H.A.O."
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS R\u00c9GLEMENT\u00c9ES"
+       }, 
+       {
+        "name": "REPRISES D\u2019AMORTISSEMENTS"
+       }, 
+       {
+        "name": "AUTRES REPRISES H.A.O."
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS POUR RISQUES ET CHARGES H.A.O."
+       }
+      ], 
+      "name": "REPRISES HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DOTATIONS AUX PROVISIONS POUR RISQUES ET CHARGES H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX AMORTISSEMENTS H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX PROVISIONS R\u00c9GLEMENT\u00c9ES"
+       }, 
+       {
+        "name": "AUTRES DOTATIONS H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX PROVISIONS POUR D\u00c9PR\u00c9CIATION H.A.O."
+       }
+      ], 
+      "name": "DOTATIONS HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DONS ET LIB\u00c9RALIT\u00c9S OBTENUS"
+       }, 
+       {
+        "name": "ABANDONS DE CR\u00c9ANCES OBTENUS"
+       }, 
+       {
+        "name": "TRANSFERTS DE CHARGES H.A.O"
+       }, 
+       {
+        "name": "REPRISES DES CHARGES PROVISIONN\u00c9ES H.A.O."
+       }, 
+       {
+        "name": "PRODUITS H.A.O CONSTAT\u00c9S"
+       }
+      ], 
+      "name": "PRODUITS HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "RAPPEL D'IMP\u00d4TS SUR R\u00c9SULTATS ANT\u00c9RIEURS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "D\u00e9gr\u00e8vements"
+         }, 
+         {
+          "name": "Annulations pour pertes r\u00e9troactives"
+         }
+        ], 
+        "name": "D\u00c9GR\u00c8VEMENTS ET ANNULATIONS D\u2019IMP\u00d4TS SUR R\u00c9SULTATS ANT\u00c9RIEURS"
+       }, 
+       {
+        "name": "IMP\u00d4T MINIMUM FORFAITAIRE (I.M.F.)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activit\u00e9s exerc\u00e9es dans l'\u00c9tat"
+         }, 
+         {
+          "name": "Activit\u00e9s exerc\u00e9es hors R\u00e9gion"
+         }, 
+         {
+          "name": "Activit\u00e9s exerc\u00e9es dans les autres \u00c9tats de la R\u00e9gion"
+         }
+        ], 
+        "name": "IMP\u00d4TS SUR LES B\u00c9N\u00c9FICES DE L'EXERCICE"
+       }
+      ], 
+      "name": "IMP\u00d4TS SUR LE R\u00c9SULTAT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "COLLECTIVIT\u00c9S PUBLIQUES"
+       }, 
+       {
+        "name": "AUTRES"
+       }, 
+       {
+        "name": "\u00c9TAT"
+       }, 
+       {
+        "name": "GROUPE"
+       }
+      ], 
+      "name": "SUBVENTIONS D'\u00c9QUILIBRE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PARTICIPATION L\u00c9GALE AUX B\u00c9N\u00c9FICES"
+       }, 
+       {
+        "name": "AUTRES PARTICIPATIONS"
+       }, 
+       {
+        "name": "PARTICIPATION CONTRACTUELLE AUX B\u00c9N\u00c9FICES"
+       }
+      ], 
+      "name": "PARTICIPATION DES TRAVAILLEURS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMMOBILISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }
+      ], 
+      "name": "PRODUITS DES CESSIONS D'IMMOBILISATIONS"
+     }
+    ], 
+    "name": "Comptes sp\u00e9ciaux"
+   }
+  ], 
+  "name": "Plan Comptable SYSCOA"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/syscohada_syscohada_chart_template.json b/setup/doctype/company/charts/syscohada_syscohada_chart_template.json
new file mode 100644
index 0000000..4786b26
--- /dev/null
+++ b/setup/doctype/company/charts/syscohada_syscohada_chart_template.json
@@ -0,0 +1,9881 @@
+{
+ "name": "SYSCOHADA - Plan de compte", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Venituri din sconturi obtinute", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Venituri din actiuni detinute la entitatile afiliate", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus sur autres formes de participation ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances rattach\u00e9es \u00e0 des participations", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din interese de participare", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din imobilizari financiare"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Revenus des titres immobilis\u00e9s", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des pr\u00eats", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances immobilis\u00e9es", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din investitii financiare pe termen scurt", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Alte venituri financiare", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din diferente de curs valutar", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Revenus des cr\u00e9ances diverses", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Revenus des cr\u00e9ances commerciales ", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din creante imobilizate", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Venituri din imobilizari financiare cedate", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Castiguri din investitii pe termen scurt cedate", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din investitii financiare cedate"
+           }, 
+           {
+            "name": "Venituri din dobanzi", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENITURI FINANCIARE"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Venituri din subventii de exploatare pentru alte cheltuieli externe", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare aferente altor venituri", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru asigurari si protectie sociala", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru dobanda datorata", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru materii prime si materiale consumabile ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru alte cheltuieli de exploatare", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare aferente cifrei de afaceri", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Venituri din subventii de exploatare pentru plata personalului", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Venituri din subventii de exploatare"
+           }
+          ], 
+          "name": "VENITURI DIN SUBVENTII DE EXPLOATARE"
+         }
+        ], 
+        "name": "CONTURI DE VENITURI"
+       }, 
+       {
+        "name": "CONTURI DE CHELTUIELI"
+       }
+      ], 
+      "name": "Conturile de venituri si cheltuieli"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Diferente de pret la materii prime si materiale"
+           }, 
+           {
+            "name": "Materiale de natura obiectelor de inventar"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Seminte si materiale de plantat"
+             }, 
+             {
+              "name": "Combustibili"
+             }, 
+             {
+              "name": "Materiale auxiliare"
+             }, 
+             {
+              "name": "Furaje"
+             }, 
+             {
+              "name": "Alte materiale consumabile"
+             }, 
+             {
+              "name": "Materiale pentru ambalat"
+             }, 
+             {
+              "name": "Piese de schimb"
+             }
+            ], 
+            "name": "Materiale consumabile"
+           }, 
+           {
+            "name": "Materii prime"
+           }
+          ], 
+          "name": "STOCURI DE MATERII PRIME SI MATERIALE"
+         }
+        ], 
+        "name": "CONTURI DE STOCURI SI PRODUCTIE IN CURS DE EXECUTIE"
+       }, 
+       {
+        "name": "CONTURI DE IMOBILIZARI"
+       }, 
+       {
+        "name": "CONTURI DE TREZORERIE"
+       }, 
+       {
+        "name": "Conturi de capitaluri"
+       }, 
+       {
+        "name": "CONTURI DE TERTI"
+       }
+      ], 
+      "name": "Conturi de bilant"
+     }
+    ], 
+    "name": "Conturi financiare"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Decontari privind interesele de participare"
+         }, 
+         {
+          "name": "OP\u00c9RATIONS AVEC LES AUTRES ORGANISMES INTERNATIONAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour garanties donn\u00e9es aux clients"
+           }, 
+           {
+            "name": "Provisions pour amendes, doubles droits et p\u00e9nalit\u00e9s"
+           }, 
+           {
+            "name": "Autres provisions pour risques et charges"
+           }, 
+           {
+            "name": "Provisions pour pertes de change"
+           }, 
+           {
+            "name": "Provisions pour imp\u00f4ts"
+           }, 
+           {
+            "name": "Provisions pour litiges"
+           }
+          ], 
+          "name": "Autres provisions pour risques et charges"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente decontarilor intre entitatile afiliate"
+           }, 
+           {
+            "name": "Decontari privind interesele de participare"
+           }, 
+           {
+            "name": "Dobanzi aferente decontarilor privind interesele de participare"
+           }, 
+           {
+            "name": "Decontari intre entitatile afiliate"
+           }
+          ], 
+          "name": "OP\u00c9RATIONS AVEC LES ORGANISMES AFRICAINS"
+         }, 
+         {
+          "name": "Dividende de plata"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionari/asociati dobanzi la conturi curente"
+           }, 
+           {
+            "name": "Actionari/asociati - conturi curente"
+           }
+          ], 
+          "name": "Sume datorate actionarilor/asociatilor"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Organismes internationaux, subventions \u00e0 recevoir"
+           }, 
+           {
+            "name": "Organismes internationaux, fonds de dotation \u00e0 recevoir"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "ORGANISMES INTERNATIONAUX, FONDS DE DOTATION ET SUBVENTIONS \u00c0 RECEVOIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionnaires d\u00e9faillants"
+           }, 
+           {
+            "name": "Associ\u00e9s - Versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Apports en num\u00e9raire"
+             }, 
+             {
+              "name": "Apports en nature"
+             }
+            ], 
+            "name": "Associ\u00e9s - Comptes d'apport en soci\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Associ\u00e9s - Capital \u00e0 rembourser"
+           }, 
+           {
+            "name": "Associ\u00e9s - Versements anticip\u00e9s"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Associ\u00e9s - Capital appel\u00e9, non vers\u00e9"
+             }, 
+             {
+              "name": "Actionnaires - Capital souscrit et appel\u00e9, non vers\u00e9"
+             }
+            ], 
+            "name": "Apporteurs - Capital appel\u00e9, non vers\u00e9"
+           }
+          ], 
+          "name": "Decontari cu actionarii/asociatii privind capitalul"
+         }
+        ], 
+        "name": "ORGANISMES INTERNATIONAUX"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres repr\u00e9sentants du personnel"
+           }, 
+           {
+            "name": "D\u00e9l\u00e9gu\u00e9s du personnel"
+           }, 
+           {
+            "name": "Syndicats et Comit\u00e9s d'entreprises, d'\u00c9tablissement"
+           }
+          ], 
+          "name": "REPR\u00c9SENTANTS DU PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte creante in legatura cu personalul"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Dettes provisionn\u00e9es pour cong\u00e9s \u00e0 payer"
+           }, 
+           {
+            "name": "Dettes provisionn\u00e9es pour participation des salari\u00e9s aux r\u00e9sultats", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres Charges \u00e0 payer"
+           }
+          ], 
+          "name": "PERSONNEL, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "PERSONNEL \u2013 D\u00c9P\u00d4TS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serve sp\u00e9ciale", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Organismes sociaux rattach\u00e9s \u00e0 l'entreprise"
+           }, 
+           {
+            "name": "Assistance m\u00e9dicale"
+           }, 
+           {
+            "name": "Allocations familiales"
+           }, 
+           {
+            "name": "Autres oeuvres sociales internes"
+           }
+          ], 
+          "name": "PERSONNEL, OEUVRES SOCIALES INTERNES"
+         }, 
+         {
+          "name": "PERSONNEL, R\u00c9MUN\u00c9RATIONS DUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel, acomptes"
+           }, 
+           {
+            "name": "Personnel, avances"
+           }, 
+           {
+            "name": "Frais avanc\u00e9s et fournitures au personnel"
+           }
+          ], 
+          "name": "PERSONNEL, AVANCES ET ACOMPTES"
+         }, 
+         {
+          "name": "PERSONNEL, PARTICIPATION AUX B\u00c9N\u00c9FICES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel, saisies-arr\u00eats"
+           }, 
+           {
+            "name": "Personnel, avis \u00e0 tiers d\u00e9tenteur"
+           }, 
+           {
+            "name": "Personnel, oppositions"
+           }
+          ], 
+          "name": "PERSONNEL, OPPOSITIONS, SAISIES-ARR\u00caTS"
+         }
+        ], 
+        "name": "PERSONNEL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances litigieuses"
+           }, 
+           {
+            "name": "Cr\u00e9ances douteuses"
+           }
+          ], 
+          "name": "CR\u00c9ANCES CLIENTS LITIGIEUSES OU DOUTEUSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances en compte"
+           }, 
+           {
+            "name": "Effets \u00e0 recevoir"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR CESSIONS D'IMMOBILISATIONS"
+         }, 
+         {
+          "name": "Clients et comptes rattach\u00e9s "
+         }, 
+         {
+          "name": "Efecte de primit de la clienti"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - Groupe"
+           }, 
+           {
+            "name": "Clients, \u00c9tat et Collectivit\u00e9s publiques"
+           }, 
+           {
+            "name": "Clients"
+           }, 
+           {
+            "name": "Clients, d\u00e9gr\u00e8vement de Taxes sur la Valeur Ajout\u00e9e (T.V.A.)"
+           }, 
+           {
+            "name": "Clients, organismes internationaux"
+           }, 
+           {
+            "name": "Clients - Ventes de biens ou de prestations de services"
+           }, 
+           {
+            "name": "Clienti"
+           }, 
+           {
+            "name": "Client, retenues de garantie"
+           }
+          ], 
+          "name": "CLIENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients, factures \u00e0 \u00e9tablir"
+           }, 
+           {
+            "name": "Clients - Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Clients, int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "CLIENTS, PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "CLIENTS, \u00c9FFETS ESCOMPT\u00c9S NON \u00c9CHUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat et Collectivit\u00e9s publiques, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Organismes Internationaux, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Clients - Groupe, Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "Clients, Effets \u00e0 recevoir"
+           }
+          ], 
+          "name": "CLIENTS, \u00c9FFETS \u00c0 RECEVOIR EN PORTEFEUILLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - Groupe, avances et acomptes re\u00e7us"
+           }, 
+           {
+            "name": "Clients, avances et acomptes re\u00e7us"
+           }, 
+           {
+            "name": "Clients - Autres avoirs ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Clients - Dettes pour emballages et mat\u00e9riels consign\u00e9s ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Clients, dettes pour emballages et mat\u00e9riels consign\u00e9s"
+           }, 
+           {
+            "name": "Rabais, Remises, Ristournes et autres avoirs \u00e0 accorder"
+           }
+          ], 
+          "name": "CLIENTS CR\u00c9DITEURS"
+         }
+        ], 
+        "name": "CLIENTS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES FOURNISSEURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres comptes d\u00e9biteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s, comptes courants"
+           }, 
+           {
+            "name": "Associ\u00e9s, op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Groupe, comptes courants"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions de valeurs mobili\u00e8res de placement"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ASSOCI\u00c9S ET GROUPE"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES D\u00c9BITEURS DIVERS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur op\u00e9rations H.A.O."
+           }, 
+           {
+            "name": "Sur op\u00e9rations d'exploitation"
+           }
+          ], 
+          "name": "RISQUES PROVISIONN\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances sur cessions d'immobilisations"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions de titres de placement"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances H.A.O."
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES DE CR\u00c9ANCES H.A.O."
+         }, 
+         {
+          "children": [
+           {
+            "name": "Op\u00e9rations faites en commun et en GIE", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Comptes du groupe", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Comptes courants des associ\u00e9s", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ORGANISMES INTERNATIONAUX"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES \u00c9TAT ET COLLECTIVIT\u00c9S PUBLIQUES"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES ORGANISMES SOCIAUX"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances douteuses"
+           }, 
+           {
+            "name": "Cr\u00e9ances litigieuses"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES CLIENTS"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS ET RISQUES PROVISIONN\u00c9S (TIERS)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "DETTES SUR ACQUISITION DE TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "Quotas d'\u00e9mission allou\u00e9s par l'\u00c9tat"
+         }, 
+         {
+          "name": "AUTRES DETTES HORS ACTIVITES ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Produits"
+           }
+          ], 
+          "name": "AUTRES CR\u00c9ANCES HORS ACTIVIT\u00c9S ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "name": "CR\u00c9ANCES SUR CESSIONS DE TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "Produits constat\u00e9s d'avance", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Factures non parvenues"
+           }, 
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Immobilisations corporelles"
+           }, 
+           {
+            "name": "Immobilisations incorporelles"
+           }
+          ], 
+          "name": "FOURNISSEURS D'INVESTISSEMENTS"
+         }, 
+         {
+          "name": "FOURNISSEURS D'INVESTISSEMENTS, EFFETS \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Effets \u00e0 recevoir"
+           }, 
+           {
+            "name": "En compte"
+           }, 
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Factures \u00e0 \u00e9tablir"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR CESSIONS D'IMMOBILISATIONS"
+         }
+        ], 
+        "name": "CR\u00c9ANCES ET DETTES HORS ACTIVIT\u00c9S ORDINAIRES (HAO)"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Alte sume primite cu caracter de subventii pentru investitii"
+           }, 
+           {
+            "name": "Plusuri de inventar de natura imobilizarilor"
+           }, 
+           {
+            "name": "Subventii guvernamentale pentru investitii"
+           }, 
+           {
+            "name": "Donatii pentru investitii"
+           }, 
+           {
+            "name": "Imprumuturi nerambursabile cu caracter de subventii pentru investitii"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR TRAVAUX NON ENCORE FACTURABLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits"
+           }, 
+           {
+            "name": "Charges"
+           }
+          ], 
+          "name": "R\u00c9PARTITION P\u00c9RIODIQUE DES CHARGES ET DES PRODUITS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des dettes", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Augmentation des cr\u00e9ances", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PRODUITS CONSTAT\u00c9S D'AVANCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }, 
+           {
+            "name": "Diminution des cr\u00e9ances"
+           }, 
+           {
+            "name": "Augmentation des dettes"
+           }
+          ], 
+          "name": "CHARGES CONSTAT\u00c9ES D'AVANCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9biteurs divers"
+           }, 
+           {
+            "name": "Cr\u00e9diteurs divers"
+           }
+          ], 
+          "name": "COMPTES D'ATTENTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances circulantes"
+           }, 
+           {
+            "name": "Diminution des dettes circulantes"
+           }
+          ], 
+          "name": "Ecarts de conversion - passif (El\u00e9ments circulants)"
+         }, 
+         {
+          "name": "Decontari din operatiuni in curs de clarificare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres de participation"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Titres de placement"
+           }
+          ], 
+          "name": "VERSEMENTS RESTANT \u00c0 EFFECTUER SUR TITRES NON LIB\u00c9R\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des cr\u00e9ances"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }, 
+           {
+            "name": "Augmentation des dettes"
+           }
+          ], 
+          "name": "\u00c9CARTS DE CONVERSION - ACTIF"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances"
+           }, 
+           {
+            "name": "Diminution des dettes"
+           }, 
+           {
+            "name": "Diff\u00e9rences compens\u00e9es par couverture de change"
+           }
+          ], 
+          "name": "\u00c9CARTS DE CONVERSION - PASSIF"
+         }
+        ], 
+        "name": "D\u00c9BITEURS ET CR\u00c9DITEURS DIVERS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Charges \u00e0 payer"
+           }, 
+           {
+            "name": "Dettes sur acquisitions de titres et valeurs de placement"
+           }, 
+           {
+            "name": "Divers cr\u00e9anciers"
+           }, 
+           {
+            "name": "Obligations, coupons \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Obligations \u00e9chues \u00e0\u00a0 rembourser"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Alte datorii fata de bugetul statului"
+           }, 
+           {
+            "name": "Alte creante privind bugetul statului"
+           }
+          ], 
+          "name": "\u00c9TAT, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat, fonds r\u00e9glement\u00e9 provisionn\u00e9"
+           }, 
+           {
+            "name": "\u00c9tat, avances et acomptes vers\u00e9s sur imp\u00f4ts"
+           }, 
+           {
+            "name": "\u00c9tat, fonds de dotation \u00e0 recevoir"
+           }, 
+           {
+            "name": "\u00c9tat, obligations cautionn\u00e9es"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'\u00e9quilibre \u00e0 recevoir"
+           }, 
+           {
+            "name": "Comptes transitoires ou d'attente - cr\u00e9diteurs"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'\u00e9quipement \u00e0 recevoir"
+           }, 
+           {
+            "name": "\u00c9tat, subventions d'exploitation \u00e0 recevoir"
+           }
+          ], 
+          "name": "\u00c9TAT, CR\u00c9ANCES ET DETTES DIVERSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs - retenues de garantie"
+           }, 
+           {
+            "name": "Impozitul pe venit"
+           }, 
+           {
+            "name": "Avances sur subventions"
+           }, 
+           {
+            "name": "Fournisseurs - effets \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Impozitul pe profit"
+           }, 
+           {
+            "name": "Fournisseurs - factures non parvenues"
+           }
+          ], 
+          "name": "\u00c9TAT, IMP\u00d4T SUR LES B\u00c9N\u00c9FICES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4ts et taxes recouvrables sur des obligataires"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes d'Etat"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes pour les collectivit\u00e9s publiques"
+           }, 
+           {
+            "name": "Autres imp\u00f4ts et taxes"
+           }, 
+           {
+            "name": "TVA colectata"
+           }, 
+           {
+            "name": "Droits de douane"
+           }, 
+           {
+            "name": "Clients - dettes pour emballages et mat\u00e9riel consign\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes recouvrables sur des associ\u00e9s"
+           }
+          ], 
+          "name": "\u00c9TAT, AUTRES IMP\u00d4TS ET TAXES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tat, cr\u00e9dit de T.V.A. \u00e0 reporter"
+           }, 
+           {
+            "name": "Autres organismes sociaux"
+           }, 
+           {
+            "name": "Mutuelles"
+           }, 
+           {
+            "name": "Charges sociales \u00e0\u00a0 payer"
+           }, 
+           {
+            "children": [
+             {
+              "name": "ALLOCATION FAMILIALES"
+             }
+            ], 
+            "name": "\u00c9tat, T.V.A. due"
+           }, 
+           {
+            "name": "Caisses de retraite"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. DUE OU CR\u00c9DIT DE T.V.A."
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Etat, TVA factur\u00e9e 10%"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA \u00e0 d\u00e9caisser", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 7%"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 20%"
+             }, 
+             {
+              "name": "Etat, TVA factur\u00e9e 14%"
+             }
+            ], 
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur factures non parvenues"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "TVA collect\u00e9e 5,5%", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "TVA collect\u00e9e 19,6%", 
+                "root_type": "Liability"
+               }, 
+               {
+                "name": "TVA collect\u00e9e (autre taux)", 
+                "root_type": "Liability"
+               }
+              ], 
+              "name": "TVA collect\u00e9e"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Etat, imp\u00f4ts et taxes \u00e0\u00a0 payer"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Taxes sur le chiffre d'affaires sur factures non parvenues", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Remboursement de taxes sur le chiffre d'affaires demand\u00e9", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Acomptes - R\u00e9gime simplifi\u00e9 d'imposition", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Taxes sur le chiffre d'affaires sur factures \u00e0 \u00e9tablir", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA r\u00e9cup\u00e9r\u00e9e d'avance", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Acomptes - R\u00e9gime du forfait", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Alte sume primite cu caracter de subventii"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur immobilisations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "TVA transf\u00e9r\u00e9e par d'autres entreprises", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA sur immobilisations", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA sur autres biens et services", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Taxes assimil\u00e9es \u00e0 la TVA", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "TVA d\u00e9ductible intracommunautaire", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Cr\u00e9dit de TVA \u00e0 reporter", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "T.V.A. transf\u00e9r\u00e9e par d'autres entreprises"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur services ext\u00e9rieurs et autres charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "TVA due intracommunautaire 5,5%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA due intracommunautaire (autre taux)", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "TVA due intracommunautaire 19,6%", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat, IR"
+             }, 
+             {
+              "name": "Etat, taxe urbaine et taxe d'\u00e9dilit\u00e9"
+             }, 
+             {
+              "name": "Etat, Taxe professionnelle (ex patente)"
+             }
+            ], 
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur achats"
+           }, 
+           {
+            "name": "T.V.A. r\u00e9cup\u00e9rable sur transport"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. R\u00c9CUP\u00c9RABLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Comptes courants des associ\u00e9s cr\u00e9diteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s - versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "name": "Associ\u00e9s - capital \u00e0\u00a0 rembourser"
+           }, 
+           {
+            "name": "Associ\u00e9s - dividendes \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Associ\u00e9s - op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Autres comptes d'associ\u00e9s - cr\u00e9diteurs"
+           }
+          ], 
+          "name": "\u00c9TAT, AUTRES TAXES SUR LE CHIFFRE D'AFFAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imp\u00f4t G\u00e9n\u00e9ral sur le revenu"
+           }, 
+           {
+            "name": "Imp\u00f4ts sur salaires"
+           }, 
+           {
+            "name": "Contribution nationale de solidarit\u00e9"
+           }, 
+           {
+            "name": "Contribution nationale"
+           }, 
+           {
+            "name": "Autres imp\u00f4ts et contributions"
+           }
+          ], 
+          "name": "\u00c9TAT, IMP\u00d4TS RETENUS \u00c0 LA SOURCE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges du personnel \u00e0\u00a0 payer"
+           }, 
+           {
+            "name": "Personnel - autres cr\u00e9diteurs"
+           }, 
+           {
+            "name": "Oppositions sur salaires"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur ventes"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur prestations de services"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur travaux"
+           }
+          ], 
+          "name": "\u00c9TAT, T.V.A. FACTUR\u00c9E"
+         }
+        ], 
+        "name": "\u00c9TAT ET COLLECTIVIT\u00c9S PUBLIQUES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournisseurs - Achats d'immobilisations"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisations - Retenues de garantie"
+           }
+          ], 
+          "name": "Furnizori de imobilizari"
+         }, 
+         {
+          "name": "Efecte de platit pentru imobilizari"
+         }, 
+         {
+          "name": "Fournisseurs et comptes rattach\u00e9s "
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs"
+           }, 
+           {
+            "name": "Fournisseurs Groupe"
+           }, 
+           {
+            "name": "Fournisseurs - Achats de biens et prestations de services"
+           }, 
+           {
+            "name": "Fournisseur, retenues de garantie"
+           }, 
+           {
+            "name": "Fournisseurs sous-traitants"
+           }
+          ], 
+          "name": "FOURNISSEURS, DETTES EN COMPTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs sous-traitants, Effets \u00e0 payer"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe, Effets \u00e0 payer"
+           }, 
+           {
+            "name": "Fournisseurs, Effets \u00e0 payer"
+           }
+          ], 
+          "name": "FOURNISSEURS, EFFETS \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs sous-traitants"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe"
+           }, 
+           {
+            "name": "Fournisseurs - Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Fournisseurs"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisations "
+           }, 
+           {
+            "name": "Fournisseurs, int\u00e9r\u00eats courus"
+           }
+          ], 
+          "name": "FOURNISSEURS, FACTURES NON PARVENUES"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Fournisseurs d'exploitation", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Fournisseurs d'immobilisations", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Fournisseurs - Autres avoirs"
+           }, 
+           {
+            "name": "Fournisseurs cr\u00e9ances pour emballages et mat\u00e9riels \u00e0 rendre"
+           }, 
+           {
+            "name": "Fournisseurs avances et acomptes vers\u00e9s"
+           }, 
+           {
+            "name": "Rabais, Remises, Ristournes et autres avoirs \u00e0 obtenir"
+           }, 
+           {
+            "name": "Fournisseurs - Cr\u00e9ances pour emballages et mat\u00e9riel \u00e0 rendre", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournisseurs sous-traitants avances et acomptes vers\u00e9s"
+           }, 
+           {
+            "name": "Fournisseurs - Groupe avances et acomptes vers\u00e9s"
+           }
+          ], 
+          "name": "FOURNISSEURS D\u00c9BITEURS"
+         }, 
+         {
+          "name": "Efecte de platit"
+         }, 
+         {
+          "name": "Furnizori"
+         }
+        ], 
+        "name": "FOURNISSEURS ET COMPTES RATTACH\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes sur acquisitions de valeurs mobili\u00e8res de placement", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "ASSOCI\u00c9S, DIVIDENDES \u00c0 PAYER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Charges \u00e0 payer", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Divers - Charges \u00e0 payer et produits \u00e0 recevoir"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Principal"
+           }
+          ], 
+          "name": "ASSOCI\u00c9S, COMPTES COURANTS"
+         }, 
+         {
+          "name": "ASSOCI\u00c9S, OP\u00c9RATIONS FAITES EN COMMUN"
+         }, 
+         {
+          "name": "GROUPE, COMPTES COURANTS"
+         }, 
+         {
+          "name": "ACTIONNAIRES, RESTANT D\u00db SUR CAPITAL APPEL\u00c9"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Associ\u00e9s, versements re\u00e7us sur augmentation de capital"
+           }, 
+           {
+            "name": "Actionnaires, capital souscrit appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Associ\u00e9s, capital appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Actionnaires d\u00e9faillants"
+           }, 
+           {
+            "name": "Associ\u00e9s, autres apports"
+           }, 
+           {
+            "name": "Associ\u00e9s, versements anticip\u00e9s"
+           }, 
+           {
+            "name": "Associ\u00e9s apports en nature"
+           }, 
+           {
+            "name": "Associ\u00e9s apports en num\u00e9raire"
+           }, 
+           {
+            "name": "Associ\u00e9s, capital \u00e0 rembourser"
+           }
+          ], 
+          "name": "ASSOCI\u00c9S, OP\u00c9RATIONS SUR LE CAPITAL"
+         }
+        ], 
+        "name": "ASSOCI\u00c9S ET GROUPE"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres charges \u00e0 payer"
+           }, 
+           {
+            "name": "Produits \u00e0 recevoir"
+           }, 
+           {
+            "name": "Charges sociales sur cong\u00e9s \u00e0 payer"
+           }, 
+           {
+            "name": "Charges sociales sur gratifications \u00e0 payer"
+           }
+          ], 
+          "name": "ORGANISMES SOCIAUX, CHARGES \u00c0 PAYER ET PRODUITS \u00c0 RECEVOIR"
+         }, 
+         {
+          "name": "CAISSES DE RETRAITE COMPL\u00c9MENTAIRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Accidents de travail"
+           }, 
+           {
+            "name": "Autres cotisations sociales"
+           }, 
+           {
+            "name": "Contributia angajatorilor la fondul de asigurare pentru accidente de munca si boli profesionale"
+           }, 
+           {
+            "name": "Caisse de retraite obligatoire"
+           }, 
+           {
+            "name": "Contributia angajatorilor la fondul pentru concedii si indemnizatii"
+           }, 
+           {
+            "name": "Caisse de retraite facultative"
+           }, 
+           {
+            "name": "Prestations familiales"
+           }
+          ], 
+          "name": "S\u00c9CURIT\u00c9 SOCIALE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T.V.A. sur factures \u00e0 \u00e9tablir"
+           }, 
+           {
+            "name": "T.V.A. factur\u00e9e sur production livr\u00e9e \u00e0 soi-m\u00eame"
+           }, 
+           {
+            "name": "Mutuelle"
+           }
+          ], 
+          "name": "AUTRES ORGANISMES SOCIAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contributia unitatii la fondul de garantare pentru plata creantelor salariale"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de somaj"
+           }, 
+           {
+            "name": "Contributia personalului la fondul de somaj"
+           }
+          ], 
+          "name": "Ajutor de somaj"
+         }
+        ], 
+        "name": "ORGANISMES SOCIAUX"
+       }
+      ], 
+      "name": "Comptes de tiers"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mobilier", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cheptel", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mat\u00e9riel de transport", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau et mat\u00e9riel informatique ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales agencements am\u00e9nagements divers", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES DROITS ET VALEURS INCORPORELS"
+         }, 
+         {
+          "name": "MARQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de recherche et de d\u00e9veloppement"
+           }, 
+           {
+            "name": "Logiciels"
+           }, 
+           {
+            "name": "Autres droits et valeurs incorporels"
+           }
+          ], 
+          "name": "IMMOBILISATIONS INCORPORELLES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Agencements et am\u00e9nagements du mat\u00e9riel et outillage industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Outillage industriel", 
+            "root_type": "Asset"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur sol d'autrui", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur sol propre", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Installations complexes sp\u00e9cialis\u00e9es"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur sol propre", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur sol d'autrui", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique"
+           }, 
+           {
+            "name": "Mat\u00e9riel industriel", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "FONDS COMMERCIAL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mijloace de transport"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations non professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Autres ensembles immobiliers"
+             }, 
+             {
+              "name": "Ensembles immobiliers industriels (A, B, ...)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ensembles immobiliers administratifs et commerciaux (A, B, ...)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Echipamente tehnologice (masini, utilaje si instalatii de lucru)"
+           }, 
+           {
+            "name": "Primes de remboursement des obligations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Voies de fer", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Voies d'eau", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Barrages", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Pistes d'a\u00e9rodromes", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Voies de terre", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Ouvrages d'infrastructure"
+           }, 
+           {
+            "name": "Aparate si instalatii de masurare, control si reglare"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales agencements am\u00e9nagements des constructions (m\u00eame ventilation que celle du compte 2131)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Animale si plantatii"
+           }
+          ], 
+          "name": "LOGICIELS"
+         }, 
+         {
+          "name": "INVESTISSEMENTS DE CR\u00c9ATION"
+         }, 
+         {
+          "name": "DROIT AU BAIL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Autres charges \u00e0\u00a0 r\u00e9partir"
+           }, 
+           {
+            "name": "Frais d acquisition des immobilisations"
+           }
+          ], 
+          "name": "BREVETS, LICENCES, CONCESSIONS ET DROITS SIMILAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de publicit\u00e9"
+           }, 
+           {
+            "name": "Frais de prospection"
+           }, 
+           {
+            "name": "Terenuri"
+           }, 
+           {
+            "name": "Amenajari de terenuri"
+           }, 
+           {
+            "name": "Frais d'augmentation du capital"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations non professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }, 
+               {
+                "name": "Affect\u00e9s aux op\u00e9rations professionnelles (A, B, ...)", 
+                "root_type": "Asset"
+               }
+              ], 
+              "name": "Autres ensembles immobiliers"
+             }, 
+             {
+              "name": "Ensembles immobiliers administratifs et commerciaux (A, B, ...)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Ensembles immobiliers industriels (A, B, ...)", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Terrains b\u00e2tis"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Carri\u00e8res", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Frais sur op\u00e9rations de fusions, scissions et transformations"
+           }, 
+           {
+            "name": "Autres frais pr\u00e9liminaires"
+           }
+          ], 
+          "name": "FRAIS DE RECHERCHE ET DE D\u00c9VELOPPEMENT"
+         }
+        ], 
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Pistes d\u2019a\u00e9rodrome"
+           }, 
+           {
+            "name": "Barrages, Digues"
+           }, 
+           {
+            "name": "Voies de terre"
+           }, 
+           {
+            "name": "Voies d\u2019eau"
+           }, 
+           {
+            "name": "Autres"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Outillage"
+             }, 
+             {
+              "name": "Mat\u00e9riel"
+             }
+            ], 
+            "name": "Voies de fer"
+           }
+          ], 
+          "name": "OUVRAGES D\u2019INFRASTRUCTURE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Installations complexes sp\u00e9cialis\u00e9es sur sol propre"
+           }, 
+           {
+            "name": "Installations complexes sp\u00e9cialis\u00e9es sur sol d\u2019autrui"
+           }, 
+           {
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique sur sol d\u2019autrui"
+           }, 
+           {
+            "name": "Installations \u00e0 caract\u00e8re sp\u00e9cifique sur sol propre"
+           }
+          ], 
+          "name": "INSTALLATIONS TECHNIQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avances et acomptes vers\u00e9s sur commandes d'immobilisations corporelles"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours de mobilier, mat\u00e9riel de bureau et am\u00e9nagements divers"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours de mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours des installations techniques, mat\u00e9riel et outillage"
+           }, 
+           {
+            "name": "Autres immobilisations corporelles en cours"
+           }, 
+           {
+            "name": "Immobilisations corporelles en cours des terrains et constructions"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS ET INSTALLATIONS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres immobilisations corporelles"
+           }, 
+           {
+            "name": "Terrains", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Constructions", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Installations techniques mat\u00e9riel et outillage industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres immobilisations corporelles", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES INSTALLATIONS ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immeubles de rapport"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "B\u00e2timents affect\u00e9s au logement du personnel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres b\u00e2timents"
+             }, 
+             {
+              "name": "B\u00e2timents industriels (A,B,,,)"
+             }, 
+             {
+              "name": "B\u00e2timents Administratifs et commerciaux"
+             }
+            ], 
+            "name": "B\u00e2timents industriels"
+           }, 
+           {
+            "name": "B\u00e2timents agricoles"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements des constructions"
+           }, 
+           {
+            "name": "Autres constructions"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES, ADMINISTRATIFS ET COMMERCIAUX SUR SOL D\u2019AUTRUI"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres terrains"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements de terrains"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "B\u00e2timents agricoles"
+           }, 
+           {
+            "name": "B\u00e2timents industriels"
+           }, 
+           {
+            "name": "Immeubles de rapport"
+           }, 
+           {
+            "name": "B\u00e2timents affect\u00e9s au logement du personnel"
+           }
+          ], 
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES, ADMINISTRATIFS ET COMMERCIAUX SUR SOL PROPRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Agencements, installations et am\u00e9nagements divers (biens n'appartenant pas \u00e0\u00a0 l'entreprise)"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau"
+           }, 
+           {
+            "name": "Installations g\u00e9n\u00e9rales"
+           }, 
+           {
+            "name": "Mat\u00e9riel informatique"
+           }, 
+           {
+            "name": "Autres"
+           }
+          ], 
+          "name": "AMENAGEMENTS DE BUREAUX"
+         }, 
+         {
+          "name": "B\u00c2TIMENTS INDUSTRIELS, AGRICOLES ET COMMERCIAUX MIS EN CONCESSION"
+         }
+        ], 
+        "name": "B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS CORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres divers"
+           }, 
+           {
+            "name": "Actions"
+           }
+          ], 
+          "name": "Autres titres immobilis\u00e9s"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Titres de participation"
+           }
+          ], 
+          "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS INCORPORELLES"
+         }
+        ], 
+        "name": "AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (groupe)"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des soci\u00e9t\u00e9s en participation"
+           }, 
+           {
+            "name": "Avances \u00e0 des Groupements d'int\u00e9r\u00eat \u00e9conomique (G.I.E.)"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (hors groupe)"
+           }
+          ], 
+          "name": "CR\u00c9ANCES RATTACH\u00c9ES \u00c0 DES PARTICIPATIONS ET AVANCES \u00c0 DES G.I.E."
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00eats au personnel"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur titres immobilis\u00e9s (droits de cr\u00e9ance)", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur d\u00e9p\u00f4ts et cautionnements", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur pr\u00eats", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Sur cr\u00e9ances diverses", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Immobilisations financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur l'Etat"
+           }, 
+           {
+            "name": "Pr\u00eats et cr\u00e9ances non commerciales"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9p\u00f4ts pour le gaz"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour l\u2019\u00e9lectricit\u00e9"
+           }, 
+           {
+            "name": "Cautionnements sur autres op\u00e9rations"
+           }, 
+           {
+            "name": "Cautionnements sur march\u00e9s publics"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour le t\u00e9l\u00e9phone, le t\u00e9lex, la t\u00e9l\u00e9copie"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour l\u2019eau"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts pour loyers d\u2019avance"
+           }, 
+           {
+            "name": "Autres d\u00e9p\u00f4ts et cautionnements"
+           }
+          ], 
+          "name": "D\u00c9P\u00d4TS ET CAUTIONNEMENTS VERS\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Parts de fonds commun de placement (F.C.P.)"
+           }, 
+           {
+            "name": "Titres immobilis\u00e9s de l\u2019activit\u00e9 de portefeuille (T.I.A.P.)"
+           }, 
+           {
+            "name": "Titres participatifs"
+           }, 
+           {
+            "name": "Autres titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Certificats d\u2019investissement"
+           }
+          ], 
+          "name": "TITRES IMMOBILIS\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00eats aux associ\u00e9s"
+           }, 
+           {
+            "name": "Titres pr\u00eat\u00e9s"
+           }, 
+           {
+            "name": "Autres titres", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Pr\u00eats participatifs"
+           }, 
+           {
+            "name": "Diminution des cr\u00e9ances immobilis\u00e9es"
+           }
+          ], 
+          "name": "PR\u00caTS ET CR\u00c9ANCES NON COMMERCIALES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances divers hors groupe"
+           }, 
+           {
+            "name": "Or et m\u00e9taux pr\u00e9cieux ()"
+           }, 
+           {
+            "name": "Cr\u00e9ances diverses groupe"
+           }
+          ], 
+          "name": "IMMOBILISATIONS FINANCI\u00c8RES DIVERSES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Retenues de garantie"
+           }, 
+           {
+            "name": "Fonds r\u00e9glement\u00e9"
+           }, 
+           {
+            "name": "Autres"
+           }
+          ], 
+          "name": "CR\u00c9ANCES SUR L\u2019\u00c9TAT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Augmentation des dettes de financement"
+           }, 
+           {
+            "name": "Pr\u00eats immobiliers"
+           }, 
+           {
+            "name": "Pr\u00eats mobiliers et d\u2019installation"
+           }, 
+           {
+            "name": "Autres pr\u00eats (frais d\u2019\u00e9tudes\u2026)"
+           }
+          ], 
+          "name": "PR\u00caTS AU PERSONNEL"
+         }, 
+         {
+          "name": "Versements restant \u00e0 effectuer sur titres immobilis\u00e9s non lib\u00e9r\u00e9s", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "AUTRES IMMOBLISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PARTICIPATIONS DANS DES ORGANISMES PROFESSIONNELS"
+         }, 
+         {
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S CONF\u00c9RANT UNE INFLUENCE NOTABLE"
+         }, 
+         {
+          "name": "Titluri puse in echivalenta"
+         }, 
+         {
+          "name": "PARTS DANS DES GROUPEMENTS D\u2019INT\u00c9R\u00caT \u00c9CONOMIQUE (G.I.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte creante imobilizate"
+           }, 
+           {
+            "name": "Dobanda aferenta creantelor legate de interesele de participare"
+           }, 
+           {
+            "name": "Imprumuturi acordate pe termen lung"
+           }, 
+           {
+            "name": "Dobanda aferenta imprumuturilor acordate pe termen lung"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances rattach\u00e9es \u00e0 des participations ", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sume datorate de entitatile afiliate"
+           }, 
+           {
+            "name": "Dobanda aferenta sumelor datorate de entitatile afiliate"
+           }, 
+           {
+            "name": "Creante legate de interesele de participare"
+           }, 
+           {
+            "name": "Dob\u00e2nzi aferente altor creante imobilizate"
+           }
+          ], 
+          "name": "Creante imobilizate"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres titres", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S SOUS CONTR\u00d4LE EXCLUSIF"
+         }, 
+         {
+          "name": "TITRES DE PARTICIPATION DANS DES SOCI\u00c9T\u00c9S SOUS CONTR\u00d4LE CONJOINT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "AUTRES TITRES DE PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Varsaminte de efectuat pentru alte imobilizari financiare"
+           }, 
+           {
+            "name": "Varsaminte de efectuat privind actiunile detinute la entitatile afiliate"
+           }, 
+           {
+            "name": "Varsaminte de efectuat privind interesele de participare"
+           }
+          ], 
+          "name": "Varsaminte de efectuat pentru imobilizari financiare"
+         }
+        ], 
+        "name": "TITRES DE PARTICIPATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel d'emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et outillage industriel et commercial"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations animales et agricoles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel et mobilier"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation de mat\u00e9riel en cours"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DE MAT\u00c9RIEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances rattach\u00e9es \u00e0 des participations et avances \u00e0 des GIE"
+           }, 
+           {
+            "name": "Autres cr\u00e9ances immobilis\u00e9es (m\u00eame ventilation que celle du compte 276)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des pr\u00eats au personnel"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des pr\u00eats et cr\u00e9ances non commerciales"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des cr\u00e9ances sur l'Etat"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des d\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES AUTRES IMMOBILISATIONS FINANCI\u00c8RES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans des soci\u00e9t\u00e9s sous contr\u00f4le exclusif"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres titres de participation"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des participations dans des organismes professionnels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des parts dans des GIE"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0 des participations (m\u00eame ventilation que celle du compte 267)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans les soci\u00e9t\u00e9s sous contr\u00f4le conjoint"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres de participation dans les soci\u00e9t\u00e9s conf\u00e9rant une influence notable"
+           }, 
+           {
+            "name": "Ajustari pentru pierderea de valoare a sumelor datorate entitatilor afiliate"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES TITRES DE PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea terenurilor si amenajarilor de terenuri"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du droit au bail"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres droits et valeurs incorporels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des logiciels"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des marques"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations incorporelles en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des brevets, licences, concessions et droits similaires"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du fonds commercial"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des investissements de cr\u00e9ation"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES IMMOBILISATIONS INCORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea fondului comercial"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea altor imobilizari necorporale"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea concesiunilor, brevetelor, licentelor, marcilor comerciale, drepturilor si activelor similare"
+           }, 
+           {
+            "name": "Droit au bail", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea cheltuielilor de dezvoltare"
+           }
+          ], 
+          "name": "Ajustari pentru deprecierea imobilizarilor necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents et installations en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol propre"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations corporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des installations techniques"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des ouvrages d'infrastructures"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol d'autrui"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des b\u00e2timents industriels, agricoles et commerciaux mis en concession"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des am\u00e9nagements de bureaux"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres installations et agencements"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains de gisement"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains nus"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains b\u00e2tis"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres terrains"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains am\u00e9nag\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des travaux de mise en valeur des terrains"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des am\u00e9nagements de terrains en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des terrains mis en concession"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres titres immobilis\u00e9s"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des avances et acomptes vers\u00e9s sur immobilisations incorporelles"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des avances et acomptes vers\u00e9s sur immobilisations corporelles"
+           }
+          ], 
+          "name": "PROVISIONS POUR D\u00c9PR\u00c9CIATION DES AVANCES ET ACOMPTES VERS\u00c9S SUR IMMOBILISATIONS"
+         }
+        ], 
+        "name": "PROVISIONS POUR DEPRECIATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Obligations convertibles"
+           }, 
+           {
+            "name": "Autres emprunts obligataires"
+           }, 
+           {
+            "name": "Obligations ordinaires"
+           }
+          ], 
+          "name": "PRIMES DE REMBOURSEMENT DES OBLIGATIONS"
+         }, 
+         {
+          "name": "Alte imobilizari necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais d'\u00e9mission des emprunts"
+           }, 
+           {
+            "name": "Charges diff\u00e9r\u00e9es"
+           }, 
+           {
+            "name": "Frais d'acquisition d'immobilisations"
+           }, 
+           {
+            "name": "Charges \u00e0 \u00e9taler"
+           }
+          ], 
+          "name": "CHARGES \u00c0 R\u00c9PARTIR SUR PLUSIEURS EXERCICES"
+         }, 
+         {
+          "name": "Cheltuieli de dezvoltare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Frais de restructuration"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais de publicit\u00e9", 
+              "root_type": "Asset"
+             }, 
+             {
+              "name": "Frais de prospection", 
+              "root_type": "Asset"
+             }
+            ], 
+            "name": "Frais de prospection"
+           }, 
+           {
+            "name": "Frais de fonctionnement ant\u00e9rieurs au d\u00e9marrage"
+           }, 
+           {
+            "name": "Frais d'entr\u00e9e \u00e0 la Bourse"
+           }, 
+           {
+            "name": "Frais de constitution"
+           }, 
+           {
+            "name": "Frais de publicit\u00e9 et de lancement"
+           }, 
+           {
+            "name": "Frais divers d'\u00e9tablissement"
+           }, 
+           {
+            "name": "Frais de modification du capital (fusions, scissions, transformations)"
+           }
+          ], 
+          "name": "FRAIS D'\u00c9TABLISSEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fond comercial negativ"
+           }, 
+           {
+            "name": "Fond comercial pozitiv"
+           }
+          ], 
+          "name": "Fond comercial"
+         }, 
+         {
+          "name": "Concesiuni, brevete, licente, marci comerciale, drepturi si active similare"
+         }
+        ], 
+        "name": "CHARGES IMMOBILIS\u00c9ES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres terrains"
+           }, 
+           {
+            "name": "Terrains nus"
+           }, 
+           {
+            "name": "Terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Terrains de gisement"
+           }
+          ], 
+          "name": "AM\u00c9NAGEMENTS DE TERRAINS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres travaux"
+           }, 
+           {
+            "name": "Plantation d'arbres et d'arbustes"
+           }
+          ], 
+          "name": "TRAVAUX DE MISE EN VALEUR DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Carri\u00e8res"
+           }
+          ], 
+          "name": "TERRAINS DE GISEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Parkings"
+           }
+          ], 
+          "name": "TERRAINS AM\u00c9NAG\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains des logements affect\u00e9s au personnel"
+           }, 
+           {
+            "name": "Terrains des immeubles de rapport"
+           }, 
+           {
+            "name": "Autres terrains"
+           }
+          ], 
+          "name": "AUTRES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains \u00e0 b\u00e2tir"
+           }, 
+           {
+            "name": "Brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "name": "Autres terrains nus"
+           }
+          ], 
+          "name": "TERRAINS NUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fonds commercial"
+           }, 
+           {
+            "name": "pour b\u00e2timents industriels et agricoles"
+           }, 
+           {
+            "name": "pour b\u00e2timents administratifs et commerciaux"
+           }, 
+           {
+            "name": "pour b\u00e2timents affect\u00e9s aux autres op\u00e9rations professionnelles"
+           }, 
+           {
+            "name": "pour b\u00e2timents affect\u00e9s aux autres op\u00e9rations non professionnelles"
+           }, 
+           {
+            "name": "Autres terrains b\u00e2tis"
+           }
+          ], 
+          "name": "TERRAINS B\u00c2TIS"
+         }, 
+         {
+          "name": "TERRAINS MIS EN CONCESSION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Terrains d'exploitation foresti\u00e8re"
+           }, 
+           {
+            "name": "Immobilisation en recherche et d\u00e9veloppement"
+           }, 
+           {
+            "name": "Terrains d'exploitation agricole"
+           }, 
+           {
+            "name": "Autres terrains"
+           }
+          ], 
+          "name": "TERRAINS AGRICOLES ET FORESTIERS"
+         }
+        ], 
+        "name": "TERRAINS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "MAT\u00c9RIEL D\u2019EMBALLAGE R\u00c9CUP\u00c9RABLE ET IDENTIFIABLE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel industriel"
+           }, 
+           {
+            "name": "Outillage commercial"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Autres pr\u00eats"
+           }, 
+           {
+            "name": "Pr\u00eats aux associ\u00e9s"
+           }, 
+           {
+            "name": "Outillage industriel"
+           }, 
+           {
+            "name": "Mat\u00e9riel commercial"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET OUTILLAGE INDUSTRIEL ET COMMERCIAL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel informatique"
+           }, 
+           {
+            "name": "Mat\u00e9riel de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier des logements du personnel"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier des immeubles de rapport"
+           }, 
+           {
+            "name": "Mobilier de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel bureautique"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET MOBILIER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances financi\u00e8res diverses"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bons divers"
+             }, 
+             {
+              "name": "Bons d'\u00e9quipement"
+             }, 
+             {
+              "name": "Obligations"
+             }
+            ], 
+            "name": "Collections et oeuvres d\u2019art"
+           }, 
+           {
+            "name": "Cr\u00e9ances immobilis\u00e9es"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cautionnements"
+             }, 
+             {
+              "name": "D\u00e9p\u00f4ts"
+             }
+            ], 
+            "name": "D\u00e9p\u00f4ts et cautionnements vers\u00e9s"
+           }
+          ], 
+          "name": "AUTRES MAT\u00c9RIELS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Immobilisations animales et agricoles"
+           }, 
+           {
+            "name": "Mat\u00e9riel d\u2019emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Mat\u00e9riel et mobilier de bureau"
+           }, 
+           {
+            "name": "Mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Mat\u00e9riel et outillage industriel et commercial"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres"
+           }, 
+           {
+            "name": "Cheptel, animaux de trait"
+           }, 
+           {
+            "name": "Plantations agricoles"
+           }, 
+           {
+            "name": "Cheptel, animaux reproducteurs"
+           }, 
+           {
+            "name": "Animaux de garde"
+           }
+          ], 
+          "name": "IMMOBILISATIONS ANIMALES ET AGRICOLES"
+         }, 
+         {
+          "name": "AGENCEMENTS ET AM\u00c9NAGEMENTS DU MAT\u00c9RIEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel naval"
+           }, 
+           {
+            "name": "Mat\u00e9riel hippomobile"
+           }, 
+           {
+            "name": "Mat\u00e9riel automobile"
+           }, 
+           {
+            "name": "Mat\u00e9riel ferroviaire"
+           }, 
+           {
+            "name": "Mat\u00e9riel fluvial, lagunaire"
+           }, 
+           {
+            "name": "Mat\u00e9riel a\u00e9rien"
+           }, 
+           {
+            "name": "Autres (v\u00e9lo, mobylette, moto)"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL DE TRANSPORT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mat\u00e9riel agricole"
+           }, 
+           {
+            "name": "Outillage agricole"
+           }
+          ], 
+          "name": "MAT\u00c9RIEL ET OUTILLAGE AGRICOLE"
+         }
+        ], 
+        "name": "MAT\u00c9RIEL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Amortissements des autres droits et valeurs incorporels"
+           }, 
+           {
+            "name": "Amortissements des investissements de cr\u00e9ation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des frais pr\u00e9liminaires au d\u00e9marrage"
+             }, 
+             {
+              "name": "Amortissements des frais de prospection"
+             }, 
+             {
+              "name": "Amortissements des frais de publicit\u00e9"
+             }, 
+             {
+              "name": "Amortissements des frais sur op\u00e9rations de fusions, scissions, et transformations"
+             }, 
+             {
+              "name": "Amortissements des frais d'augmentation du capital"
+             }, 
+             {
+              "name": "Amortissements des frais de constitution"
+             }, 
+             {
+              "name": "Amortissements des autres frais pr\u00e9liminaires"
+             }
+            ], 
+            "name": "Amortissements des frais de recherche et de d\u00e9veloppement"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des frais d'acquisition des immobilisations"
+             }, 
+             {
+              "name": "Amortissements des frais d'\u00e9mission des emprunts"
+             }, 
+             {
+              "name": "Amortissements des autres charges \u00e0\u00a0 r\u00e9partir"
+             }
+            ], 
+            "name": "Amortissements des brevets, licences, concessions et droits similaires"
+           }, 
+           {
+            "name": "Amortissements du droit au bail"
+           }, 
+           {
+            "name": "Amortissements des logiciels"
+           }, 
+           {
+            "name": "Amortissements des marques"
+           }, 
+           {
+            "name": "Amortissements du fonds commercial"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES IMMOBILISATIONS INCORPORELLES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements des autres immobilisations incorporelles"
+           }, 
+           {
+            "name": "Amortissements des terrains de gisement"
+           }, 
+           {
+            "name": "Amortissements des terrains agricoles et forestiers"
+           }, 
+           {
+            "name": "Amortissements du fonds commercial"
+           }, 
+           {
+            "name": "Amortissements des brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "name": "Amortissements des travaux de mise en valeur des terrains"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES TERRAINS"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Amortissements des installations techniques"
+             }, 
+             {
+              "name": "Amortissements du mat\u00e9riel et outillage"
+             }, 
+             {
+              "name": "Amortissements des emballages r\u00e9cup\u00e9rables identifiables"
+             }, 
+             {
+              "name": "Amortissements des autres installations techniques, mat\u00e9riel et outillage"
+             }
+            ], 
+            "name": "Amortissements des ouvrages d'infrastructure"
+           }, 
+           {
+            "name": "Amortissements des b\u00e2timents industriels, agricoles et commerciaux mis en concession"
+           }, 
+           {
+            "name": "Amortissements des autres installations et agencements"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des b\u00e2timents"
+             }, 
+             {
+              "name": "Amortissements des constructions sur terrains d'autrui"
+             }, 
+             {
+              "name": "Amortissements des ouvrages d'infrastructure"
+             }, 
+             {
+              "name": "Amortissements des installations, agencements et am\u00e9nagements des constructions"
+             }, 
+             {
+              "name": "Amortissements des autres constructions"
+             }
+            ], 
+            "name": "Amortissements des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol d'autrui"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements des autres terrains"
+             }, 
+             {
+              "name": "Amortissements des terrains nus"
+             }, 
+             {
+              "name": "Amortissements des terrains am\u00e9nag\u00e9s"
+             }, 
+             {
+              "name": "Amortissements des terrains b\u00e2tis"
+             }, 
+             {
+              "name": "Amortissements des terrains de gisement"
+             }, 
+             {
+              "name": "Amortissements des agencements et am\u00e9nagements de terrains"
+             }
+            ], 
+            "name": "Amortissements des b\u00e2timents industriels, agricoles, administratifs et commerciaux sur sol propre"
+           }, 
+           {
+            "name": "Amortissements des installations techniques"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements du mat\u00e9riel informatique"
+             }, 
+             {
+              "name": "Amortissements des agencements, installations et am\u00e9nagements divers"
+             }, 
+             {
+              "name": "Amortissements du mobilier de bureau"
+             }, 
+             {
+              "name": "Amortissements du mat\u00e9riel de bureau"
+             }, 
+             {
+              "name": "Amortissements des autres mobilier, mat\u00e9riel de bureau et am\u00e9nagements divers"
+             }
+            ], 
+            "name": "Amortissements des am\u00e9nagements de bureaux"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DES B\u00c2TIMENTS, INSTALLATIONS TECHNIQUES ET AGENCEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizarea altor imobilizari necorporale"
+           }, 
+           {
+            "name": "Amortizarea concesiunilor, brevetelor, licentelor, marcilor comerciale, drepturilor si activelor similare"
+           }, 
+           {
+            "name": "Amortizarea cheltuielilor de dezvoltare"
+           }, 
+           {
+            "name": "Amortizarea cheltuielilor de constituire"
+           }, 
+           {
+            "name": "Amortizarea fondului comercial"
+           }
+          ], 
+          "name": "Amortizari privind amortizarile necorporale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortissements du mat\u00e9riel et outillage agricole"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel d'emballage r\u00e9cup\u00e9rable et identifiable"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel et outillage industriel et commercial"
+           }, 
+           {
+            "name": "Amortissements des agencements et am\u00e9nagements du mat\u00e9riel"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel de transport"
+           }, 
+           {
+            "name": "Amortissements du mat\u00e9riel et mobilier"
+           }, 
+           {
+            "name": "Amortissements des autres mat\u00e9riels"
+           }, 
+           {
+            "name": "Amortissements des immobilisations animales et agricoles"
+           }
+          ], 
+          "name": "AMORTISSEMENTS DU MAT\u00c9RIEL"
+         }
+        ], 
+        "name": "AMORTISSEMENTS"
+       }
+      ], 
+      "name": "Comptes d'immobilisations"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Augmentation des cr\u00e9ances immobilis\u00e9es"
+           }
+          ], 
+          "name": "Augmentation des cr\u00e9ances immobilis\u00e9es"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des dettes de financement"
+           }
+          ], 
+          "name": "EMPRUNTS \u00c9QUIVALENTS DE CR\u00c9DIT - BAIL IMMOBILIER"
+         }, 
+         {
+          "name": "EMPRUNTS \u00c9QUIVALENTS DE CR\u00c9DIT - BAIL MOBILIER"
+         }, 
+         {
+          "name": "Dettes rattach\u00e9es \u00e0 des participations (hors groupe)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur emprunts \u00e9quivalents d\u2019autres contrats"
+           }, 
+           {
+            "name": "sur emprunts \u00e9quivalents de cr\u00e9dit \u2013 bail mobilier"
+           }, 
+           {
+            "name": "sur emprunts \u00e9quivalents de cr\u00e9dit \u2013 bail immobilier"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Principal", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "EMPRUNTS \u00c9QUIVALENTS D\u2019AUTRES CONTRATS"
+         }
+        ], 
+        "name": "DETTES DE CR\u00c9DIT - BAIL ET CONTRATS ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9sultat de l'exercice (b\u00e9n\u00e9fice)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "REPORT \u00c0 NOUVEAU CR\u00c9DITEUR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Perte - Amortissements r\u00e9put\u00e9s diff\u00e9r\u00e9s"
+           }, 
+           {
+            "name": "Perte nette \u00e0 reporter"
+           }
+          ], 
+          "name": "REPORT \u00c0 NOUVEAU D\u00c9BITEUR"
+         }
+        ], 
+        "name": "REPORT \u00c0 NOUVEAU"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PROVISIONS POUR PERTES DE CHANGE"
+         }, 
+         {
+          "name": "PROVISIONS POUR LITIGES"
+         }, 
+         {
+          "name": "PROVISIONS POUR PERTES SUR MARCH\u00c9S \u00c0 ACH\u00c8VEMENT FUTUR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres provisions financi\u00e8res pour risques et charges"
+           }, 
+           {
+            "name": "Provisions de propre assureur"
+           }, 
+           {
+            "name": "Provisions pour renouvellement des immobilisations (entreprises concessionnaires)"
+           }, 
+           {
+            "name": "Provisions pour amendes et p\u00e9nalit\u00e9s"
+           }
+          ], 
+          "name": "AUTRES PROVISIONS FINANCI\u00c8RES POUR RISQUES ET CHARGES"
+         }, 
+         {
+          "name": "PROVISIONS POUR PENSIONS ET OBLIGATIONS SIMILAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour grosses r\u00e9parations"
+           }
+          ], 
+          "name": "PROVISIONS POUR CHARGES \u00c0 REPARTIR SUR PLUSIEURS EXERCICES"
+         }, 
+         {
+          "name": "PROVISIONS POUR IMP\u00d4TS"
+         }, 
+         {
+          "name": "PROVISIONS POUR GARANTIES DONN\u00c9ES AUX CLIENTS"
+         }
+        ], 
+        "name": "PROVISIONS FINANCIERES POUR RISQUES ET CHARGES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Hausse des prix", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Fluctuation des cours", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "Provisions r\u00e9glement\u00e9es relatives aux stocks"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour investissement (participation des salari\u00e9s)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Provisions reconstitution des gisements miniers et p\u00e9troliers", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "SUBVENTIONS D'\u00c9QUIPEMENT B"
+         }, 
+         {
+          "name": "Plus-values r\u00e9investies", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9p\u00f4ts et cautionnements re\u00e7ues"
+           }, 
+           {
+            "name": "Avances de l'Etat"
+           }, 
+           {
+            "name": "Dettes de financement diverses"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Avances re\u00e7ues et comptes courants bloqu\u00e9s"
+           }, 
+           {
+            "name": "Dettes rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "name": "Emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit"
+           }, 
+           {
+            "name": "Fournisseurs d'immobilisation"
+           }
+          ], 
+          "name": "AUTRES SUBVENTIONS D'INVESTISSEMENT"
+         }, 
+         {
+          "name": "Amortissements d\u00e9rogatoires", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Provision sp\u00e9ciale de r\u00e9\u00e9valuation", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Pierderi legate de emiterea, rascumpararea, vanzarea, cedarea cu titlu gratuit sau anularea instrumentelor de capitaluri proprii."
+         }, 
+         {
+          "name": "Provisions r\u00e9glement\u00e9es relatives aux autres \u00e9l\u00e9ments de l'actif", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres"
+           }, 
+           {
+            "name": "\u00c9tat"
+           }, 
+           {
+            "name": "Emprunts obligataires"
+           }, 
+           {
+            "name": "D\u00e9partements"
+           }, 
+           {
+            "name": "R\u00e9gions"
+           }, 
+           {
+            "name": "Entreprises publiques ou mixtes"
+           }, 
+           {
+            "name": "Organismes internationaux"
+           }, 
+           {
+            "name": "Entreprises et organismes priv\u00e9s"
+           }, 
+           {
+            "name": "Communes et collectivit\u00e9s publiques d\u00e9centralis\u00e9es"
+           }
+          ], 
+          "name": "SUBVENTIONS D'\u00c9QUIPEMENT A"
+         }
+        ], 
+        "name": "SUBVENTIONS D'INVESTISSEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PLUS-VALUES DE CESSION \u00c0 R\u00c9INVESTIR"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour remises en \u00e9tat", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AUTRES PROVISIONS ET FONDS R\u00c9GLEMENTES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Pr\u00e9l\u00e8vement pour le Budget"
+           }, 
+           {
+            "name": "Fonds National"
+           }
+          ], 
+          "name": "FONDS R\u00c9GLEMENT\u00c9S"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte provizioane"
+           }, 
+           {
+            "name": "Provizioane pentru pensii si obligatii similare"
+           }, 
+           {
+            "name": "Provizioane pentru litigii"
+           }, 
+           {
+            "name": "Provizioane pentru garantii acordate clientilor"
+           }, 
+           {
+            "name": "Provizioane pentru dezafectare imobilizari corporale si alte actiuni legate de acestea"
+           }, 
+           {
+            "name": "Provizioane pentru restructurare"
+           }, 
+           {
+            "name": "Provizioane pentru impozite"
+           }
+          ], 
+          "name": "AMORTISSEMENTS D\u00c9ROGATOIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Hausse de prix"
+           }, 
+           {
+            "name": "Fluctuation des cours"
+           }
+          ], 
+          "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES RELATIVES AUX STOCKS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour gros entretien ou grandes r\u00e9visions ", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "PROVISIONS POUR INVESTISSEMENT"
+         }, 
+         {
+          "name": "PROVISION SP\u00c9CIALE DE R\u00c9\u00c9VALUATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reconstitution des gisements miniers et p\u00e9troliers"
+           }, 
+           {
+            "name": "Autres provisions pour charges"
+           }, 
+           {
+            "name": "Provisions pour charges \u00e0\u00a0 r\u00e9partir sur plusieurs exercices"
+           }, 
+           {
+            "name": "Provisions pour pensions de retraite et obligations similaires"
+           }
+          ], 
+          "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES RELATIVES AUX IMMOBILISATIONS"
+         }
+        ], 
+        "name": "PROVISIONS R\u00c9GLEMENT\u00c9ES ET FONDS ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "COMPTES PERMANENTS NON BLOQU\u00c9S DES \u00c9TABLISSEMENTS ET SUCCURSALES"
+         }, 
+         {
+          "name": "INT\u00c9R\u00caTS COURUS SUR DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS"
+         }, 
+         {
+          "name": "COMPTES PERMANENTS BLOQU\u00c9S DES \u00c9TABLISSEMENTS ET SUCCURSALES"
+         }, 
+         {
+          "name": "DETTES LI\u00c9ES \u00c0 DES SOCI\u00c9T\u00c9S EN PARTICIPATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations (groupe)"
+           }, 
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations (hors groupe)"
+           }
+          ], 
+          "name": "DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON PRODUITS"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON CHARGES"
+         }, 
+         {
+          "name": "COMPTES DE LIAISON DES SOCI\u00c9T\u00c9S EN PARTICIPATION"
+         }
+        ], 
+        "name": "DETTES LI\u00c9ES \u00c0 DES PARTICIPATIONS ET COMPTES DE LIAISON DES ETABLISSEMENTS ET SOCI\u00c9T\u00c9S EN PARTICIPATION"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres dotations"
+           }, 
+           {
+            "name": "Dotation initiale"
+           }, 
+           {
+            "name": "Dotations compl\u00e9mentaires"
+           }
+          ], 
+          "name": "CAPITAL PAR DOTATION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actiuni proprii detinute pe termen lung"
+           }, 
+           {
+            "name": "Actiuni proprii detinute pe termen scurt"
+           }
+          ], 
+          "name": "ACTIONNAIRES, CAPITAL SOUSCRIT, NON APPEL\u00c9"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Interese care nu controleaza - alte capitaluri proprii"
+           }, 
+           {
+            "name": "Interese care nu controleaza - rezultatul exercitiului financiar"
+           }
+          ], 
+          "name": "Interese care nu controleaza"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres primes"
+           }, 
+           {
+            "name": "Primes de fusion"
+           }, 
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation (autres op\u00e9rations l\u00e9gales)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Primes d'\u00e9mission"
+           }, 
+           {
+            "name": "Primes de conversion"
+           }, 
+           {
+            "name": "Autres \u00e9carts de r\u00e9\u00e9valuation en France", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Primes d'apport"
+           }
+          ], 
+          "name": "PRIMES LI\u00c9ES AUX CAPITAUX PROPRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9mun\u00e9rations, imp\u00f4ts et autres charges personnelles"
+           }, 
+           {
+            "name": "Pr\u00e9l\u00e8vements d\u2019autoconsommation"
+           }, 
+           {
+            "name": "Bons de souscription d'actions", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres pr\u00e9l\u00e8vements"
+           }, 
+           {
+            "name": "Op\u00e9rations courantes"
+           }, 
+           {
+            "name": "Prime de conversie a obligatiunilor in actiuni"
+           }, 
+           {
+            "name": "Apports temporaires"
+           }
+          ], 
+          "name": "COMPTE DE L'EXPLOITANT"
+         }, 
+         {
+          "name": "Rezerve din conversie"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Patrimoniul regiei"
+           }, 
+           {
+            "name": "Capital souscrit, non appel\u00e9"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Capital amorti", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Capital non amorti", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Capital souscrit, appel\u00e9, vers\u00e9, non amorti"
+           }, 
+           {
+            "name": "Capital souscrit, appel\u00e9, vers\u00e9, amorti"
+           }, 
+           {
+            "name": "Patrimoniul public"
+           }, 
+           {
+            "name": "Capital souscrit, appel\u00e9, non vers\u00e9"
+           }, 
+           {
+            "name": "Capital souscrit soumis \u00e0 des conditions particuli\u00e8res"
+           }
+          ], 
+          "name": "CAPITAL SOCIAL"
+         }, 
+         {
+          "name": "CAPITAL PERSONNEL"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation libre"
+           }, 
+           {
+            "name": "Rezerve statutare sau contractuale"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00e9serves diverses", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serve de propre assureur", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Alte rezerve"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Plus-values nettes \u00e0 long terme", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serve l\u00e9gale proprement dite", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "\u00c9carts de r\u00e9\u00e9valuation l\u00e9gale"
+           }, 
+           {
+            "name": "Rezerve din diferente de curs valutar in relatie cu investitia neta intr-o entitate straina"
+           }, 
+           {
+            "name": "Rezerve reprezentand surplusul realizat din rezerve din reevaluare"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres r\u00e9serves r\u00e9glement\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Plus-values nettes \u00e0 long terme", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9serves cons\u00e9cutives \u00e0 l'octroi de subventions d'investissement", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Rezerve de valoare justa"
+           }
+          ], 
+          "name": "\u00c9CARTS DE R\u00c9\u00c9VALUATION"
+         }
+        ], 
+        "name": "CAPITAL"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Rezultatul reportat provenit din trecerea la aplicarea Reglementarilor contabile conforme cu Directiva a patra a Comunitatilor Economice Europene"
+           }, 
+           {
+            "name": "Rezultatul reportat provenit din corectarea erorilor contabile"
+           }, 
+           {
+            "name": "Rezultatul reportat provenit din adoptarea pentru prima data a IAS, mai pu\u00fein IAS 29"
+           }, 
+           {
+            "name": "Rezultatul reportat reprezentand profitul nerepartizat sau pierderea neacoperita"
+           }
+          ], 
+          "name": "Rezultatul reportat"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serve l\u00e9gale"
+           }
+          ], 
+          "name": "R\u00e9serve l\u00e9gale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Primes d'\u00e9mission"
+           }, 
+           {
+            "name": "Primes de fusion"
+           }, 
+           {
+            "name": "Primes d'apport"
+           }
+          ], 
+          "name": "R\u00c9SERVES STATUTAIRES OU CONTRACTUELLES"
+         }, 
+         {
+          "name": "Report \u00e0 nouveau (solde cr\u00e9diteur)", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actionnaires, capital souscrit-non appel\u00e9"
+           }, 
+           {
+            "name": "Capital social"
+           }, 
+           {
+            "name": "Fonds de dotation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Capital individuel"
+             }, 
+             {
+              "name": "Compte de l'exploitant"
+             }
+            ], 
+            "name": "Capital personnel"
+           }
+          ], 
+          "name": "R\u00c9SERVE L\u00c9GALE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves facultatives"
+           }, 
+           {
+            "name": "R\u00e9sultats nets en instance d'affectation (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "R\u00e9serves diverses"
+           }
+          ], 
+          "name": "AUTRES R\u00c9SERVES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9sultat net de l'exercice (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "R\u00e9sultat net de l'exercice (solde cr\u00e9diteur)"
+           }
+          ], 
+          "name": "R\u00e9sultat net de l'exercice"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves cons\u00e9cutives \u00e0 l'octroi de subventions d'investissement"
+           }, 
+           {
+            "name": "Autres r\u00e9serves r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "R\u00e9serves de plus-values nettes \u00e0 long terme"
+           }, 
+           {
+            "name": "\u00c9carts de r\u00e9\u00e9valuation"
+           }
+          ], 
+          "name": "R\u00c9SERVES R\u00c9GLEMENT\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9serves r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "R\u00e9serves statutaires ou contractuelles"
+           }, 
+           {
+            "name": "R\u00e9serves facultatives"
+           }
+          ], 
+          "name": "Autres r\u00e9serves"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Report \u00e0\u00a0 nouveau (solde cr\u00e9diteur)"
+           }, 
+           {
+            "name": "Report \u00e0\u00a0 nouveau (solde d\u00e9biteur)"
+           }
+          ], 
+          "name": "Report \u00e0\u00a0 nouveau"
+         }
+        ], 
+        "name": "R\u00c9SERVES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "VALEUR AJOUT\u00c9E (V.A.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres subventions d'investissement (m\u00eame ventilation que celle du compte 1391)", 
+            "root_type": "Liability"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises publiques", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Entreprises et organismes priv\u00e9s ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Etat", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "R\u00e9gions", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "D\u00e9partements", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Collectivit\u00e9s publiques", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Communes", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Subventions d'\u00e9quipement"
+           }
+          ], 
+          "name": "R\u00c9SULTAT NET : PERTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres provisions r\u00e9glement\u00e9es"
+           }, 
+           {
+            "name": "Provisions pour plus-values en instance d'imposition"
+           }, 
+           {
+            "name": "Provisions pour amortissements d\u00e9rogatoires"
+           }, 
+           {
+            "name": "Provisions pour investissements"
+           }, 
+           {
+            "name": "Provisions pour reconstitution des gisements"
+           }, 
+           {
+            "name": "Provisions pour acquisition et construction de logements"
+           }
+          ], 
+          "name": "R\u00c9SULTAT D'EXPLOITATION (R.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'investissement re\u00e7ues"
+           }, 
+           {
+            "name": "Subventions d'investissement inscrites au CPC"
+           }, 
+           {
+            "name": "Entreprises publiques", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Entreprises et organismes priv\u00e9s", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Communes", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Collectivit\u00e9s publiques", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "R\u00e9gions", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "D\u00e9partements", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "Autres", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "R\u00c9SULTAT NET : B\u00c9N\u00c9FICE"
+         }, 
+         {
+          "name": "R\u00c9SULTAT HORS ACTIVIT\u00c9S ORDINAIRES (R.H.A.O.)"
+         }, 
+         {
+          "name": "EXC\u00c9DENT BRUT D'EXPLOITATION (E.B.E.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9sultat en instance d'affectation : Perte"
+           }, 
+           {
+            "name": "R\u00e9sultat en instance d'affectation : B\u00e9n\u00e9fice"
+           }
+          ], 
+          "name": "R\u00c9SULTAT EN INSANCE D\u2019AFFECTATION"
+         }, 
+         {
+          "name": "R\u00c9SULTAT FINANCIER (R.F.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marge brute sur mati\u00e8res"
+           }, 
+           {
+            "name": "Marge brute sur marchandises"
+           }
+          ], 
+          "name": "MARGE BRUTE (M.B.)"
+         }, 
+         {
+          "name": "R\u00c9SULTAT DES ACTIVIT\u00c9S ORDINAIRES (R.A.O.)"
+         }
+        ], 
+        "name": "R\u00c9SULTAT NET DE L'EXERCICE"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Comptes de liaison des \u00e9tablissements"
+           }, 
+           {
+            "name": "Comptes de liaison du si\u00e8ge"
+           }
+          ], 
+          "name": "Comptes de liaison des \u00e9tablissements et succursales"
+         }, 
+         {
+          "name": "AVANCES RE\u00c7UES DE L'\u00c9TAT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Credite bancare pe termen lung nerambursate la scadenta"
+           }, 
+           {
+            "name": "Credite externe guvernamentale"
+           }, 
+           {
+            "name": "Credite bancare externe garantate de banci"
+           }, 
+           {
+            "name": "Credite bancare externe garantate de stat"
+           }, 
+           {
+            "name": "Credite bancare pe termen lung"
+           }, 
+           {
+            "name": "Credite de la trezoreria statului"
+           }, 
+           {
+            "name": "Credite bancare interne garantate de stat"
+           }
+          ], 
+          "name": "EMPRUNTS ET DETTES AUPR\u00c8S DES \u00c9TABLISSEMENTS DE CR\u00c9DIT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imprumuturi interne din emisiuni de obligatiuni garantate de stat"
+           }, 
+           {
+            "name": "Imprumuturi externe din emisiuni de obligatiuni garantate de banci"
+           }, 
+           {
+            "name": "Emprunts obligataires convertibles"
+           }, 
+           {
+            "name": "Autres emprunts obligataires"
+           }, 
+           {
+            "name": "Imprumuturi externe din emisiuni de obligatiuni garantate de stat"
+           }, 
+           {
+            "name": "Emprunts obligataires ordinaires"
+           }
+          ], 
+          "name": "EMPRUNTS OBLIGATAIRES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avances bloqu\u00e9es pour augmentation du capital"
+           }, 
+           {
+            "name": "Droits du conc\u00e9dant exigibles en nature"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par l'\u00c9tat"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par les organismes internationaux"
+           }, 
+           {
+            "name": "Avances conditionn\u00e9es par les autres organismes africains"
+           }, 
+           {
+            "name": "Emprunts participatifs", 
+            "root_type": "Liability"
+           }
+          ], 
+          "name": "AVANCES ASSORTIES DE CONDITIONS PARTICULI\u00c8RES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur autres emprunts et dettes"
+           }, 
+           {
+            "name": "sur avances re\u00e7ues et comptes courants bloqu\u00e9s"
+           }, 
+           {
+            "name": "sur d\u00e9p\u00f4ts et cautionnements re\u00e7us"
+           }, 
+           {
+            "name": "sur emprunts et dettes aupr\u00e8s des \u00e9tablissements de cr\u00e9dit"
+           }, 
+           {
+            "name": "sur avances re\u00e7ues de l'\u00c9tat"
+           }, 
+           {
+            "name": "sur avances assorties de conditions particuli\u00e8res"
+           }, 
+           {
+            "name": "sur emprunts obligataires"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cautionnements"
+           }, 
+           {
+            "name": "Cautionnements", 
+            "root_type": "Liability"
+           }, 
+           {
+            "name": "D\u00e9p\u00f4ts"
+           }
+          ], 
+          "name": "D\u00c9P\u00d4TS ET CAUTIONNEMENTS RECUS"
+         }, 
+         {
+          "name": "AVANCES RE\u00c7UES ET COMPTES COURANTS BLOQU\u00c9S"
+         }, 
+         {
+          "name": "Prime privind rambursarea obligatiunilor"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente altor imprumuturi si datorii asimilate"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Sur participation des salari\u00e9s aux r\u00e9sultats", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur d\u00e9p\u00f4ts et cautionnements re\u00e7us", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur autres emprunts et dettes assimil\u00e9es", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts et dettes assortis de conditions particuli\u00e8res", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur emprunts obligataires convertibles ", 
+              "root_type": "Liability"
+             }, 
+             {
+              "name": "Sur autres emprunts obligataires", 
+              "root_type": "Liability"
+             }
+            ], 
+            "name": "Int\u00e9r\u00eats courus"
+           }, 
+           {
+            "name": "Dettes cons\u00e9cutives \u00e0 des titres emprunt\u00e9s"
+           }, 
+           {
+            "name": "Emprunts participatifs"
+           }, 
+           {
+            "name": "Rentes viag\u00e8res capitalis\u00e9es"
+           }, 
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Dettes du conc\u00e9dant exigibles en nature"
+           }, 
+           {
+            "name": "Participation des travailleurs aux b\u00e9n\u00e9fices"
+           }
+          ], 
+          "name": "AUTRES EMPRUNTS ET DETTES"
+         }
+        ], 
+        "name": "EMPRUNTS ET DETTES ASSIMIL\u00c9ES"
+       }
+      ], 
+      "name": "Comptes de capitaux"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }, 
+           {
+            "name": "en devises"
+           }
+          ], 
+          "name": "CAISSE SUCCURSALE B"
+         }, 
+         {
+          "children": [
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }, 
+           {
+            "name": "en devises"
+           }
+          ], 
+          "name": "CAISSE SUCCURSALE A"
+         }, 
+         {
+          "children": [
+           {
+            "name": "en devises"
+           }, 
+           {
+            "name": "en unit\u00e9s mon\u00e9taires l\u00e9gales"
+           }
+          ], 
+          "name": "CAISSE SI\u00c8GE SOCIAL"
+         }
+        ], 
+        "name": "CAISSE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "BANQUES, CREDITS DE TRESORERIE, INTERETS COURUS"
+         }, 
+         {
+          "name": "ESCOMPTE DE CR\u00c9DITS ORDINAIRES"
+         }, 
+         {
+          "name": "ESCOMPTE DE CR\u00c9DITS DE CAMPAGNE"
+         }, 
+         {
+          "name": "CR\u00c9DITS DE TR\u00c9SORERIE"
+         }
+        ], 
+        "name": "BANQUES, CR\u00c9DITS DE TR\u00c9SORERIE ET D'ESCOMPTE"
+       }, 
+       {
+        "children": [
+         {
+          "name": "ACCR\u00c9DITIFS"
+         }, 
+         {
+          "name": "VIREMENTS DE FONDS"
+         }, 
+         {
+          "name": "R\u00c9GIES D'AVANCE"
+         }, 
+         {
+          "name": "AUTRES VIREMENTS INTERNES"
+         }
+        ], 
+        "name": "R\u00c9GIES D'AVANCES, ACCR\u00c9DITIFS ET VIREMENTS INTERNES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "RISQUES PROVISIONN\u00c9S \u00c0 CARACT\u00c8RE FINANCIER"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES BANQUES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Autres valeurs mobili\u00e8res de placement et cr\u00e9ances assimil\u00e9es (provisions)"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de propri\u00e9t\u00e9 "
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES TITRES DE PLACEMENT"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES TITRES ET VALEURS \u00c0 ENCAISSER"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a obligatiunilor emise si recuperate"
+         }, 
+         {
+          "name": "Autres charges financi\u00e8res des exercices ant\u00e9rieurs"
+         }, 
+         {
+          "name": "Charges nettes sur cession de titres et valeurs de placement"
+         }, 
+         {
+          "name": "Escomptes accord\u00e9s"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES \u00c9TABLISSEMENTS FINANCIERS ET ASSIMIL\u00c9S"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a obligatiunilor"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES COMPTES D\u2019INSTRUMENTS DE TR\u00c9SORERIE"
+         }, 
+         {
+          "name": "Ajustari pentru pierderea de valoare a altor invesitii pe termen scurt si creante asimilate"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS ET RISQUES PROVISIONN\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Alte titluri de plasament"
+           }, 
+           {
+            "name": "Dobanzi la obligatiuni si alte titluri de plasament"
+           }, 
+           {
+            "name": "Bons de souscription"
+           }
+          ], 
+          "name": "AUTRES VALEURS ASSIMIL\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Varsaminte de efctuat pentru alte investitii pe termen scurt"
+           }, 
+           {
+            "name": "Varsaminte de efctuat pentru actiunile detinute la institutiile afiliate"
+           }
+          ], 
+          "name": "Varsaminte de efctuat pentru investitiile pe termen scurt"
+         }, 
+         {
+          "name": "TITRES N\u00c9GOCIABLES HORS REGION"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bons de souscription d'actions"
+           }, 
+           {
+            "name": "Bons de souscription d'obligations"
+           }
+          ], 
+          "name": "BONS DE SOUSCRIPTION"
+         }, 
+         {
+          "name": "Bons du Tr\u00e9sor et bons de caisse \u00e0 court terme"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions"
+           }, 
+           {
+            "name": "Titres du Tr\u00e9sor et bons de caisse \u00e0 court terme"
+           }, 
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Titres non cot\u00e9s"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS COURUS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Bons de caisse \u00e0 court terme"
+           }, 
+           {
+            "name": "Titres du Tr\u00e9sor \u00e0 court terme"
+           }, 
+           {
+            "name": "Titres d'organismes financiers"
+           }
+          ], 
+          "name": "TITRES DU TR\u00c9SOR ET BONS DE CAISSE \u00c0 COURT TERME"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligations cot\u00e9es"
+           }, 
+           {
+            "name": "Obligations \u00e9mises par la soci\u00e9t\u00e9 et rachet\u00e9es par elle"
+           }, 
+           {
+            "name": "Obligations non cot\u00e9es"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de cr\u00e9ance"
+           }
+          ], 
+          "name": "OBLIGATIONS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Actions cot\u00e9es"
+           }, 
+           {
+            "name": "Actions propres"
+           }, 
+           {
+            "name": "Actions d\u00e9membr\u00e9es (certificats d'investissement ; droits de vote)"
+           }, 
+           {
+            "name": "Autres titres conf\u00e9rant un droit de propri\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Actions non cot\u00e9es"
+           }
+          ], 
+          "name": "ACTIONS"
+         }
+        ], 
+        "name": "TITRES DE PLACEMENT"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Sume in curs de decontare"
+           }, 
+           {
+            "name": "Conturi la banci in valuta"
+           }, 
+           {
+            "name": "Conturi la banci in lei"
+           }
+          ], 
+          "name": "Conturi curente la banci"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Billets de fonds"
+           }, 
+           {
+            "name": "Coupons \u00e9chus"
+           }, 
+           {
+            "name": "Ch\u00e8ques de voyage"
+           }, 
+           {
+            "name": "Warrants"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats \u00e9chus des obligations"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats courus \u00e0 recevoir"
+           }
+          ], 
+          "name": "AUTRES VALEURS \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "name": "EFFETS \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9gies d'avances et accr\u00e9ditifs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Caisse (succursale ou agence B)"
+             }, 
+             {
+              "name": "Caisse Centrale"
+             }, 
+             {
+              "name": "Caisse (succursale ou agence A)"
+             }
+            ], 
+            "name": "Caisses"
+           }
+          ], 
+          "name": "Caisses, r\u00e9gies d'avances et accr\u00e9ditifs"
+         }, 
+         {
+          "name": "Autres organismes financiers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Tr\u00e9sorerie G\u00e9n\u00e9rale"
+           }, 
+           {
+            "name": "Banques (solde d\u00e9biteur)"
+           }, 
+           {
+            "name": "Autres \u00e9tablissements financiers et assimil\u00e9s (soldes d\u00e9biteurs)"
+           }, 
+           {
+            "name": "Ch\u00e8ques postaux"
+           }
+          ], 
+          "name": "CH\u00c8QUES \u00c0 L'ENCAISSEMENT"
+         }, 
+         {
+          "name": "Banques"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi aferente creditelor pe termen scurt"
+           }, 
+           {
+            "name": "Credite externe garantate de stat"
+           }, 
+           {
+            "name": "Credite externe garantate de banci"
+           }, 
+           {
+            "name": "Credite de la trezoreria statului"
+           }, 
+           {
+            "name": "Credite interne garantate de stat"
+           }, 
+           {
+            "name": "Credite bancare pe termen scurt"
+           }, 
+           {
+            "name": "Credite bancare pe termen scurt nerambursate la scadenta"
+           }, 
+           {
+            "name": "Credite externe guvernamentale"
+           }
+          ], 
+          "name": "Credite bancare pe termen scurt"
+         }, 
+         {
+          "name": "CARTES DE CR\u00c9DIT \u00c0 ENCAISSER"
+         }, 
+         {
+          "name": "CH\u00c8QUES \u00c0 ENCAISSER"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres valeurs \u00e0\u00a0 encaisser"
+           }, 
+           {
+            "name": "Efecte remise spre scontare"
+           }, 
+           {
+            "name": "Virement de fonds"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ch\u00e8ques \u00e0\u00a0 l'encaissement"
+             }, 
+             {
+              "name": "Ch\u00e8ques en portefeuille"
+             }
+            ], 
+            "name": "Ch\u00e8ques \u00e0\u00a0 encaisser ou \u00e0\u00a0 l'encaissement"
+           }, 
+           {
+            "name": "Cecuri de incasat"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Effets \u00e9chus \u00e0\u00a0 encaisser"
+             }, 
+             {
+              "name": "Effets \u00e0\u00a0 l'encaissement"
+             }
+            ], 
+            "name": "Efecte de incasat"
+           }
+          ], 
+          "name": "EFFETS \u00c0 ENCAISSER"
+         }
+        ], 
+        "name": "VALEURS \u00c0 ENCAISSER"
+       }, 
+       {
+        "children": [
+         {
+          "name": "BANQUES AUTRES \u00c9TATS REGION"
+         }, 
+         {
+          "name": "BANQUES, INTERETS COURUS"
+         }, 
+         {
+          "name": "BANQUES HORS ZONE MONETAIRE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "BANQUE Y"
+           }, 
+           {
+            "name": "BANQUES X"
+           }
+          ], 
+          "name": "BANQUES LOCALES"
+         }, 
+         {
+          "name": "BANQUES AUTRES ETATS ZONE MONETAIRE"
+         }
+        ], 
+        "name": "BANQUES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Casa in lei"
+           }, 
+           {
+            "name": "Casa in valuta"
+           }
+          ], 
+          "name": "CH\u00c8QUES POSTAUX"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte valori"
+           }, 
+           {
+            "name": "Timbre fiscale si postale"
+           }, 
+           {
+            "name": "Tichete si bilete de calatorie"
+           }, 
+           {
+            "name": "Bilete de tratament si odihna"
+           }
+          ], 
+          "name": "TR\u00c9SOR"
+         }, 
+         {
+          "name": "SOCI\u00c9T\u00c9S DE GESTION ET D'INTERM\u00c9DIATION (S.G.I.)"
+         }, 
+         {
+          "name": "ETABLISSEMENTS FINANCIERS, INTERETS COURUS"
+         }, 
+         {
+          "name": "AUTRES ORGANISMES FINANCIERS"
+         }
+        ], 
+        "name": "\u00c9TABLISSEMENTS FINANCIERS ET ASSIMIL\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Acreditive in valuta"
+           }, 
+           {
+            "name": "Acreditive in lei"
+           }
+          ], 
+          "name": "OPTIONS DE TAUX D'INT\u00c9R\u00caT"
+         }, 
+         {
+          "name": "OPTIONS DE TAUX BOURSIERS"
+         }, 
+         {
+          "name": "AVOIRS D'OR ET AUTRES M\u00c9TAUX PR\u00c9CIEUX ()"
+         }, 
+         {
+          "name": "OPTIONS DE TAUX DE CHANGE"
+         }, 
+         {
+          "name": "INSTRUMENTS DE MARCH\u00c9S \u00c0 TERME"
+         }
+        ], 
+        "name": "INSTRUMENTS DE TR\u00c9SORERIE"
+       }
+      ], 
+      "name": "Comptes financiers"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "PRODUITS FINIS A"
+         }, 
+         {
+          "name": "PRODUITS FINIS B"
+         }, 
+         {
+          "name": "Diferente de pret la animale si pasari"
+         }
+        ], 
+        "name": "PRODUITS FINIS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits finis (ou groupe) A", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits finis (ou groupe) B", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Produits finis"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Obligations"
+           }, 
+           {
+            "name": "Autres titres et valeurs de placement similaires"
+           }, 
+           {
+            "name": "Actions, partie lib\u00e9r\u00e9e"
+           }, 
+           {
+            "name": "Actions, partie non lib\u00e9r\u00e9e"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Bons de caisse"
+             }, 
+             {
+              "name": "Bons de tr\u00e9sor"
+             }
+            ], 
+            "name": "Bons de caisse et bons de tr\u00e9sor"
+           }
+          ], 
+          "name": "Titres et valeurs de placement"
+         }, 
+         {
+          "name": "Produse aflate la terti"
+         }, 
+         {
+          "name": "Animale aflate la terti"
+         }, 
+         {
+          "name": "Marfuri aflate la terti"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tudes en cours E1"
+           }, 
+           {
+            "name": "\u00c9tudes en cours E2"
+           }
+          ], 
+          "name": "\u00c9TUDES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Prestations de services S1"
+           }, 
+           {
+            "name": "Prestations de services S2"
+           }
+          ], 
+          "name": "PRESTATIONS DE SERVICES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9chets", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Rebuts", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8res de r\u00e9cup\u00e9ration", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Ambalaje aflate la terti"
+         }
+        ], 
+        "name": "SERVICES EN COURS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits interm\u00e9diaires"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits en cours"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des marchandises"
+           }, 
+           {
+            "name": "Fournitures A, B, C, ..", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des produits finis"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des mati\u00e8res et fournitures"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE MARCHANDISES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea materialelor consumabile"
+           }, 
+           {
+            "name": "Emballages (m\u00eame ventilation que celle du compte 326)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea materialelor de natura obiectelor de inventar"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Travaux en cours (m\u00eame ventilation que celle du compte 335)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits en cours (m\u00eame ventilation que celle du compte 331)", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS D'AUTRES APPOVISIONNEMENTS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ajustari pentru deprecierea animalelor aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea marfurilor aflate la terti"
+           }, 
+           {
+            "name": "Produits finis (m\u00eame ventilation que celle du compte 355)", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor reziduale aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor finite aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea semifabricatelor aflate la terti"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea materiilor prime si materialelor aflate la terti"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea ambalajelor aflate la terti"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES SERVICES EN COURS"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE PRODUITS FINIS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marchandises (ou groupe) A", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Marchandises (ou groupe) B", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS DE PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS"
+         }, 
+         {
+          "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS EN COURS DE ROUTE, EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation du personnel - d\u00e9biteur"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor finite"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des clients et comptes rattach\u00e9s"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea semifabricatelor"
+           }, 
+           {
+            "name": "Ajustari pentru deprecierea produselor reziduale"
+           }, 
+           {
+            "name": "Provisions pour d\u00e9pr\u00e9ciation des autres d\u00e9biteurs"
+           }
+          ], 
+          "name": "D\u00c9PR\u00c9CIATIONS DES PRODUCTIONS EN COURS"
+         }
+        ], 
+        "name": "D\u00c9PR\u00c9CIATIONS DES STOCKS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Prestations de services S 2", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Etat - cr\u00e9dit de TVA (suivant d\u00e9claration)"
+           }, 
+           {
+            "children": [
+             {
+              "children": [
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 7%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 20%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 14%"
+               }, 
+               {
+                "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges 10%"
+               }
+              ], 
+              "name": "Etat - TVA r\u00e9cup\u00e9rable sur charges"
+             }, 
+             {
+              "name": "Etat - TVA r\u00e9cup\u00e9rable sur immobilisations"
+             }
+            ], 
+            "name": "Etat - TVA r\u00e9cup\u00e9rable"
+           }, 
+           {
+            "name": "Acomptes sur imp\u00f4ts sur les r\u00e9sultats"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Subventions d'\u00e9quilibre \u00e0\u00a0 recevoir"
+             }, 
+             {
+              "name": "Subventions d'exploitation \u00e0\u00a0 recevoir"
+             }, 
+             {
+              "name": "Subventions d'investissement \u00e0\u00a0 recevoir"
+             }
+            ], 
+            "name": "Subventions \u00e0\u00a0 recevoir"
+           }, 
+           {
+            "name": "Etat - autres comptes d\u00e9biteurs"
+           }
+          ], 
+          "name": "Produse finite"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits r\u00e9siduels B"
+           }, 
+           {
+            "name": "Produits r\u00e9siduels A"
+           }
+          ], 
+          "name": "PRODUITS R\u00c9SIDUELS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Clients - retenues de garantie"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Clients - factures \u00e0\u00a0 \u00e9tablir"
+             }, 
+             {
+              "name": "Cr\u00e9ances sur travaux non encore factur\u00e9s"
+             }
+            ], 
+            "name": "Clients - factures \u00e0\u00a0 \u00e9tablir et cr\u00e9ances sur travaux non encore factur\u00e9s"
+           }, 
+           {
+            "name": "Clients douteux ou litigieux"
+           }, 
+           {
+            "name": "Clients - effets \u00e0\u00a0 recevoir"
+           }, 
+           {
+            "name": "Travaux en cours T2"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Clients - cat\u00e9gorie A"
+             }, 
+             {
+              "name": "Clients - cat\u00e9gorie B"
+             }
+            ], 
+            "name": "Travaux en cours T1"
+           }, 
+           {
+            "name": "Autres clients et comptes rattach\u00e9s"
+           }
+          ], 
+          "name": "TRAVAUX EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus et non \u00e9chus \u00e0\u00a0 percevoir"
+           }, 
+           {
+            "name": "Charges constat\u00e9es d'avance"
+           }, 
+           {
+            "name": "Comptes transitoires ou d'attente - d\u00e9biteurs"
+           }, 
+           {
+            "name": "Comptes de r\u00e9partition p\u00e9riodique des charges"
+           }
+          ], 
+          "name": "Comptes de r\u00e9gularisation - actif"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres comptes d'associ\u00e9s d\u00e9biteurs"
+           }, 
+           {
+            "name": "Associ\u00e9s - comptes d'apport en soci\u00e9t\u00e9"
+           }, 
+           {
+            "name": "Actionnaires - capital souscrit et appel\u00e9 non vers\u00e9"
+           }, 
+           {
+            "name": "Comptes courants des associ\u00e9s d\u00e9biteurs"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es aux comptes d'associ\u00e9s"
+           }, 
+           {
+            "name": "Associ\u00e9s - op\u00e9rations faites en commun"
+           }
+          ], 
+          "name": "Produse reziduale"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires B"
+           }, 
+           {
+            "name": "Produits interm\u00e9diaires A"
+           }, 
+           {
+            "name": "Personnel - autres d\u00e9biteurs"
+           }
+          ], 
+          "name": "PRODUITS INTERM\u00c9DIAIRES EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits en cours P2"
+           }, 
+           {
+            "name": "Produits en cours P1"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes \u00e0\u00a0 obtenir - avoirs non encore re\u00e7us"
+           }, 
+           {
+            "name": "Fournisseurs - cr\u00e9ances pour emballages et mat\u00e9riel \u00e0\u00a0 rendre"
+           }, 
+           {
+            "name": "Autres fournisseurs d\u00e9biteurs"
+           }
+          ], 
+          "name": "PRODUITS EN COURS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances sur cessions d'immobilisations"
+           }, 
+           {
+            "name": "Cr\u00e9ances rattach\u00e9es aux autres d\u00e9biteurs"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur cessions d'\u00e9l\u00e9ments d'actif circulant"
+           }, 
+           {
+            "name": "Divers d\u00e9biteurs"
+           }
+          ], 
+          "name": "Diferente de pret la produse"
+         }
+        ], 
+        "name": "PRODUITS EN COURS"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produit en cours P 1", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produit en cours P 2", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES CONSOMMABLES"
+         }, 
+         {
+          "name": "FOURNITURES DE BUREAU"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages \u00e0 usage mixte"
+           }, 
+           {
+            "name": "Autres emballages"
+           }, 
+           {
+            "name": "Emballages perdus"
+           }, 
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables"
+           }
+          ], 
+          "name": "EMBALLAGES"
+         }, 
+         {
+          "name": "AUTRES MATI\u00c8RES"
+         }, 
+         {
+          "name": "FOURNITURES D'ATELIER ET D'USINE"
+         }, 
+         {
+          "name": "FOURNITURES DE MAGASIN"
+         }
+        ], 
+        "name": "AUTRES APPROVISIONNEMENTS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PRODUITS FINIS EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "AUTRES APPROVISIONNEMENTS EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES EN COURS DE ROUTE"
+         }, 
+         {
+          "name": "MARCHANDISES EN COURS DE ROUTE"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Stock en d\u00e9p\u00f4t"
+           }, 
+           {
+            "name": "Stock en consignation"
+           }
+          ], 
+          "name": "STOCK EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+         }, 
+         {
+          "name": "STOCK PROVENANT D'IMMOBILISATIONS MISES HORS SERVICE OU AU REBUT"
+         }
+        ], 
+        "name": "STOCKS EN COURS DE ROUTE, EN CONSIGNATION OU EN D\u00c9P\u00d4T"
+       }, 
+       {
+        "children": [
+         {
+          "name": "FOURNITURES (A,B)"
+         }, 
+         {
+          "name": "Marfuri in curs de aprovizionare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Emballages \u00e0 usage mixte", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Emballages perdus", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Animale in curs de aprovizionare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Mati\u00e8re (ou groupe) D", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Mati\u00e8re (ou groupe) C", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES A"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Combustibles", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de bureau", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures de magasin", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Fournitures d'atelier et d usine", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "MATI\u00c8RES B"
+         }, 
+         {
+          "name": "Ambalaje in curs de aprovizionare"
+         }
+        ], 
+        "name": "MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Marchandises A2"
+           }, 
+           {
+            "name": "Marchandises A1"
+           }, 
+           {
+            "name": "Marchandises en cours de route"
+           }, 
+           {
+            "name": "Autres marchandises"
+           }
+          ], 
+          "name": "MARCHANDISES A"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Biens r\u00e9siduels en cours"
+             }, 
+             {
+              "name": "Biens interm\u00e9diaires en cours"
+             }, 
+             {
+              "name": "Biens produits en cours"
+             }
+            ], 
+            "name": "Biens en cours"
+           }, 
+           {
+            "name": "Autres produits en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "\u00c9tudes en cours"
+             }, 
+             {
+              "name": "Prestations en cours"
+             }, 
+             {
+              "name": "Travaux en cours"
+             }
+            ], 
+            "name": "Services en cours"
+           }
+          ], 
+          "name": "Produits en cours"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits finis (groupe B)"
+           }, 
+           {
+            "name": "Produits finis (groupe A)"
+           }, 
+           {
+            "name": "Produits finis en cours de route"
+           }, 
+           {
+            "name": "Autres produits finis"
+           }
+          ], 
+          "name": "Produits finis"
+         }, 
+         {
+          "name": "MARCHANDISES HORS ACTIVIT\u00c9S ORDINAIRES (H.A.O.)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres mati\u00e8res et fournitures consommables"
+           }, 
+           {
+            "name": "Mati\u00e8res et fournitures consommables en cours de route"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages perdus"
+             }, 
+             {
+              "name": "Emballages \u00e0\u00a0 usage mixte"
+             }, 
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables non identifiables"
+             }
+            ], 
+            "name": "Emballages"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mati\u00e8res premi\u00e8res (groupe B)"
+             }, 
+             {
+              "name": "Mati\u00e8res premi\u00e8res (groupe A)"
+             }
+            ], 
+            "name": "Marchandises B1"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournitures de magasin"
+             }, 
+             {
+              "name": "Fournitures de bureau"
+             }, 
+             {
+              "name": "Produits d'entretien"
+             }, 
+             {
+              "name": "Mati\u00e8res consommables (groupe B)"
+             }, 
+             {
+              "name": "Mati\u00e8res consommables (groupe A)"
+             }, 
+             {
+              "name": "Fournitures d'atelier et d'usine"
+             }, 
+             {
+              "name": "Combustibles"
+             }
+            ], 
+            "name": "Marchandises B2"
+           }
+          ], 
+          "name": "MARCHANDISES B"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits interm\u00e9diaires et produits r\u00e9siduels"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D\u00e9chets"
+             }, 
+             {
+              "name": "Mati\u00e8res de r\u00e9cup\u00e9ration"
+             }, 
+             {
+              "name": "Rebuts"
+             }
+            ], 
+            "name": "Produits r\u00e9siduels (ou mati\u00e8res de r\u00e9cup\u00e9ration)"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Produits interm\u00e9diaires (groupe A)"
+             }, 
+             {
+              "name": "Produits interm\u00e9diaires (groupe B)"
+             }
+            ], 
+            "name": "Produits interm\u00e9diaires"
+           }
+          ], 
+          "name": "Produits interm\u00e9diaires et produits r\u00e9siduels"
+         }, 
+         {
+          "name": "Fournitures A, B, C, ..", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "MARCHANDISES"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires A"
+           }, 
+           {
+            "name": "Produits interm\u00e9diaires B"
+           }
+          ], 
+          "name": "PRODUITS INTERM\u00c9DIAIRES"
+         }, 
+         {
+          "name": "Diferente de pret la marfuri"
+         }, 
+         {
+          "children": [
+           {
+            "name": "D\u00e9chets"
+           }, 
+           {
+            "name": "Rebuts"
+           }, 
+           {
+            "name": "Mati\u00e8res de R\u00e9cup\u00e9ration"
+           }
+          ], 
+          "name": "PRODUITS R\u00c9SIDUELS"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Diminution des cr\u00e9ances circulantes"
+           }, 
+           {
+            "name": "Augmentation des dettes circulantes"
+           }
+          ], 
+          "name": "\u00c9cart de conversion - Actif (\u00e9l\u00e9ments circulant)"
+         }
+        ], 
+        "name": "PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS"
+       }
+      ], 
+      "name": "Comptes de stocks et d'en-cours"
+     }
+    ], 
+    "name": "Comptes de bilan"
+   }, 
+   {
+    "name": "COMPTES DE RESULTATS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Giruri si garantii acordate"
+           }, 
+           {
+            "name": "Alte angajamente acordate "
+           }
+          ], 
+          "name": "Angajamente acordate"
+         }, 
+         {
+          "name": "Certificate de emisii de gaze cu efect de sera"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Valori materiale primite in pastrare sau custodie"
+           }, 
+           {
+            "name": "Bunuri publice primite in administrare, concesiune si cu chirie"
+           }, 
+           {
+            "name": "Alte valori in afara bilantului"
+           }, 
+           {
+            "name": "Debitori scosi din activ, urmariti in continuare"
+           }, 
+           {
+            "name": "Efecte scontate neajunse la scadenta"
+           }, 
+           {
+            "name": "Valori materiale primite spre prelucrare sau reparare"
+           }, 
+           {
+            "name": "Stocuri de natura obiectelor de inventar date in folosinta"
+           }, 
+           {
+            "name": "Redevente, locatii de gestiune, chirii si alte datorii asimilate"
+           }, 
+           {
+            "name": "Imobilizari corporale luate cu chirie"
+           }
+          ], 
+          "name": "Alte conturi in afara bilantului"
+         }, 
+         {
+          "name": "Datorii contingente"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte angajamente primite"
+           }, 
+           {
+            "name": "Giruri si garantii primite"
+           }
+          ], 
+          "name": "Angajamente primite"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Amortizarea aferenta gradului de neutilizare a mijloacelor fixe "
+           }
+          ], 
+          "name": "Amortizarea aferenta gradului de neutilizare a mijloacelor fixe"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dobanzi de incasat"
+           }, 
+           {
+            "name": "Dobanzi de platit"
+           }
+          ], 
+          "name": "Dobanzi aferente contractelor de leasing si altor contracte asimilate, neajunse la scadenta"
+         }, 
+         {
+          "name": "Active contingente"
+         }
+        ], 
+        "name": "CONTURI IN AFARA BILANTULUI"
+       }
+      ], 
+      "name": "CONTURI SPECIALE"
+     }, 
+     {
+      "name": "CONTURI DE GESTIUNE"
+     }
+    ], 
+    "name": "Conturi in afara bilantului"
+   }, 
+   {
+    "children": [
+     {
+      "name": "COMPTES DE PRODUITS"
+     }, 
+     {
+      "name": "COMPTES DE CHARGES"
+     }
+    ], 
+    "name": "COMPTES DE GESTION"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Comptes de produits"
+     }, 
+     {
+      "name": "Comptes de charges"
+     }
+    ], 
+    "name": "Comptes de gestion"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Comptes financiers"
+     }, 
+     {
+      "name": "Comptes de tiers"
+     }, 
+     {
+      "name": "Comptes de capitaux"
+     }, 
+     {
+      "name": "Comptes de stocks et d'en-cours"
+     }, 
+     {
+      "name": "Comptes d'immobilisations"
+     }
+    ], 
+    "name": "Comptes de bilan"
+   }, 
+   {
+    "children": [
+     {
+      "name": "COMPTES D'ECARTS SUR COUTS PREETABLIS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Costul productiei de executie"
+       }, 
+       {
+        "name": "Costul productiei obtinute"
+       }
+      ], 
+      "name": "COMPTES DE RECLASSEMENTS"
+     }, 
+     {
+      "name": "COMPTES DE RESULTATS"
+     }, 
+     {
+      "name": "COMPTES DE LIAISONS INTERNES"
+     }, 
+     {
+      "name": "COMPTES DE CO\u00dbTS"
+     }, 
+     {
+      "name": "COMPTES DE DIFFERENCES DE TRAITEMENT COMPTABLE\n        "
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Divers engagements obtenus"
+         }, 
+         {
+          "name": "Abandons de cr\u00e9ances conditionnels"
+         }, 
+         {
+          "name": "Ventes avec clause de r\u00e9serve de propri\u00e9t\u00e9"
+         }
+        ], 
+        "name": "AUTRES ENGAGEMENTS OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres engagements de financement obtenus"
+         }, 
+         {
+          "name": "Facilit\u00e9s de financement renouvelables"
+         }, 
+         {
+          "name": "Emprunts restant \u00e0 encaisser"
+         }, 
+         {
+          "name": " Facilit\u00e9s d'\u00e9mission"
+         }, 
+         {
+          "name": "Cr\u00e9dits confirm\u00e9s obtenus"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE FINANCEMENT OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Commandes fermes des clients"
+         }, 
+         {
+          "name": "Achats de marchandises \u00e0 terme"
+         }, 
+         {
+          "name": "Achats \u00e0 terme de devises"
+         }, 
+         {
+          "name": "Autres engagements r\u00e9ciproques"
+         }
+        ], 
+        "name": "ENGAGEMENTS R\u00c9CIPROQUES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Avals accord\u00e9s"
+         }, 
+         {
+          "name": "Cautions, garanties accord\u00e9es"
+         }, 
+         {
+          "name": "Effets endoss\u00e9s par l'entreprise"
+         }, 
+         {
+          "name": "Autres garanties accord\u00e9es"
+         }, 
+         {
+          "name": "Hypoth\u00e8ques accord\u00e9es"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE GARANTIE ACCORD\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets endoss\u00e9s par des tiers"
+         }, 
+         {
+          "name": "Hypoth\u00e8ques obtenues"
+         }, 
+         {
+          "name": "Autres garanties obtenues"
+         }, 
+         {
+          "name": "Cautions, garanties obtenues"
+         }, 
+         {
+          "name": "Avals obtenus"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE GARANTIE OBTENUS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Achats avec clause de r\u00e9serve de propri\u00e9t\u00e9"
+         }, 
+         {
+          "name": "Divers engagements accord\u00e9s"
+         }, 
+         {
+          "name": "Annulations conditionnelles de dettes"
+         }, 
+         {
+          "name": "Engagements de retraite"
+         }
+        ], 
+        "name": "AUTRES ENGAGEMENTS ACCORD\u00c9S"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Commandes fermes aux fournisseurs"
+         }, 
+         {
+          "name": "Ventes de marchandises \u00e0 terme"
+         }, 
+         {
+          "name": "Autres engagements r\u00e9ciproques"
+         }, 
+         {
+          "name": "Ventes \u00e0 terme de devises"
+         }
+        ], 
+        "name": "ENGAGEMENTS R\u00c9CIPROQUES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9dits accord\u00e9s non d\u00e9caiss\u00e9s"
+         }, 
+         {
+          "name": "Autres engagements de financement accord\u00e9s"
+         }
+        ], 
+        "name": "ENGAGEMENTS DE FINANCEMENT ACCORD\u00c9S"
+       }
+      ], 
+      "name": "ENGAGEMENTS OBTENUS ET ENGAGEMENTS ACCORD\u00c9S"
+     }, 
+     {
+      "children": [
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS ACCORD\u00c9S, 905 \u00e0 908\n        "
+       }, 
+       {
+        "name": "CONTREPARTIE DES ENGAGEMENTS OBTENUS, 901 \u00e0 904\n        "
+       }
+      ], 
+      "name": "CONTREPARTIES DES ENGAGEMENTS"
+     }, 
+     {
+      "name": "COMPTES DE STOCKS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cheltuieli generale de administratie"
+       }, 
+       {
+        "name": "Cheltuieli indirecte de productie"
+       }, 
+       {
+        "name": "Cheltuielile activitatii de baza"
+       }, 
+       {
+        "name": "Cheltuieli de desfacere"
+       }, 
+       {
+        "name": "Cheltuielile activitatilor auxiliare"
+       }
+      ], 
+      "name": "COMPTES REFLECHIS"
+     }
+    ], 
+    "name": "Comptes des engagements hors bilan et comptabilit\u00e9 analytique"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotations aux amortissements des immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations pour d\u00e9pr\u00e9ciations des immobilisations incorporelles et corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cr\u00e9ances", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Stocks et en-cours", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciation des actifs circulants"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux amortissements des charges immobilis\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux amortissements des immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli de exploatare privind ajustarile pentru deprecierea activelor circulante", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX AMORTISSEMENTS D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotations aux amortissements des primes de remboursement des obligations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges financiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind amortizarea primelor de rambursare a obligatiunilor", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a imobilizarilor financiare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations financi\u00e8res", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Valeurs mobili\u00e8res de placement", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux d\u00e9pr\u00e9ciation des \u00e9l\u00e9ments financiers"
+           }, 
+           {
+            "name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a activelor circulante", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli financiare privind amortizarile si ajustarile pentru pierdere de valoare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Dotations aux provisions r\u00e9glement\u00e9es (stocks)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux amortissements exceptionnels des immobilisations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements d\u00e9rogatoires", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Dotations aux amortissements des primes de remboursement des obligations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux d\u00e9pr\u00e9ciations exceptionnelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux provisions exceptionnelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres dotations aux amortissements \u00e0 caract\u00e8re financier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dotations aux autres provisions r\u00e9glement\u00e9es", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX AMORTISSEMENTS \u00c0 CARACT\u00c8RE FINANCIER", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "DOTATIONS AUX AMORTISSEMENTS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "QUOTE-PART DE R\u00c9SULTAT ANNUL\u00c9E SUR EX\u00c9CUTION PARTIELLE DE CONTRATS PLURI-EXERCICES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances des exercices ant\u00e9rieurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9ances de l'exercice", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "VALEUR COMPTABLE DES CESSIONS COURANTES D'IMMOBILISATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part transf\u00e9r\u00e9e de b\u00e9n\u00e9fices (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Pertes imput\u00e9es par transfert (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR OP\u00c9RATIONS FAITES EN COMMUN", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges provisionn\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur stocks", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. aux provisions pour risques et charges durables"
+             }, 
+             {
+              "name": "D.N.C. aux provisions pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Dotations non courantes aux provisions pour risques et charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. pour plus-values en instance d'imposition"
+             }, 
+             {
+              "name": "D.N.C. pour reconstitution de gisements"
+             }, 
+             {
+              "name": "D.N.C. pour acquisition et construction de logements"
+             }, 
+             {
+              "name": "D.N.C. pour investissements"
+             }, 
+             {
+              "name": "D.N.C. pour amortissements d\u00e9rogatoires"
+             }
+            ], 
+            "name": "sur cr\u00e9ances", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.N.C. aux provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+             }, 
+             {
+              "name": "D.N.C. aux provisions pour d\u00e9pr\u00e9ciation de l'actif immobilis\u00e9"
+             }
+            ], 
+            "name": "Dotations non courantes aux provisions pour d\u00e9pr\u00e9ciation"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.A.E. de l'immobilisation en non-valeurs"
+             }, 
+             {
+              "name": "D.A.E. des immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.A.E. des immobilisations corporelles"
+             }
+            ], 
+            "name": "sur risques \u00e0 court terme", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES PROVISIONN\u00c9ES D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Alte cheltuieli de exploatare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9ances devenues irr\u00e9couvrables"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Dons"
+             }, 
+             {
+              "name": "Lots"
+             }, 
+             {
+              "name": "Lib\u00e9ralit\u00e9s"
+             }
+            ], 
+            "name": "Dons, lib\u00e9ralit\u00e9s et lots"
+           }, 
+           {
+            "name": "Dons", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "P\u00e9nalit\u00e9s et amendes fiscales"
+             }, 
+             {
+              "name": "P\u00e9nalit\u00e9s et amendes p\u00e9nales"
+             }
+            ], 
+            "name": "M\u00e9c\u00e9nat", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D\u00e9dits"
+             }, 
+             {
+              "name": "P\u00e9nalit\u00e9s sur march\u00e9s"
+             }
+            ], 
+            "name": "Jetons de pr\u00e9sence et autres r\u00e9mun\u00e9rations d'administrateurs", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES DIVERSES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part de perte support\u00e9e (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Quote-part de b\u00e9n\u00e9fice transf\u00e9r\u00e9e (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Quotes-parts de r\u00e9sultat sur op\u00e9rations faites en commun"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions accord\u00e9es de l'exercice"
+           }, 
+           {
+            "name": "Subventions accord\u00e9es des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Subventions accord\u00e9es"
+         }, 
+         {
+          "children": [
+           {
+            "name": "VNA des immobilisations c\u00e9d\u00e9es des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Clients", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "VNA des immobilisations corporelles c\u00e9d\u00e9es"
+           }, 
+           {
+            "name": "VNA des immobilisations incorporelles c\u00e9d\u00e9es"
+           }, 
+           {
+            "name": "Autres d\u00e9biteurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "VNA provisions des immobilisations financi\u00e8res c\u00e9d\u00e9es (droits de propri\u00e9t\u00e9)"
+           }, 
+           {
+            "name": "Droits d'auteur et de reproduction", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PERTES SUR CR\u00c9ANCES CLIENTS ET AUTRES D\u00c9BITEURS", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "AUTRES CHARGES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "M\u00e9decine du travail pharmacie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres amendes p\u00e9nales et fiscales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s d'assiette, imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s de recouvrement, imp\u00f4ts directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s d'assiette, imp\u00f4ts directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "P\u00e9nalit\u00e9s de recouvrement, imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "P\u00c9NALIT\u00c9S ET AMENDES FISCALES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "AUTRES IMP\u00d4TS ET TAXES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu tichetele de masa acordate salariatilor", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres imp\u00f4ts et taxes directs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes d'apprentissage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Patentes, licences et taxes annexes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes sur appointements et salaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Formation professionnelle continue", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts fonciers et taxes annexes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "IMP\u00d4TS ET TAXES DIRECTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Droits de mutation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres droits", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes sur les v\u00e9hicules de soci\u00e9t\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Droits de timbre", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Vignettes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DROITS D'ENREGISTREMENT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu renumerarea in instrumente de capitaluri proprii", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contributia unitatii la asigurarile sociale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii pentru ajutorul de somaj", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia angajatorului pentru asigurarile sociale de sanatate", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de garantare", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la fondul de concedii medicale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la schemele de pensii facultative", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Alte cheltuieli privind asigurarile si protectia sociala", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contributia unitatii la primele de asigurare voluntara de sanatate", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "IMP\u00d4TS ET TAXES INDIRECTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli cu primele reprezentand participarea personalului la profit", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "IMP\u00d4TS ET TAXES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "PERTES SUR CESSIONS DE TITRES DE PLACEMENT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges exceptionnelles diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur instruments de tr\u00e9sorerie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur rentes viag\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur op\u00e9rations financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Malis provenant du rachat par l'entreprise d'actions et obligations \u00e9mises par elle-m\u00eame", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PERTES SUR RISQUES FINANCIERS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats sur dettes commerciales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats sur obligations cautionn\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats sur dettes diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Avances re\u00e7ues et d\u00e9p\u00f4ts cr\u00e9diteurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Comptes courants bloqu\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats bancaires et sur op\u00e9rations de tr\u00e9sorerie et d\u2019escompte", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES INT\u00c9R\u00caTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "PERTES DE CHANGE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges provisionn\u00e9es financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur titres de placement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "sur risques financiers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES PROVISIONN\u00c9ES FINANCI\u00c8RES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "ESCOMPTES ACCORD\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats dans loyers de cr\u00e9dit-bail immobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats dans loyers des autres contrats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats dans loyers de cr\u00e9dit-bail mobilier", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DANS LOYERS DE CR\u00c9DIT-BAIL ET CONTRATS ASSIMIL\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances devenues irr\u00e9couvrables dans l'exercice", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Subventions accord\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emprunts obligataires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rappels d'imp\u00f4ts (autres qu'imp\u00f4ts sur les b\u00e9n\u00e9fices)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dettes li\u00e9es \u00e0 des participations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emprunts aupr\u00e8s des \u00e9tablissements de cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres charges exceptionnelles sur op\u00e9ration de gestion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DES EMPRUNTS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Imposition minimale annuelle des soci\u00e9t\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts sur les b\u00e9n\u00e9fices"
+           }, 
+           {
+            "name": "Rappels et d\u00e9gr\u00e8vements d'imp\u00f4ts sur les r\u00e9sultats"
+           }
+          ], 
+          "name": "Imp\u00f4ts sur les r\u00e9sultats"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres \u00e9l\u00e9ments d'actif", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Immobilisations financi\u00e8res", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ESCOMPTES DES EFFETS DE COMMERCE", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "FRAIS FINANCIERS ET CHARGES ASSIMIL\u00c9ES", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "D.E. aux amortissements des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "D.E. aux provisions des exercices ant\u00e9rieurs"
+             }
+            ], 
+            "name": "Dotations d'exploitation des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des immobilisations corporelles"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour d\u00e9pr\u00e9ciation des immobilisations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des stocks"
+             }, 
+             {
+              "name": "D.E.P. pour d\u00e9pr\u00e9ciation des cr\u00e9ances de l'actif circulant"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour d\u00e9pr\u00e9ciations de l'actif circulant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.P. pour risques et charges durables"
+             }, 
+             {
+              "name": "D.E.P. pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux provisions pour risques et charges"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des frais pr\u00e9liminaires"
+             }, 
+             {
+              "name": "D.E.A. des charges \u00e0\u00a0 r\u00e9partir"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements de l'immobilisation en non valeur"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des mobiliers, mat\u00e9riels de bureau et am\u00e9nagements divers"
+             }, 
+             {
+              "name": "D.E.A. du mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "D.E.A. des autres immobilisations corporelles"
+             }, 
+             {
+              "name": "D.E.A. des terrains"
+             }, 
+             {
+              "name": "D.E.A. des installations techniques, mat\u00e9riel et outillage"
+             }, 
+             {
+              "name": "D.E.A. des constructions"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements des immobilisations corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "D.E.A. des autres immobilisations incorporelles"
+             }, 
+             {
+              "name": "D.E.A. de l'immobilisation en recherche et d\u00e9veloppement"
+             }, 
+             {
+              "name": "D.E.A. du fonds commercial"
+             }, 
+             {
+              "name": "D.E.A. des brevets, marques, droits et valeurs similaires"
+             }
+            ], 
+            "name": "Dotations d'exploitation aux amortissements des immobilisations incorporelles"
+           }
+          ], 
+          "name": "Dotations d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres charges d'exploitation des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Transports administratifs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Voyages et d\u00e9placements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transports entre \u00e9tablissements ou chantiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transfert de profits sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Pertes sur op\u00e9rations faites en commun"
+           }
+          ], 
+          "name": "AUTRES FRAIS DE TRANSPORT", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Achats de marchandises \"groupe A\""
+           }, 
+           {
+            "name": "Achats de marchandises \"groupe B\""
+           }, 
+           {
+            "name": "Rabais, remises et ristournes obtenus sur achats de marchandises"
+           }, 
+           {
+            "name": "Achats revendus de marchandises des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Variation de stocks de marchandises"
+           }
+          ], 
+          "name": "TRANSPORTS SUR ACHATS()", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Honoraires"
+             }, 
+             {
+              "name": "Commissions et courtages"
+             }, 
+             {
+              "name": "Frais d'actes et de contentieux"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations d'interm\u00e9diaires et honoraires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Assurances - Mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "Assurances multirisque (vol, incendie,R,C,)"
+             }, 
+             {
+              "name": "Autres assurances"
+             }, 
+             {
+              "name": "Assurances - risques d'exploitation"
+             }
+            ], 
+            "name": "Primes d'assurances"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres redevances"
+             }, 
+             {
+              "name": "Redevances pour brevets"
+             }
+            ], 
+            "name": "Redevances pour brevets, marques, droits et valeurs similaires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel occasionnel"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0\u00a0 l'entreprise"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations du personnel int\u00e9rimaire"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations du personnel ext\u00e9rieur \u00e0\u00a0 l'entreprise"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Maintenance"
+             }, 
+             {
+              "name": "Entretien et r\u00e9parations des biens immobiliers"
+             }, 
+             {
+              "name": "Entretien et r\u00e9parations des biens mobiliers"
+             }
+            ], 
+            "name": "Entretien et r\u00e9parations"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Redevances de cr\u00e9dit-bail - mobilier et mat\u00e9riel"
+             }
+            ], 
+            "name": "Redevances de cr\u00e9dit-bail"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Locations de constructions"
+             }, 
+             {
+              "name": "Locations et charges locatives diverses"
+             }, 
+             {
+              "name": "Locations de terrains"
+             }, 
+             {
+              "name": "Malis sur emballages rendus"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel de transport"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel informatique"
+             }, 
+             {
+              "name": "Locations de mobilier et de mat\u00e9riel de bureau"
+             }, 
+             {
+              "name": "Locations de mat\u00e9riel et d'outillage"
+             }
+            ], 
+            "name": "Locations et charges locatives"
+           }
+          ], 
+          "name": "TRANSPORTS POUR LE COMPTE DE TIERS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de travaux, \u00e9tudes et prestations de service"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res et fournitures consommables"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats des emballages"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res premi\u00e8res"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats de mati\u00e8res et fournitures des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "Rabais, remises et ristournes obtenus sur achats non stock\u00e9s"
+             }
+            ], 
+            "name": "Rabais, remises et ristournes obtenus sur achats consomm\u00e9s de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks des emballages"
+             }, 
+             {
+              "name": "Variation des stocks de mati\u00e8res et fournitures consommables"
+             }, 
+             {
+              "name": "Variation des stocks de mati\u00e8res premi\u00e8res"
+             }
+            ], 
+            "name": "Variation des stocks de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de fournitures d'entretien"
+             }, 
+             {
+              "name": "Achats de fournitures non stockables (eau, \u00e9lectricit\u00e9,,)"
+             }, 
+             {
+              "name": "Achats de fournitures de bureau"
+             }, 
+             {
+              "name": "Achats de petit outillage et petit \u00e9quipement"
+             }
+            ], 
+            "name": "Achats non stock\u00e9s de mati\u00e8res et fournitures"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats des prestations de service"
+             }, 
+             {
+              "name": "Achats des \u00e9tudes"
+             }, 
+             {
+              "name": "Achats des travaux"
+             }
+            ], 
+            "name": "Achats de travaux, \u00e9tudes et prestations de service"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats d'emballages perdus"
+             }, 
+             {
+              "name": "Achats d'emballages r\u00e9cup\u00e9rables non identifiables"
+             }, 
+             {
+              "name": "Achats d'emballages \u00e0\u00a0 usage mixte"
+             }
+            ], 
+            "name": "Achats d'emballages"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de mati\u00e8res et fournitures B"
+             }, 
+             {
+              "name": "Achats de combustibles"
+             }, 
+             {
+              "name": "Achats de mati\u00e8res et fournitures A"
+             }, 
+             {
+              "name": "Achats de fournitures de bureau"
+             }, 
+             {
+              "name": "Achats de fournitures d'atelier et d'usine"
+             }, 
+             {
+              "name": "Achats de produits d'entretien"
+             }, 
+             {
+              "name": "Achats de fournitures de magasin"
+             }
+            ], 
+            "name": "Achats de mati\u00e8res et fournitures consommables"
+           }, 
+           {
+            "name": "Achats de mati\u00e8res et de fournitures des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Achats de mati\u00e8res premi\u00e8res B"
+             }, 
+             {
+              "name": "Achats de mati\u00e8res premi\u00e8res A"
+             }
+            ], 
+            "name": "Achats de mati\u00e8res premi\u00e8res"
+           }
+          ], 
+          "name": "TRANSPORTS SUR VENTES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Dons"
+             }, 
+             {
+              "name": "Cotisations"
+             }
+            ], 
+            "name": "Cotisations et dons"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais sur effets de commerce"
+             }, 
+             {
+              "name": "Frais d'achat et de vente des titres"
+             }, 
+             {
+              "name": "Frais et commissions sur services bancaires"
+             }
+            ], 
+            "name": "Services bancaires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres transports"
+             }, 
+             {
+              "name": "Transports sur ventes"
+             }, 
+             {
+              "name": "Transports du personnel"
+             }, 
+             {
+              "name": "Transports sur achats"
+             }
+            ], 
+            "name": "Transports"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes obtenus sur autres charges externes"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Frais de t\u00e9l\u00e9phone"
+             }, 
+             {
+              "name": "Frais de t\u00e9lex et de t\u00e9l\u00e9grammes"
+             }, 
+             {
+              "name": "Frais postaux"
+             }
+            ], 
+            "name": "Frais postaux et frais de t\u00e9l\u00e9communication"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Documentation g\u00e9n\u00e9rale"
+             }, 
+             {
+              "name": "Recherches"
+             }, 
+             {
+              "name": "Documentation technique"
+             }, 
+             {
+              "name": "\u00c9tudes g\u00e9n\u00e9rales"
+             }
+            ], 
+            "name": "\u00c9tudes, recherches et documentation"
+           }, 
+           {
+            "name": "Autres charges externes des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Foires et expositions"
+             }, 
+             {
+              "name": "Publications"
+             }, 
+             {
+              "name": "Cadeaux \u00e0\u00a0 la client\u00e8le"
+             }, 
+             {
+              "name": "Primes de publicit\u00e9"
+             }, 
+             {
+              "name": "\u00c9chantillons, catalogues et imprim\u00e9s publicitaires"
+             }, 
+             {
+              "name": "Annonces et insertions"
+             }, 
+             {
+              "name": "Autres charges de publicit\u00e9 et relations publiques"
+             }
+            ], 
+            "name": "Publicit\u00e9, publications et relations publiques"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Missions"
+             }, 
+             {
+              "name": "Voyages et d\u00e9placements"
+             }, 
+             {
+              "name": "R\u00e9ceptions"
+             }, 
+             {
+              "name": "Frais de d\u00e9m\u00e9nagement"
+             }
+            ], 
+            "name": "D\u00e9placements, missions et r\u00e9ceptions"
+           }
+          ], 
+          "name": "TRANSPORTS DU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Charges sociales sur appointements et salaires de l'exploitant"
+             }, 
+             {
+              "name": "Appointements et salaires"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9ration de l'exploitant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres charges sociales diverses"
+             }, 
+             {
+              "name": "Indemnit\u00e9s de pr\u00e9avis et de licenciement"
+             }, 
+             {
+              "name": "Assurances groupe"
+             }, 
+             {
+              "name": "M\u00e9decine de travail, pharmacie"
+             }, 
+             {
+              "name": "Habillement et v\u00eatements de travail"
+             }, 
+             {
+              "name": "Allocations aux oeuvres sociales"
+             }, 
+             {
+              "name": "Prestations de retraites"
+             }
+            ], 
+            "name": "Charges sociales diverses"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Primes de repr\u00e9sentation"
+             }, 
+             {
+              "name": "Commissions au personnel"
+             }, 
+             {
+              "name": "R\u00e9mun\u00e9rations des administrateurs, g\u00e9rants et associ\u00e9s"
+             }, 
+             {
+              "name": "Indemnit\u00e9s et avantages divers"
+             }, 
+             {
+              "name": "Primes et gratifications"
+             }, 
+             {
+              "name": "Appointements et salaires"
+             }, 
+             {
+              "name": "Indemnit\u00e9s de d\u00e9placement"
+             }
+            ], 
+            "name": "R\u00e9mun\u00e9rations du personnel"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations familiales"
+             }, 
+             {
+              "name": "Assurances accidents de travail"
+             }, 
+             {
+              "name": "Cotisations de s\u00e9curit\u00e9 sociale"
+             }, 
+             {
+              "name": "Cotisations aux mutuelles"
+             }, 
+             {
+              "name": "Cotisations aux caisses de retraite"
+             }
+            ], 
+            "name": "Charges sociales"
+           }, 
+           {
+            "name": "Charges du personnel des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Charges de personnel"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- sur biens immobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- sur biens mobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Maintenance", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Entretien et r\u00e9parations"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Taxe urbaine et taxe d'\u00e9dilit\u00e9"
+             }, 
+             {
+              "name": "Patente"
+             }, 
+             {
+              "name": "Taxes locales"
+             }
+            ], 
+            "name": "Imp\u00f4ts et taxes directs"
+           }, 
+           {
+            "name": "Assurance obligatoire dommage construction ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Risques d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes directs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Assurance transport sur autres biens", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Assurance transport sur achats", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Assurance transportsur ventes", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Assurance transport"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Droits d'enregistrement et de timbre"
+             }, 
+             {
+              "name": "Taxes sur les v\u00e9hicules"
+             }, 
+             {
+              "name": "Autres imp\u00f4ts, taxes et droits assimil\u00e9s"
+             }, 
+             {
+              "name": "La vignette"
+             }
+            ], 
+            "name": "Imp\u00f4ts, taxes et droits assimil\u00e9s"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "TRANSPORTS DE PLIS", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "TRANSPORTS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournitures non stockables - Electricit\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'entretien non stockables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures de bureau non stockables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats de petit mat\u00e9riel et outillage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables -Eau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables \u2013 Autres \u00e9nergies", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats de travaux, mat\u00e9riels et \u00e9quipements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Achats d'\u00e9tudes et prestations de services", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES ACHATS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournitures administratives", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures non stockables (eau, \u00e9nergie...) ", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'entretien et de petit \u00e9quipement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres mati\u00e8res et fournitures", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli privind animalele si pasarile", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournitures de bureau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures de magasin", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Produits d'entretien", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Mati\u00e8res combustibles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Mati\u00e8res consommables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures d'atelier et d'usine", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS STOCK\u00c9S DE MATI\u00c8RES ET FOURNITURES CONSOMMABLES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Fournitures d'atelier et d'usine", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Combustibles", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Produits d'entretien", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fournitures de magasin", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Fournitures de bureau", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Emballages perdus", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Emballages \u00e0 usage mixte", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Cheltuieli privind furajele", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli privind alte materiale consumabile", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cheltuieli privind semintele si materialele de plantat", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Mati\u00e8res (ou groupe) D", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Mati\u00e8res (ou groupe) C", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS DE MATI\u00c8RES PREMI\u00c8RES ET FOURNITURES LI\u00c9ES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Variation des stocks de marchandises", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks de mati\u00e8res premi\u00e8res et fournitures li\u00e9es", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks d'autres approvisionnements", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Variations des stocks de marchandises", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE BIENS ACHET\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Fournitures A, B, C, ..", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS DE MARCHANDISES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Emballages \u00e0 usage mixte", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emballages r\u00e9cup\u00e9rables non identifiables", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, Remises et Ristournes obtenus (non ventil\u00e9s)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Emballages perdus", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ACHATS D'EMBALLAGES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- de mat\u00e9riel, \u00e9quipements et travaux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes non affect\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- de mati\u00e8res premi\u00e8res (et fournitures)", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'autres approvisionnements stock\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'\u00e9tudes et prestations de services", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- d'approvisionnements non stock\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "- de marchandises", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Rabais, remises et ristournes obtenus sur achats"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Marchandise (ou groupe) B", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Marchandise (ou groupe) A", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Achats de marchandises"
+         }, 
+         {
+          "name": "Cheltuieli privind marfurile", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reduceri comerciale primite", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "ACHATS ET VARIATIONS DE STOCKS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "name": "Dotations aux provisions pour risques et charges financi\u00e8res"
+           }, 
+           {
+            "name": "Dotations aux provisions pour d\u00e9pr\u00e9ciations des immobilisations financi\u00e8res"
+           }, 
+           {
+            "name": "Dotation aux provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Dotations financi\u00e8res des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Dotations aux amortissements des primes de remboursement des obligations"
+           }
+          ], 
+          "name": "Dotations financi\u00e8res"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9ceptions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de recrutement du personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de d\u00e9m\u00e9nagement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Missions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES CHARGES EXTERNES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Redevances pour logiciels", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour brevets, licences, concessions et droits similaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour marques", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "REDEVANCES POUR BREVETS, LICENCES, LOGICIELS ET DROITS SIMILAIRES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Concours divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts indirects", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Autres imp\u00f4ts locaux", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxes fonci\u00e8res", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxe professionnelle", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Taxe sur les v\u00e9hicules des soci\u00e9t\u00e9s", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Cotisations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Droits de mutation", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Droits d'enregistrement et de timbre"
+           }, 
+           {
+            "name": "Taxes sur le chiffre d'affaires non r\u00e9cup\u00e9rables ", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "COTISATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts et taxes exigibles \u00e0 l'\u00e9tranger", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l'entreprise", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxes diverses", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DE PERSONNEL EXT\u00c9RIEUR \u00c0 L'ENTREPRISE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Participation des employeurs \u00e0 la formation professionnelle continue", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Allocation logement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements lib\u00e9ratoires ouvrant droit \u00e0 l'exon\u00e9ration de la taxe d'apprentissage", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Participation des employeurs \u00e0 l'effort de construction", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Pertes de change des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Pertes de change propres \u00e0\u00a0 l'exercice"
+           }
+          ], 
+          "name": "FRAIS DE FORMATION DU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "R\u00e9mun\u00e9rations des transitaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'actes et de contentieux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions et courtages sur achats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers frais", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions et courtages sur ventes", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS D'INTERM\u00c9DIAIRES ET DE CONSEILS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Commissions sur cartes de cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'\u00e9mission d'emprunts", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cotisation pour d\u00e9faut d'investissement obligatoire dans la construction", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres frais bancaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Location de coffres", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais sur effets", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des comptes courants et d\u00e9p\u00f4ts cr\u00e9diteurs"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des dettes rattach\u00e9es \u00e0\u00a0 des participations"
+             }, 
+             {
+              "name": "Autres int\u00e9r\u00eats des emprunts et dettes"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats bancaires et sur op\u00e9rations de financement"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des emprunts"
+             }
+            ], 
+            "name": "Frais sur titres (achat, vente, garde)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "FRAIS BANCAIRES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SERVICES EXT\u00c9RIEURS B", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rabais, remises et ristournes obtenus sur autres services ext\u00e9rieurs", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurances risques d'exploitation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances insolvabilit\u00e9 clients", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances transport sur achats", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances mat\u00e9riel de transport", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances multirisques", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances transport sur ventes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances responsabilit\u00e9 du producteur", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres primes d'assurances", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PRIMES D'ASSURANCE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Annonces et insertions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9dit-bail immobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cr\u00e9dit-bail mobilier", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cadeaux \u00e0 la client\u00e8le", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Contrats assimil\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Catalogues et imprim\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Publications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers (pourboires, dons courants...)", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "REDEVANCES DE CR\u00c9DIT-BAIL ET CONTRATS ASSIMIL\u00c9S", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres frais de t\u00e9l\u00e9communications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9l\u00e9phone", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9l\u00e9copie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de t\u00e9lex", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de recrutement de personnel", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "FRAIS DE T\u00c9L\u00c9COMMUNICATIONS", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Documentation g\u00e9n\u00e9rale", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Documentation technique", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "\u00c9tudes et recherches", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "\u00c9TUDES, RECHERCHES ET DOCUMENTATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l'entreprise", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "SOUS-TRAITANCE G\u00c9N\u00c9RALE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Transports administratifs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Transports collectifs du personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Entretien et r\u00e9parations des biens immobiliers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Maintenance", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres entretiens et r\u00e9parations", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Entretien et r\u00e9parations des biens mobiliers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "ENTRETIEN, R\u00c9PARATIONS ET MAINTENANCE", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9chantillons", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres charges de publicit\u00e9 et relations publiques", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Publications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cadeaux \u00e0 la client\u00e8le", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Annonces, insertions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Catalogues, imprim\u00e9s publicitaires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Foires et expositions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de colloques, s\u00e9minaires, conf\u00e9rences", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "PUBLICIT\u00c9, PUBLICATIONS, RELATIONS PUBLIQUES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Locations et charges locatives diverses", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de b\u00e2timents", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais d'actes et de contentieux", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Malis sur emballages", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de terrains", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations de mat\u00e9riels et outillages", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Locations d'emballages", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "LOCATIONS ET CHARGES LOCATIVES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "SERVICES EXT\u00c9RIEURS A", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Int\u00e9gration fiscale - Produits", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Int\u00e9gration fiscale - Charges", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Cheltuieli cu impozitul pe venit si cu alte impozite care nu apar in elementele de mai sus", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX PROVISIONS FINANCI\u00c8RES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ment d'imp\u00f4t sur les soci\u00e9t\u00e9s li\u00e9 aux distributions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Produits, Reports en arri\u00e8re des d\u00e9ficits", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations corporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations incorporelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "pour grosses r\u00e9parations", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "DOTATIONS AUX PROVISIONS D'EXPLOITATION", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Contribution additionnelle \u00e0 l'imp\u00f4t sur les b\u00e9n\u00e9fices", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts dus \u00e0 l'\u00e9tranger", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Imp\u00f4ts dus en France", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Imp\u00f4ts sur les b\u00e9n\u00e9fices"
+         }
+        ], 
+        "name": "DOTATIONS AUX PROVISIONS", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cong\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Primes et gratifications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Avantages en nature", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de pr\u00e9avis, de licenciement et de recherche d'embauche", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Suppl\u00e9ment familial", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de maladie vers\u00e9es aux travailleurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des dettes commerciales", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des dettes diverses", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Autres r\u00e9mun\u00e9rations directes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des dettes rattach\u00e9es \u00e0 des participations", 
+              "root_type": "Expense"
+             }, 
+             {
+              "name": "Int\u00e9r\u00eats des emprunts et dettes assimil\u00e9es", 
+              "root_type": "Expense"
+             }
+            ], 
+            "name": "Appointements salaires et commissions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DIRECTES VERS\u00c9ES AU PERSONNEL NATIONAL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges sociales sur r\u00e9mun\u00e9ration du personnel non national", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Charges sociales sur r\u00e9mun\u00e9ration du personnel national", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "CHARGES SOCIALES", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Avantages en nature", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Suppl\u00e9ment familial", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de maladie vers\u00e9es aux travailleurs", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cong\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Primes et gratifications", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Appointements salaires et commissions", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres r\u00e9mun\u00e9rations directes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de pr\u00e9avis, de licenciement et de recherche d'embauche", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS DIRECTES VERS\u00c9ES AU PERSONNEL NON NATIONAL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Indemnit\u00e9s d'expatriation", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Autres indemnit\u00e9s et avantages divers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de logement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Indemnit\u00e9s de repr\u00e9sentation", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "INDEMNIT\u00c9S FORFAITAIRES VERS\u00c9ES AU PERSONNEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cheltuieli din diferente de curs valutar", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Personnel int\u00e9rimaire", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Personnel d\u00e9tach\u00e9 ou pr\u00eat\u00e9 \u00e0 l\u2019entreprise", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATION TRANSF\u00c9R\u00c9E DE PERSONNEL EXT\u00c9RIEUR", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Charges sociales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "R\u00e9mun\u00e9ration du travail de l'exploitant", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "R\u00c9MUN\u00c9RATIONS ET CHARGES SOCIALES DE L'EXPLOITANT INDIVIDUEL", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "M\u00e9decine du travail et pharmacie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux Syndicats et Comit\u00e9s d'entreprise, d'\u00e9tablissement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux autres oeuvres sociales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Versements aux Comit\u00e9s d'hygi\u00e8ne et de s\u00e9curit\u00e9", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "AUTRES CHARGES SOCIALES", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "CHARGES DE PERSONNEL", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Comptes de charges"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Transferts de charges financi\u00e8res", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE PROVISIONS FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations corporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour grosses r\u00e9parations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour d\u00e9pr\u00e9ciation des immobilisations incorporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "pour risques et charges", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE PROVISIONS D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REPRISES D'AMORTISSEMENTS", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "REPRISES DE PROVISIONS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Reprises sur provisions exceptionnelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises pour d\u00e9pr\u00e9ciations exceptionnelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur provisions r\u00e9glement\u00e9es (stocks) ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur autres provisions r\u00e9glement\u00e9es ", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Amortissements d\u00e9rogatoires", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Plus-values r\u00e9investies", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Provision sp\u00e9ciale de r\u00e9\u00e9valuation", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur provisions r\u00e9glement\u00e9es (immobilisations)"
+           }
+          ], 
+          "name": "TRANSFERTS DE CHARGES FINANCIERES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Venituri financiare din ajustari pentru pierderea de valoare a imobilizarilor financiare", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Valeurs mobili\u00e8res de placement", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations financi\u00e8res", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des \u00e9l\u00e9ments financiers"
+           }, 
+           {
+            "name": "Venituri financiare din ajustari pentru pierderea de valoare a activelor circulante", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Reprises sur provisions financiers", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Venituri financiare din ajustari pentru pierdere de valoare"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Venituri din ajustari pentru deprecierea activelor circulante ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din provizioane", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Cr\u00e9ances", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Stocks et en-cours", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des actifs circulants"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur d\u00e9pr\u00e9ciations des immobilisations corporelles et incorporelles"
+           }, 
+           {
+            "name": "Venituri din fondul comercial negativ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din ajustari pentru deprecierea imobilizarilor", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Immobilisations corporelles", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Immobilisations incorporelles", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Reprises sur amortissements des immobilisations incorporelles et corporelles "
+           }
+          ], 
+          "name": "TRANSFERTS DE CHARGES D'EXPLOITATION", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "TRANSFERTS DE CHARGES", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "GAINS SUR CESSIONS DE TITRES DE PLACEMENT", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "ESCOMPTES OBTENUS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REVENUS DE TITRES DE PLACEMENT", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur instruments de tr\u00e9sorerie", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonis provenant du rachat par l'entreprise d'actions et d'obligations \u00e9mises par elle-m\u00eame", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur op\u00e9rations financi\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur rentes viag\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits exceptionnels divers", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "GAINS SUR RISQUES FINANCIERS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "sur titres de placement", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "sur risques financiers", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "autres charges provisionn\u00e9es financi\u00e8res", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE CHARGES PROVISIONN\u00c9ES FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "REVENUS DE PARTICIPATIONS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits exceptionnels sur op\u00e9rations de gestion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Rentr\u00e9es sur cr\u00e9ances amorties", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "D\u00e9gr\u00e8vements d'imp\u00f4ts autres qu'imp\u00f4ts sur les b\u00e9n\u00e9fices", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "D\u00e9dits et p\u00e9nalit\u00e9s per\u00e7us sur achats et sur ventes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Lib\u00e9ralit\u00e9s re\u00e7ues", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Subventions d'\u00e9quilibre", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "INT\u00c9R\u00caTS DE PR\u00caTS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "GAINS DE CHANGE", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisations incorporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Immobilisations corporelles", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Immobilisations financi\u00e8res", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Autres \u00e9l\u00e9ments d'actif", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Produits des cessions d'\u00e9l\u00e9ments d'actif"
+         }
+        ], 
+        "name": "REVENUS FINANCIERS ET PRODUITS ASSIMIL\u00c9S", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Produits des cessions des immobilisations des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations corporelles"
+           }, 
+           {
+            "name": "Droits d'auteur et de reproduction", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits des cessions des immobilisations financi\u00e8res (droits de propri\u00e9t\u00e9)"
+           }, 
+           {
+            "name": "Redevances pour concessions, brevets, licences, marques, proc\u00e9d\u00e9s, logiciels ", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Produits des cessions d'immobilisations"
+         }, 
+         {
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR EX\u00c9CUTION PARTIELLE DE CONTRATS PLURIEXERCICES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Quote-part de b\u00e9n\u00e9fice attribu\u00e9e (comptabilit\u00e9 des associ\u00e9s non-g\u00e9rants)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Quote-part de perte transf\u00e9r\u00e9e (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Quotes-parts de r\u00e9sultats sur op\u00e9rations faites en commun"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "P\u00e9nalit\u00e9s re\u00e7ues sur march\u00e9s"
+             }, 
+             {
+              "name": "D\u00e9dits re\u00e7us"
+             }
+            ], 
+            "name": "Jetons de pr\u00e9sence et autres r\u00e9mun\u00e9rations d'administrateurs", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Indemnit\u00e9s d\u2019assurances re\u00e7ues", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Lib\u00e9ralit\u00e9s"
+             }, 
+             {
+              "name": "Lots"
+             }, 
+             {
+              "name": "Dons"
+             }
+            ], 
+            "name": "Dons, lib\u00e9ralit\u00e9s et lots re\u00e7us"
+           }, 
+           {
+            "name": "Alte venituri din exploatare", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din vanzarea activelor si alte operatii de capital", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Venituri din subventii pentru investitii", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Rentr\u00e9es sur cr\u00e9ances sold\u00e9es"
+           }
+          ], 
+          "name": "PRODUITS DIVERS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'\u00e9quilibre re\u00e7ues des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Subventions d'\u00e9quilibre re\u00e7ues de l'exercice"
+           }
+          ], 
+          "name": "Subventions d'\u00e9quilibre"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur subventions d'investissement de l'exercice"
+           }, 
+           {
+            "name": "Reprises sur subventions d'investissement des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Reprise sur subventions d'investissements"
+         }, 
+         {
+          "name": "PRODUITS DES CESSIONS COURANTES D'IMMOBILISATIONS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Reprises sur plus-values en instance d'imposition"
+             }, 
+             {
+              "name": "Reprises sur amortissements d\u00e9rogatoires"
+             }, 
+             {
+              "name": "Reprises sur provisions pour acquisition et construction de logements"
+             }, 
+             {
+              "name": "Reprises sur provisions pour reconstitution de gisements"
+             }, 
+             {
+              "name": "Reprises sur provisions pour investissements"
+             }
+            ], 
+            "name": "sur cr\u00e9ances", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reprises sur provisions pour risques et charges durables"
+             }, 
+             {
+              "name": "Reprises sur provisions pour risques et charges momentan\u00e9s"
+             }
+            ], 
+            "name": "Reprises non courantes sur provisions pour risques et charges"
+           }, 
+           {
+            "name": "sur autres charges provisionn\u00e9es", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R,N,C sur provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+             }, 
+             {
+              "name": "R,N,C sur provisions pour d\u00e9pr\u00e9ciation de l'actif immobilis\u00e9"
+             }
+            ], 
+            "name": "Reprises non courantes sur provisions pour d\u00e9pr\u00e9ciation"
+           }, 
+           {
+            "name": "Transferts de charges non courantes"
+           }, 
+           {
+            "name": "sur stocks", 
+            "root_type": "Income"
+           }, 
+           {
+            "children": [
+             {
+              "name": "R,A,E des immobilisations en non valeur"
+             }, 
+             {
+              "name": "R,A,E des immobilisations incorporelles"
+             }, 
+             {
+              "name": "R,A,E des immobilisations corporelles"
+             }
+            ], 
+            "name": "sur risques \u00e0 court terme", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "REPRISES DE CHARGES PROVISIONN\u00c9ES D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "B\u00e9n\u00e9fices attribu\u00e9s par transfert (comptabilit\u00e9 des associ\u00e9s non g\u00e9rants)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Quote-part transf\u00e9r\u00e9e de pertes (comptabilit\u00e9 du g\u00e9rant)", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "QUOTE-PART DE R\u00c9SULTAT SUR OP\u00c9RATIONS FAITES EN COMMUN", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "AUTRES PRODUITS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "IMMOBILISATIONS INCORPORELLES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "IMMOBILISATIONS CORPORELLES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "IMMOBILISATIONS FINANCI\u00c8RES", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "PRODUCTION IMMOBILIS\u00c9E", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "VARIATIONS DES STOCKS DE PRODUITS FINIS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Gains de change des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Gains de change propres \u00e0\u00a0 l'exercice"
+           }
+          ], 
+          "name": "Gains de change"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Int\u00e9r\u00eats des pr\u00eats"
+             }, 
+             {
+              "name": "Revenus des autres cr\u00e9ances financi\u00e8res"
+             }
+            ], 
+            "name": "Int\u00e9r\u00eats et produits assimil\u00e9s"
+           }, 
+           {
+            "name": "Int\u00e9r\u00eats et autres produits financiers des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Revenus des cr\u00e9ances rattach\u00e9es \u00e0\u00a0 des participations"
+           }, 
+           {
+            "name": "Escomptes obtenus"
+           }, 
+           {
+            "name": "Produits nets sur cessions de titres et valeurs de placement"
+           }, 
+           {
+            "name": "Revenus des titres et valeurs de placement"
+           }
+          ], 
+          "name": "Int\u00e9r\u00eats et autres produits financiers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur dotations financi\u00e8res des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des immobilisations financi\u00e8res"
+           }, 
+           {
+            "name": "Reprises sur provisions pour risques et charges financi\u00e8res"
+           }, 
+           {
+            "name": "Reprises sur amortissements des primes de remboursement des obligations"
+           }, 
+           {
+            "name": "Reprise sur provisions pour d\u00e9pr\u00e9ciation des titres et valeurs de placement"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des comptes de tr\u00e9sorerie"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Transfert - Pertes de change"
+             }, 
+             {
+              "name": "Transfert - Charges d'int\u00e9r\u00eats"
+             }, 
+             {
+              "name": "Transfert - Autres charges financi\u00e8res"
+             }
+            ], 
+            "name": "Transfert de charges financi\u00e8res"
+           }
+          ], 
+          "name": "Reprises financi\u00e8res, transferts de charges"
+         }, 
+         {
+          "children": [
+           {
+            "name": "\u00c9tudes en cours", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Prestations de services en cours", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES EN-COURS DE SERVICES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits interm\u00e9diaires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits r\u00e9siduels", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE PRODUITS INTERM\u00c9DIAIRES ET R\u00c9SIDUELS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Travaux en cours", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits en cours", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VARIATIONS DES STOCKS DE PRODUITS EN COURS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Produits des titres de participation et des autres titres immobilis\u00e9s des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Revenus des titres de participation"
+           }, 
+           {
+            "name": "Revenus des titres immobilis\u00e9s"
+           }
+          ], 
+          "name": "Produits des titres de participation et des autres titres immobilis\u00e9s"
+         }
+        ], 
+        "name": "VARIATIONS DES STOCKS DE BIENS ET DE SERVICES PRODUITS", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Bonis sur reprises et cessions d'emballages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Redevances pour brevets, logiciels, marques et droits similaires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Commissions et courtages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Locations", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Autres produits accessoires", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ports, emballages perdus et autres frais factur\u00e9s", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Mise \u00e0 disposition de personnel", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "PRODUITS ACCESSOIRES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "TRAVAUX FACTUR\u00c9S", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS FINIS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE MARCHANDISES", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres produits d'activit\u00e9s annexes (cessions d'approvisionnements...)", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Commissions et courtages", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Produits des services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Locations diverses", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Mise \u00e0 disposition de personnel factur\u00e9e ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Ports et frais accessoires factur\u00e9s", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonifications obtenues des clients et primes sur ventes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Bonis sur reprises d'emballages consign\u00e9s", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Venituri din activitati diverse", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS INTERM\u00c9DIAIRES", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Venituri din vanzarea marfurilor", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "- sur ventes de produits interm\u00e9diaires ", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur produits des activit\u00e9s annexes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur ventes de produits finis", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur ventes de marchandises", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur prestations de services", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur \u00e9tudes", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "- sur travaux", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Reduceri comerciale acordate", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "SERVICES VENDUS", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "aux entreprises du groupe hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "hors R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "aux entreprises du groupe dans la R\u00e9gion", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "dans la R\u00e9gion", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "VENTES DE PRODUITS R\u00c9SIDUELS", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes de marchandises"
+         }
+        ], 
+        "name": "VENTES", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Ventes de biens et services produits des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventes de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Ventes de produits finis"
+             }
+            ], 
+            "name": "Ventes de biens produits \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ports et frais accessoires factur\u00e9s"
+             }, 
+             {
+              "name": "Autres ventes et produits accessoires"
+             }, 
+             {
+              "name": "Bonis sur reprises d'emballages consign\u00e9s"
+             }, 
+             {
+              "name": "Locations divers es re\u00e7ues"
+             }, 
+             {
+              "name": "Produits de services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel"
+             }, 
+             {
+              "name": "Commissions et courtages re\u00e7us"
+             }
+            ], 
+            "name": "Ventes de produits accessoires"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations de services"
+             }, 
+             {
+              "name": "Travaux"
+             }, 
+             {
+              "name": "Etudes"
+             }
+            ], 
+            "name": "Ventes de services produits \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Prestations de services"
+             }, 
+             {
+              "name": "Travaux"
+             }, 
+             {
+              "name": "Etudes"
+             }
+            ], 
+            "name": "Ventes de services produits au Maroc"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Rabais, remises et ristournes accord\u00e9s sur ventes de B et S produits des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes au Maroc des biens produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes au Maroc des services produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes \u00e0\u00a0 l'\u00e9tranger des biens produits"
+             }, 
+             {
+              "name": "R,R,R accord\u00e9es sur ventes \u00e0\u00a0 l'\u00e9tranger des services produits"
+             }
+            ], 
+            "name": "Rabais, remises et ristournes accord\u00e9s par l'entreprise"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Ventes de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Ventes de produits finis"
+             }, 
+             {
+              "name": "Ventes de produits r\u00e9siduels"
+             }
+            ], 
+            "name": "Ventes de biens produits au Maroc"
+           }, 
+           {
+            "name": "Redevances pour brevets, marques, droits et valeurs similaires"
+           }
+          ], 
+          "name": "SUR PRODUITS \u00c0 L'IMPORTATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Immobilisation en non valeurs produite"
+           }, 
+           {
+            "name": "Immobilisations corporelles produites"
+           }, 
+           {
+            "name": "Immobilisations incorporelles produites"
+           }, 
+           {
+            "name": "Immobilisations produites des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Immobilisations produites par l'entreprise pour elle m\u00eame"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Subventions d'exploitation re\u00e7ues des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Subventions d'exploitations re\u00e7ues de l'exercice"
+           }
+          ], 
+          "name": "Subventions d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Profits sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Vers\u00e9es par l'\u00c9tat et les collectivit\u00e9s publiques", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Vers\u00e9es par des tiers", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Vers\u00e9es par les organismes internationaux", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Transfert de pertes sur op\u00e9rations faites en commun"
+           }, 
+           {
+            "name": "Autres produits d'exploitation des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "AUTRES SUBVENTIONS D'EXPLOITATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation de l'actif circulant"
+           }, 
+           {
+            "children": [
+             {
+              "name": "T,C,E - Autres charges d'exploitation"
+             }, 
+             {
+              "name": "T,C,E - Achats consomm\u00e9s de mati\u00e8res et fournitures"
+             }, 
+             {
+              "name": "T,C,E-Autres charges externes"
+             }, 
+             {
+              "name": "T,C,E - Achats de marchandises"
+             }, 
+             {
+              "name": "T,C,E - Charges de personnel"
+             }, 
+             {
+              "name": "T,C,E - Imp\u00f4ts et taxes"
+             }
+            ], 
+            "name": "Transferts des charges d'exploitation"
+           }, 
+           {
+            "name": "Reprises sur provisions pour risques et charges"
+           }, 
+           {
+            "name": "Reprises sur amortissements des immobilisations incorporelles"
+           }, 
+           {
+            "name": "Reprises sur amortissements de l'immobilisation en non valeurs"
+           }, 
+           {
+            "name": "Reprises sur provisions pour d\u00e9pr\u00e9ciation des immobilisations"
+           }, 
+           {
+            "name": "Reprises sur amortissements des immobilisations corporelles"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Reprises sur amortissements des exercices ant\u00e9rieurs"
+             }, 
+             {
+              "name": "Reprises sur provisions des exercices ant\u00e9rieurs"
+             }
+            ], 
+            "name": "Reprises sur amortissements et provisions des exercices ant\u00e9rieurs"
+           }
+          ], 
+          "name": "Reprise d'exploitation, transferts de charges"
+         }, 
+         {
+          "children": [
+           {
+            "children": [
+             {
+              "name": "Produits en cours", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Travaux en cours", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Variation des en-cours de production de biens"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks d'\u00e9tudes en cours"
+             }, 
+             {
+              "name": "Variation des stocks de prestations en cours"
+             }, 
+             {
+              "name": "Prestations de services en cours", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Variation des stocks de travaux en cours"
+             }
+            ], 
+            "name": "Variation des stocks de services en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Produits interm\u00e9diaires ", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produits finis", 
+              "root_type": "Income"
+             }, 
+             {
+              "name": "Produits r\u00e9siduels", 
+              "root_type": "Income"
+             }
+            ], 
+            "name": "Variation des stocks de produits"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks de produits interm\u00e9diaires en cours"
+             }, 
+             {
+              "name": "Variation des stocks de biens produits en cours"
+             }, 
+             {
+              "name": "Variation des stocks de produits r\u00e9siduels en cours"
+             }
+            ], 
+            "name": "Variation des stocks de produits en cours"
+           }, 
+           {
+            "children": [
+             {
+              "name": "Variation des stocks de produits r\u00e9siduels"
+             }, 
+             {
+              "name": "Variation des stocks de produits interm\u00e9diaires"
+             }, 
+             {
+              "name": "Variation des stocks de produits finis"
+             }
+            ], 
+            "name": "Variation des stocks de biens produits"
+           }
+          ], 
+          "name": "SUR PRODUITS DE P\u00c9R\u00c9QUATION", 
+          "root_type": "Income"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Ventes de marchandises \u00e0\u00a0 l'\u00e9tranger"
+           }, 
+           {
+            "name": "Ventes de marchandises des exercices ant\u00e9rieurs"
+           }, 
+           {
+            "name": "Ventes de marchandises au Maroc"
+           }, 
+           {
+            "name": "Rabais, remises et ristournes accord\u00e9s par l'entreprise"
+           }
+          ], 
+          "name": "SUR PRODUITS \u00c0 L'EXPORTATION", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "SUBVENTIONS D'EXPLOITATION", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "Comptes de produits"
+     }
+    ], 
+    "name": "Comptes de gestion"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dits de tr\u00e9sorerie"
+           }
+          ], 
+          "name": "Cr\u00e9dits de tr\u00e9sorerie"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Banques (solde cr\u00e9diteur)"
+           }, 
+           {
+            "name": "Autres \u00e9tablissements financiers et assimil\u00e9s (soldes cr\u00e9diteurs)"
+           }
+          ], 
+          "name": "Banques (solde cr\u00e9diteur)"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9dits d'escompte"
+           }
+          ], 
+          "name": "Cr\u00e9dits d'escompte"
+         }
+        ], 
+        "name": "TRESORERIE - PASSIF"
+       }
+      ], 
+      "name": "COMPTES DE TRESORERIE"
+     }, 
+     {
+      "name": "COMPTES D'ACTIF IMMOBILISE"
+     }, 
+     {
+      "name": "COMPTES D'ACTIF CIRCULANT (HORS TRESORERIE)"
+     }, 
+     {
+      "name": "COMPTES DU PASSIF CIRCULANT (HORS TRESORERIE)"
+     }, 
+     {
+      "name": "COMPTES DE FINANCEMENT PERMANENT"
+     }
+    ], 
+    "name": "COMPTES DE BILAN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "PERTES SUR CR\u00c9ANCES H.A.O."
+       }, 
+       {
+        "name": "DONS ET LIB\u00c9RALIT\u00c9S ACCORD\u00c9S"
+       }, 
+       {
+        "name": "CHARGES PROVISIONN\u00c9ES H.A.O."
+       }, 
+       {
+        "name": "ABANDONS DE CR\u00c9ANCES CONSENTIS"
+       }, 
+       {
+        "name": "CHARGES H.A.O. CONSTAT\u00c9ES"
+       }
+      ], 
+      "name": "CHARGES HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMMOBILISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }, 
+       {
+        "name": "R\u00e9sultat d'exploitation"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Insuffisance brute d'exploitation (d\u00e9biteur)"
+         }, 
+         {
+          "name": "Exc\u00e9dent brut d'exploitation (cr\u00e9diteur)"
+         }
+        ], 
+        "name": "Exc\u00e9dent brut d'exploitation"
+       }, 
+       {
+        "name": "Valeur ajout\u00e9e"
+       }, 
+       {
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }
+      ], 
+      "name": "VALEURS COMPTABLES DES CESSIONS D'IMMOBILISATIONS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "REPRISES DE SUBVENTIONS D\u2019INVESTISSEMENT"
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS POUR D\u00c9PR\u00c9CIATION H.A.O."
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS R\u00c9GLEMENT\u00c9ES"
+       }, 
+       {
+        "name": "REPRISES D\u2019AMORTISSEMENTS"
+       }, 
+       {
+        "name": "AUTRES REPRISES H.A.O."
+       }, 
+       {
+        "name": "REPRISES DE PROVISIONS POUR RISQUES ET CHARGES H.A.O."
+       }
+      ], 
+      "name": "REPRISES HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DOTATIONS AUX PROVISIONS POUR RISQUES ET CHARGES H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX AMORTISSEMENTS H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX PROVISIONS R\u00c9GLEMENT\u00c9ES"
+       }, 
+       {
+        "name": "AUTRES DOTATIONS H.A.O."
+       }, 
+       {
+        "name": "DOTATIONS AUX PROVISIONS POUR D\u00c9PR\u00c9CIATION H.A.O."
+       }
+      ], 
+      "name": "DOTATIONS HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "DONS ET LIB\u00c9RALIT\u00c9S OBTENUS"
+       }, 
+       {
+        "name": "ABANDONS DE CR\u00c9ANCES OBTENUS"
+       }, 
+       {
+        "name": "TRANSFERTS DE CHARGES H.A.O"
+       }, 
+       {
+        "name": "REPRISES DES CHARGES PROVISIONN\u00c9ES H.A.O."
+       }, 
+       {
+        "name": "PRODUITS H.A.O CONSTAT\u00c9S"
+       }
+      ], 
+      "name": "PRODUITS HORS ACTIVIT\u00c9S ORDINAIRES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "RAPPEL D'IMP\u00d4TS SUR R\u00c9SULTATS ANT\u00c9RIEURS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "D\u00e9gr\u00e8vements"
+         }, 
+         {
+          "name": "Annulations pour pertes r\u00e9troactives"
+         }
+        ], 
+        "name": "D\u00c9GR\u00c8VEMENTS ET ANNULATIONS D\u2019IMP\u00d4TS SUR R\u00c9SULTATS ANT\u00c9RIEURS"
+       }, 
+       {
+        "name": "IMP\u00d4T MINIMUM FORFAITAIRE (I.M.F.)"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Activit\u00e9s exerc\u00e9es dans l'\u00c9tat"
+         }, 
+         {
+          "name": "Activit\u00e9s exerc\u00e9es hors R\u00e9gion"
+         }, 
+         {
+          "name": "Activit\u00e9s exerc\u00e9es dans les autres \u00c9tats de la R\u00e9gion"
+         }
+        ], 
+        "name": "IMP\u00d4TS SUR LES B\u00c9N\u00c9FICES DE L'EXERCICE"
+       }
+      ], 
+      "name": "IMP\u00d4TS SUR LE R\u00c9SULTAT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "COLLECTIVIT\u00c9S PUBLIQUES"
+       }, 
+       {
+        "name": "AUTRES"
+       }, 
+       {
+        "name": "\u00c9TAT"
+       }, 
+       {
+        "name": "GROUPE"
+       }
+      ], 
+      "name": "SUBVENTIONS D'\u00c9QUILIBRE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "PARTICIPATION L\u00c9GALE AUX B\u00c9N\u00c9FICES"
+       }, 
+       {
+        "name": "AUTRES PARTICIPATIONS"
+       }, 
+       {
+        "name": "PARTICIPATION CONTRACTUELLE AUX B\u00c9N\u00c9FICES"
+       }
+      ], 
+      "name": "PARTICIPATION DES TRAVAILLEURS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "IMMOBILISATIONS FINANCI\u00c8RES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS CORPORELLES"
+       }, 
+       {
+        "name": "IMMOBILISATIONS INCORPORELLES"
+       }
+      ], 
+      "name": "PRODUITS DES CESSIONS D'IMMOBILISATIONS"
+     }
+    ], 
+    "name": "Comptes sp\u00e9ciaux"
+   }
+  ], 
+  "name": "Plan Comptable SYSCOA"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/th_chart.json b/setup/doctype/company/charts/th_chart.json
new file mode 100644
index 0000000..7b003c1
--- /dev/null
+++ b/setup/doctype/company/charts/th_chart.json
@@ -0,0 +1,4768 @@
+{
+ "name": "Thailand - Chart of Accounts", 
+ "root": {
+  "children": [
+   {
+    "name": "INDIRECTE KOSTEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Kantoorbenodigdheden"
+     }, 
+     {
+      "name": "Emballage"
+     }, 
+     {
+      "name": "Hulpstoffen 1"
+     }, 
+     {
+      "name": "Grondstoffen 2"
+     }, 
+     {
+      "name": "Goederen onderweg"
+     }, 
+     {
+      "name": "Goederen 1"
+     }, 
+     {
+      "name": "Hulpstoffen 2"
+     }, 
+     {
+      "name": "Gereed product 1"
+     }, 
+     {
+      "name": "Gereed product 2"
+     }, 
+     {
+      "name": "Onderhanden werk"
+     }, 
+     {
+      "name": "Zegels"
+     }, 
+     {
+      "name": "Goederen 2"
+     }, 
+     {
+      "name": "Goederen in consignatie"
+     }, 
+     {
+      "name": "Verpakkingsmateriaal"
+     }, 
+     {
+      "name": "Grondstoffen 1"
+     }, 
+     {
+      "name": "Halffabrikaten 2"
+     }, 
+     {
+      "name": "Halffabrikaten 1"
+     }
+    ], 
+    "name": "VOORRAAD GRONDSTOFFEN, HULPMATERIALEN EN HANDELSGOEDEREN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Btw te vorderen overig", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie WIR", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Af te dragen Btw-verlegd", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw oude jaren", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw te vorderen hoog", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen laag", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige te betalen posten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vooruit ontvangen bedr.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw-afdracht", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Energiekosten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Accountantskosten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Telefoon/telefax", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Termijnen onderh. werk", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Rekening-courant inkoopvereniging", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Loonheffing", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Afdracht loonheffing", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vennootschapsbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw te vorderen laag", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen hoog", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Te vorderen Btw-verlegd", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Btw af te dragen overig", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Investeringsaftrek", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Dividendbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Sociale lasten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pensioenpremies", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiegeld", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiedagen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vakantiezegels", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Rente", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Dividend", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Tanti\u00e8mes", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "KORTLOPENDE SCHULDEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Vooruitbetaalde kosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Te ontvangen ziekengeld", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Overige vorderingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Dubieuze debiteuren", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Rekening-courant directie", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Voorziening dubieuze debiteuren", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Voorschotten personeel", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "VORDERINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "BIZNER bank"
+       }, 
+       {
+        "name": "Kleine kas"
+       }, 
+       {
+        "name": "ABN-AMRO bank"
+       }, 
+       {
+        "name": "Bankbetaalkaarten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Effecten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kas  valuta"
+       }, 
+       {
+        "name": "Kruisposten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kas"
+       }, 
+       {
+        "name": "RABO bank"
+       }, 
+       {
+        "name": "Girobetaalkaarten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Postbank"
+       }
+      ], 
+      "name": "LIQUIDE MIDDELEN"
+     }
+    ], 
+    "name": "FINANCIELE REKENINGEN, KORTLOPENDE VORDERINGEN EN SCHULDEN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Afschrijving Vrachtauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanhangwagens", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Personenauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Heftrucks", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanhangwagens", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Vrachtauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Personenauto's", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Rijwielen en bromfietsen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Rijwielen en bromfietsen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Heftrucks", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "VERVOERMIDDELEN"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Aanschafwaarde Gereedschappen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Fabrieksinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Bedrijfsinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Magazijninventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Gereedschappen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantine-inventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Fabrieksinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Magazijninventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantoorinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Kantoormachines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantoormachines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantine-inventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Kantoorinventaris", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Bedrijfsinventaris", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INVENTARIS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Afschrijving Machines 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aanschafwaarde Machines 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Afschrijving Machines 1", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "MACHINES"
+       }
+      ], 
+      "name": "MACHINES EN INVENTARIS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Financieringskosten huurkoop", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Waarborgsommen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Hypotheken u/g 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 1", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 3", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 2", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 5", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Leningen u/g 4", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Vorderingen op deelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Financieringskosten", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "LANGLOPENDE VORDERINGEN"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Meerderheidsdeelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Minderheidsdeelnemingen", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Aandeel inkoopcombinatie", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "FINANCIELE VASTE ACTIVA"
+       }
+      ], 
+      "name": "FINANCIELE VASTE ACTIVA EN LANGLOPENDE VORDERINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Hypotheek o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Lease-verplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Huurkoopverplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 4", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheek o/g 3", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "AFLOSSINGEN"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rekening-courant directie", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 3", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Lease-verplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Huurkoopverplichtingen", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Hypotheken o/g 4", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 5", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 2", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 1", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 3", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Leningen o/g 4", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "LANGLOPENDE SCHULDEN"
+       }
+      ], 
+      "name": "LANGLOPENDE SCHULDEN EN AFLOSSINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Afschrijving Ontwikkelingskosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Octrooien", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Auteursrechten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Vergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Licenties", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Tonnagevergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Drankvergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Vergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Auteursrechten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Drankvergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Tonnagevergunningen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Octrooien", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Ontwikkelingskosten", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMATERIELE ACTIVA"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Aanschafwaarde Gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Verbouwingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Landerijen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Grondverbetering", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Pachtersinvesteringen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Bedrijfsgebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Woon-winkelhuis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Woon-winkelhuis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Winkels", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Parkeerplaats", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Grondverbetering", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Ondergrond gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Bedrijfsgebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Aanloopkosten", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Gebouwen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Afschrijving Winkels", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Pachtersinvesteringen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Parkeerplaats", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Verbouwingen", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Aanschafwaarde Aanloopkosten", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "ONROERENDE GOEDEREN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige persoonlijke verplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Giften", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Buitengewone lasten", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Inkomstenbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vermogensbelasting", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Wettelijke reserves", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige reserves", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Aandelenkapitaal", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Overige priv\u00e9-uitgaven", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Huishoudgeld", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie lijfrenteverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie volksverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Priv\u00e9-opnamen/stortingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Kapitaal", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "WAO en ziekengeldverzekeringen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Priv\u00e9-gebruik", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Premie volksverzekeringen", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "EIGEN VERMOGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pens.voorz. eigen beheer", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Stamrechtverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Backservice pensioenverpl.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Pensioenverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Egalisatierekening WIR", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Vervangingsreserve", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Garantieverplichtingen", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Egalisatieres. grootonderh.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Assurantie eigen risico", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Latente belastingverpl.", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Voorziening deelnemingen", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "VOORZIENINGEN"
+     }
+    ], 
+    "name": "VASTE ACTIVA, EIGEN VERMOGEN, LANGLOPEND VREEMD VERMOGEN EN VOORZIENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Opbrengsten deelnemingen", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verlies verkoop deelnem.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Vpb bijzonder resultaat", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Winst", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Memoriaal"
+     }, 
+     {
+      "name": "Winst bij verkoop deelnem.", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Reorganisatiekosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Vpb normaal resultaat", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Voorz. Verlies deelnem.", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "OVERIGE RESULTATEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Income"
+     }
+    ], 
+    "name": "Income"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Tanti\u00e8mes de l'exercice"
+       }, 
+       {
+        "name": "Autres allocataires"
+       }, 
+       {
+        "name": "Dividendes et tanti\u00e8mes d'exercices ant\u00e9rieurs"
+       }, 
+       {
+        "name": "Dividendes de l'exercice"
+       }
+      ], 
+      "name": "DETTES DECOULANT DE L'AFFECTATION DES RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }, 
+       {
+        "name": "Compensation clients"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres entreprises avec lesquelles il existe un lien de participation"
+         }, 
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants de l'entreprise"
+         }
+        ], 
+        "name": "Effets \u00e0 recevoir sur entreprises apparent\u00e9es et administrateurs et g\u00e9rants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants d'entreprise"
+         }, 
+         {
+          "name": "Autres entreprises avec lesquelles il existe un lien de participation"
+         }
+        ], 
+        "name": "Clients, cr\u00e9ances courantes, entreprises apparent\u00e9es, administrateurs et g\u00e9rants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets \u00e0 l'escompte"
+         }, 
+         {
+          "name": "Effets \u00e0 l'encaissement"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir"
+         }
+        ], 
+        "name": "Effets \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ances r\u00e9sultant de livraisons de biens"
+         }, 
+         {
+          "name": "Rabais, remises, ristournes \u00e0 accorder et autres notes de cr\u00e9dit \u00e0 \u00e9tablir"
+         }
+        ], 
+        "name": "Clients"
+       }, 
+       {
+        "name": "Cr\u00e9ances douteuses"
+       }, 
+       {
+        "name": "Acomptes vers\u00e9s"
+       }, 
+       {
+        "name": "Clients : retenues sur garanties"
+       }, 
+       {
+        "name": "Produits \u00e0 recevoir"
+       }
+      ], 
+      "name": "CREANCES COMMERCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acomptes re\u00e7us d'autres tiers \u00e0 moins d'un an"
+       }, 
+       {
+        "name": "Participation du personnel \u00e0 payer"
+       }, 
+       {
+        "name": "Actionnaires - capital \u00e0 rembourser"
+       }, 
+       {
+        "name": "Obligations et coupons \u00e9chus"
+       }, 
+       {
+        "name": "Emballages et mat\u00e9riel consign\u00e9s"
+       }, 
+       {
+        "name": "Autres dettes diverses"
+       }, 
+       {
+        "name": "Cautionnements re\u00e7us en num\u00e9raires"
+       }
+      ], 
+      "name": "DETTES DIVERSES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Charges \u00e0 reporter"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Autres produits d'exploitation"
+           }, 
+           {
+            "name": "Commissions \u00e0 obtenir"
+           }, 
+           {
+            "name": "Ristournes, rabais \u00e0 obtenir"
+           }
+          ], 
+          "name": "Produits d'exploitation"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Int\u00e9r\u00eats courus et non \u00e9chus sur pr\u00eats et d\u00e9bits"
+           }, 
+           {
+            "name": "Autres produits financiers"
+           }
+          ], 
+          "name": "Produits financiers"
+         }
+        ], 
+        "name": "Produits acquis"
+       }, 
+       {
+        "name": "Charges \u00e0 imputer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Produits d'exploitation \u00e0 reporter"
+         }, 
+         {
+          "name": "Produits financiers \u00e0 reporter"
+         }
+        ], 
+        "name": "Produits \u00e0 reporter"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Compte de r\u00e9partition p\u00e9riodique des charges"
+         }, 
+         {
+          "name": "Compte d'attente"
+         }, 
+         {
+          "name": "Transferts d'exercice"
+         }
+        ], 
+        "name": "Comptes d'attente"
+       }
+      ], 
+      "name": "COMPTES DE REGULARISATION ET COMPTES D'ATTENTE"
+     }, 
+     {
+      "name": "ACOMPTES RECUS SUR COMMANDES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Acomptes re\u00e7us"
+       }, 
+       {
+        "name": "Factures \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Fournisseurs importation"
+           }, 
+           {
+            "name": "Fournisseurs CEE"
+           }, 
+           {
+            "name": "Fournisseurs belges"
+           }
+          ], 
+          "name": "Fournisseurs ordinaires"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Entreprises li\u00e9es"
+           }, 
+           {
+            "name": "Entreprises avec lesquelles il existe un lien de participation"
+           }
+          ], 
+          "name": "Entreprises apparent\u00e9es"
+         }
+        ], 
+        "name": "Effets \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes envers les coparticipants"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Fournisseurs CEE"
+           }, 
+           {
+            "name": "Fournisseurs importation"
+           }, 
+           {
+            "name": "Fournisseurs belges"
+           }
+          ], 
+          "name": "Fournisseurs ordinaires"
+         }, 
+         {
+          "name": "Fournisseurs - retenues de garanties"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Entreprises avec lesquelles il existe un lien de participation"
+           }
+          ], 
+          "name": "Entreprises apparent\u00e9es"
+         }
+        ], 
+        "name": "Fournisseurs"
+       }, 
+       {
+        "name": "Compensations fournisseurs"
+       }
+      ], 
+      "name": "DETTES COMMERCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "1er trimestre"
+         }, 
+         {
+          "name": "Arri\u00e9r\u00e9s"
+         }, 
+         {
+          "name": "3\u00e8me trimestre"
+         }, 
+         {
+          "name": "2\u00e8me trimestre"
+         }, 
+         {
+          "name": "4\u00e8me trimestre"
+         }
+        ], 
+        "name": "Office National de la S\u00e9curit\u00e9 Sociale"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Employ\u00e9s"
+         }, 
+         {
+          "name": "Ouvriers"
+         }, 
+         {
+          "name": "Administrateurs, g\u00e9rants et commissaires"
+         }, 
+         {
+          "name": "Direction"
+         }
+        ], 
+        "name": "R\u00e9mun\u00e9rations"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ouvriers"
+         }, 
+         {
+          "name": "Employ\u00e9s"
+         }, 
+         {
+          "name": "Direction"
+         }
+        ], 
+        "name": "P\u00e9cules de vacances"
+       }, 
+       {
+        "children": [
+         {
+          "name": "\u00e0 4507 Autres imp\u00f4ts en Belgique"
+         }, 
+         {
+          "name": "\u00e0 4504 Imp\u00f4ts sur le r\u00e9sultat"
+         }, 
+         {
+          "name": "Imp\u00f4ts \u00e0 l'\u00e9tranger"
+         }
+        ], 
+        "name": "Dettes fiscales estim\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "T.V.A. \u00e0 payer - Import"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer - Cocontractant"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer - Intra-communautaire"
+         }, 
+         {
+          "name": "T.V.A. \u00e0 payer"
+         }, 
+         {
+          "name": "Compte courant administration T.V.A."
+         }, 
+         {
+          "name": "Taxe d'\u00e9galisation due"
+         }
+        ], 
+        "name": "T.V.A. \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres imp\u00f4ts sur le r\u00e9sultat"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres imp\u00f4ts et taxes \u00e0 payer"
+           }, 
+           {
+            "name": "Imp\u00f4ts provinciaux \u00e0 payer"
+           }, 
+           {
+            "name": "Imp\u00f4ts communaux \u00e0 payer"
+           }, 
+           {
+            "name": "Pr\u00e9compte immobilier"
+           }
+          ], 
+          "name": "Autres imp\u00f4ts et taxes en Belgique"
+         }, 
+         {
+          "name": "Imp\u00f4ts et taxes \u00e0 l'\u00e9tranger"
+         }
+        ], 
+        "name": "Imp\u00f4ts et taxes \u00e0 payer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres pr\u00e9comptes retenus"
+         }, 
+         {
+          "name": "Pr\u00e9compte professionnel retenu sur r\u00e9mun\u00e9rations"
+         }, 
+         {
+          "name": "Pr\u00e9compte professionnel retenu sur tanti\u00e8mes"
+         }, 
+         {
+          "name": "Pr\u00e9compte mobilier retenu sur dividendes attribu\u00e9s"
+         }, 
+         {
+          "name": "Pr\u00e9compte mobilier retenu sur int\u00e9r\u00eats pay\u00e9s"
+         }
+        ], 
+        "name": "Pr\u00e9comptes retenus"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dettes et provisions sociales diverses"
+         }, 
+         {
+          "name": "Caisse d'assurances sociales pour travailleurs ind\u00e9pendants"
+         }, 
+         {
+          "name": "Oppositions sur r\u00e9mun\u00e9rations"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurance groupe "
+           }, 
+           {
+            "name": "Assurances individuelles"
+           }, 
+           {
+            "name": "Assurance loi"
+           }, 
+           {
+            "name": "Assurance salaire garanti "
+           }
+          ], 
+          "name": "Assurances relatives au personnel"
+         }, 
+         {
+          "name": "Provision pour gratifications de fin d'ann\u00e9e"
+         }, 
+         {
+          "name": "D\u00e9parts de personnel"
+         }
+        ], 
+        "name": "Autres dettes sociales"
+       }
+      ], 
+      "name": "DETTES FISCALES, SALARIALES ET SOCIALES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Non convertibles"
+         }, 
+         {
+          "name": "Convertibles"
+         }
+        ], 
+        "name": "Emprunts obligataires non subordonn\u00e9s"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Non convertibles"
+         }, 
+         {
+          "name": "Convertibles"
+         }
+        ], 
+        "name": "Emprunts subordonn\u00e9s"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9dits d'acceptation"
+         }, 
+         {
+          "name": "Promesses"
+         }, 
+         {
+          "name": "Dettes en compte"
+         }
+        ], 
+        "name": "Etablissements de cr\u00e9dit"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Financement de biens immobiliers"
+         }, 
+         {
+          "name": "Financement de biens mobiliers"
+         }
+        ], 
+        "name": "Dettes de location-financement et assimil\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Effets \u00e0 payer"
+         }, 
+         {
+          "name": "Fournisseurs"
+         }
+        ], 
+        "name": "Dettes commerciales"
+       }, 
+       {
+        "name": "Autres emprunts"
+       }, 
+       {
+        "name": "Cautionnements re\u00e7us en num\u00e9raires"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Entreprises avec lesquelles il existe un lien de participation"
+         }, 
+         {
+          "name": "Entreprises li\u00e9es"
+         }, 
+         {
+          "name": "Administrateurs, g\u00e9rants, associ\u00e9s"
+         }, 
+         {
+          "name": "Autres dettes"
+         }
+        ], 
+        "name": "Dettes diverses"
+       }
+      ], 
+      "name": "DETTES A PLUS D'UN AN ECHEANT DANS L'ANNEE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Etablissements de cr\u00e9dit. Cr\u00e9dits d'acceptation"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Promesses"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Dettes en compte courant"
+       }, 
+       {
+        "name": "Etablissements de cr\u00e9dit. Emprunts en compte \u00e0 terme fixe"
+       }, 
+       {
+        "name": "Autres emprunts"
+       }
+      ], 
+      "name": "DETTES FINANCIERES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Cautionnements vers\u00e9s en num\u00e9raires"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Actionnaires d\u00e9faillants"
+         }, 
+         {
+          "name": "Appels de fonds"
+         }
+        ], 
+        "name": "Capital appel\u00e9, non vers\u00e9"
+       }, 
+       {
+        "children": [
+         {
+          "name": "T.V.A D\u00e9ductible"
+         }, 
+         {
+          "name": "Compte courant administration T.V.A."
+         }, 
+         {
+          "name": "Taxe d'\u00e9galisation due"
+         }
+        ], 
+        "name": "T.V.A. \u00e0 r\u00e9cup\u00e9rer"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imp\u00f4ts \u00e9trangers"
+         }, 
+         {
+          "name": "\u00e0 4127 Autres imp\u00f4ts belges"
+         }, 
+         {
+          "name": "\u00e0 4124 Imp\u00f4ts belges sur le r\u00e9sultat"
+         }
+        ], 
+        "name": "Imp\u00f4ts et versements fiscaux \u00e0 r\u00e9cup\u00e9rer"
+       }, 
+       {
+        "name": "Produits \u00e0 recevoir"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Rabais, ristournes, remises \u00e0 obtenir et autres avoirs non encore re\u00e7us"
+         }, 
+         {
+          "name": "Compte courant des administrateurs et g\u00e9rants"
+         }, 
+         {
+          "name": "Compte courant des associ\u00e9s en S.P.R.L."
+         }, 
+         {
+          "name": "Avances et pr\u00eats au personnel"
+         }, 
+         {
+          "name": "Associ\u00e9s"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres cr\u00e9ances"
+           }, 
+           {
+            "name": "Subsides \u00e0 recevoir"
+           }
+          ], 
+          "name": "Etat et \u00e9tablissements publics"
+         }, 
+         {
+          "name": "Emballages et mat\u00e9riel \u00e0 rendre"
+         }, 
+         {
+          "name": "Cr\u00e9ances sur soci\u00e9t\u00e9s apparent\u00e9es"
+         }
+        ], 
+        "name": "Cr\u00e9ances diverses"
+       }, 
+       {
+        "name": "Cr\u00e9ances douteuses"
+       }
+      ], 
+      "name": "AUTRES CREANCES"
+     }
+    ], 
+    "name": "CLASSE 4. CREANCES ET DETTES A UN AN AU PLUS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Perte \u00e0 reporter", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Pr\u00e9l\u00e8vement sur les r\u00e9serves", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Pr\u00e9l\u00e8vement sur le capital et les primes d'\u00e9mission", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "B\u00e9n\u00e9fice report\u00e9 de l'exercice pr\u00e9c\u00e9dent", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Intervention d'associ\u00e9s", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "AFFECTATION AUX RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9gularisations d'imp\u00f4ts estim\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "R\u00e9gularisations d'imp\u00f4ts dus ou vers\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Reprises de provisions fiscales", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat"
+       }
+      ], 
+      "name": "REGULARISATIONS D'IMPOTS ET REPRISES DE PROVISIONS FISCALES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reprises de provisions pour risques et charges exceptionnelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immobilisations financi\u00e8res", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Plus-values sur r\u00e9alisation d'actifs immobilis\u00e9s"
+       }, 
+       {
+        "name": "Reprises de r\u00e9ductions de valeur sur immobilisations financi\u00e8res", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Autres produits exceptionnels", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Reprises d'amortissements et de r\u00e9ductions de valeur"
+       }
+      ], 
+      "name": "PRODUITS EXCEPTIONNELS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Escomptes obtenus", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits des autres cr\u00e9ances", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ecarts de conversion des devises", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Diff\u00e9rences de change", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subsides en capital et en int\u00e9r\u00eats", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations d'actifs circulants", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits des actifs circulants", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "PRODUITS FINANCIERS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Locations diverses \u00e0 caract\u00e8re professionnel", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bonis sur reprises d'emballages consign\u00e9s", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Bonis sur travaux en associations momentan\u00e9es", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Produits divers"
+       }, 
+       {
+        "name": "Commissions et courtages", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Redevances pour brevets et licences", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Prestations de services", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Revenus des immeubles affect\u00e9s aux activit\u00e9s non professionnelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Subsides d'exploitation et montants compensatoires", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations courantes d'immobilisations corporelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Plus-values sur r\u00e9alisations de cr\u00e9ances commerciales", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Produits de services exploit\u00e9s dans l'int\u00e9r\u00eat du personnel", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "AUTRES PRODUITS D'EXPLOITATION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "En immobilisations corporelles", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En immobilisations en cours", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En frais d'\u00e9tablissement", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "En immobilisations incorporelles", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "PRODUCTION IMMOBILISEE"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Des produits finis", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Des en cours de fabrication", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Sur travaux en cours des associations momentan\u00e9es", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Sur commandes en cours d'ex\u00e9cution", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "B\u00e9n\u00e9fices port\u00e9s en compte sur commandes en cours"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Co\u00fbt des commandes en cours d'ex\u00e9cution", 
+            "root_type": "Income"
+           }, 
+           {
+            "name": "Co\u00fbt des travaux en cours des associations momentan\u00e9es", 
+            "root_type": "Income"
+           }
+          ], 
+          "name": "Commandes en cours - Co\u00fbt de revient"
+         }
+        ], 
+        "name": "Des commandes en cours d'ex\u00e9cution"
+       }, 
+       {
+        "name": "Des immeubles construits destin\u00e9s \u00e0 la vente", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "VARIATION DES STOCKS ET DES COMMANDES EN COURS D'EXECUTION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ventes d'emballages r\u00e9cup\u00e9rables", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes en Belgique", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de marchandises"
+       }, 
+       {
+        "name": "P\u00e9nalit\u00e9s et d\u00e9dits obtenus par l'entreprise", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de produits finis"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Ventes \u00e0 l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Ventes en Belgique", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Ventes de d\u00e9chets et rebuts"
+       }, 
+       {
+        "name": "Facturations des travaux en cours", 
+        "root_type": "Income"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Prestations de services dans les pays membres de la C.E.E.", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Prestations de services en vue de l'exportation", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Prestations de services en Belgique", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Prestations de services"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur prestations de services", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de produits finis", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de marchandises", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Sur ventes de d\u00e9chets et rebuts", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Mali sur travaux factur\u00e9s aux associations momentan\u00e9es", 
+          "root_type": "Income"
+         }
+        ], 
+        "name": "Remises, ristournes et rabais accord\u00e9s"
+       }
+      ], 
+      "name": "CHIFFRE D'AFFAIRES"
+     }
+    ], 
+    "name": "CLASSE 7. - PRODUITS"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Inkoopbonussen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toevoeging voorz. incour. handelsgoed.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU hoog", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen BTW verlegd", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU laag tarief", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoop import buiten EU laag", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Invoerkosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoopkosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen EU hoog tarief", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Betalingskort. crediteuren", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen overig", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Garantiekosten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen hoog", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toevoeging garantieverpl.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Tegenrekening inkoop", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Onttrekking uitgev.garantie", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Voorz. Incourourant grondst.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kostprijs omzet grondstoffen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Toev. Voorz. incour. grondst.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kosten inkoopvereniging", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Kostprijs omzet handelsgoederen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Voorz.incour. handelsgoed.", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkoopprovisie", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkomende vrachten", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Hulpmaterialen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Uitbesteed werk", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Priv\u00e9-gebruik goederen", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen laag", 
+      "root_type": "Expense"
+     }, 
+     {
+      "name": "Inkopen nul", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "VOORRAAD GEREED PRODUCT EN ONDERHANDEN WERK"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Brandstoffen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige vervoerskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud personenauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud vrachtauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Priv\u00e9-gebruik auto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Wegenbelasting", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "VERVOERSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige rentebaten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente hypotheek", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente leasecontracten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige rentelasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente lening o/g", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente lening u/g", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente bankkrediet", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rente huurkoopcontracten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "FINANCIERINGSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Vrachtauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Tonnagevergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Drankvergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Auteursrechten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Octrooien", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Goodwill", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoorinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoormachines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gebouwen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfsgebouwen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Woon-winkelhuis", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Winkels", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschappen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantine-inventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfsinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Magazijninventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Heftrucks", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aanhangwagens", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rijwielen en bromfietsen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vergunningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Licenties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aanloopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontwikkelingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Personenauto's", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pachtersinvestering", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Aankoopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Parkeerplaats", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Grondverbetering", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Voorraadverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Fabrieksinventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Verbouwingen", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AFSCHRIJVINGEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Betaalde schadevergoed.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Nadelige koersverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kosten omzetbelasting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Boekverlies vaste activa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "K.O. regeling OB", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kasverschillen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Boekwinst van vaste activa", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kosten loonbelasting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Naheffing bedrijfsver.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige baten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontvangen schadevergoed.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Voordelige koersverschil.", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "OVERIGE BATEN EN LASTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Reis en verblijfkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Representatiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kascorrecties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Exportkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Beurskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Websitekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Provisie", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Etalagekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Veilingkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Reclame", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Advertenties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Verpakkingsmateriaal", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige verkoopkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Afschrijving dubieuze deb.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Relatiegeschenken", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Uitgaande vrachten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "VERKOOPKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Juridische kosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bankkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige algemene kosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Advieskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toev. Ass. eigen risico", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Accountantskosten", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "ALGEMENE KOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Uitkering ziekengeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige uitkeringen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Loonwerk", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Thuiswerkers", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Managementvergoedingen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gratificaties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Wervingskosten personeel", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Opleidingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfskleding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Geschenken personeel", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toevoeging pensioenverpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sociale lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Tanti\u00e8mes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Provisie", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschapsgeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Reiskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Congressen, seminars en symposia", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Oprenting stamrechtverpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toev. Backservice pens.verpl.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Inhouding pensioenpremies", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pensioenpremies", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Inhouding sociale lasten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Belastingvrije uitkeringen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bedrijfskleding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantinekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Rijwielvergoeding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Autokostenvergoeding", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vergoeding studiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Bijzondere beloningen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Uitzendkrachten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige kostenverg.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige personeelskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vakantiebonnen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Vakantiegeld", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Lonen en salarissen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overhevelingstoeslag", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "PERSONEELSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Energiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Schoonmaakkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Pacht", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ontvangen huren", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huurwaarde woongedeelte", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Groot onderhoud onr. Goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Overige huisvestingskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assurantie onroerend goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Toevoeging egalisatieres. Groot onderhoud", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Belastingen onr. Goed", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud onroerend goed", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "HUISVESTINGSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige bedrijfskosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ophalen/vervoer afval", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur inventaris", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Energie (krachtstroom)", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing invent.operational", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Hulpmaterialen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Assuranties", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Leasing mach. operational", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gereedschappen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud machines", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud inventaris", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "BEDRIJFSKOSTEN"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Overige kantoorkosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Huur kantoorapparatuur", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Kantoorbenodigdh./drukw.", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Contributies/abonnementen", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Administratiekosten", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Porti", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Internetaansluiting", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Telefoon/telefax", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Onderhoud kantoorinvent.", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "KANTOORKOSTEN"
+     }
+    ], 
+    "name": "KOSTENREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Account Payable"
+     }, 
+     {
+      "name": "Uninvoiced Receipts"
+     }, 
+     {
+      "name": "Loans"
+     }, 
+     {
+      "name": "Withholding Tax"
+     }, 
+     {
+      "name": "Accrued Expenses"
+     }, 
+     {
+      "name": "Output VAT"
+     }
+    ], 
+    "name": "Liabilities"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Salary"
+     }, 
+     {
+      "name": "Rent"
+     }, 
+     {
+      "name": "Cost of goods sold"
+     }, 
+     {
+      "name": "Office Expenses"
+     }, 
+     {
+      "name": "Income tax expenses"
+     }, 
+     {
+      "name": "Interest expenses"
+     }
+    ], 
+    "name": "Expenses"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Inkopen binnen EU laag"
+     }, 
+     {
+      "name": "Tussenrek. autom. loonbetalingen"
+     }, 
+     {
+      "name": "Inkopen binnen EU hoog"
+     }, 
+     {
+      "name": "Inkopen binnen EU overig"
+     }, 
+     {
+      "name": "Betaalwijze contant"
+     }, 
+     {
+      "name": "Tussenrek. autom. betalingen"
+     }, 
+     {
+      "name": "Inkopen buiten EU overig"
+     }, 
+     {
+      "name": "Inkopen Nederland hoog"
+     }, 
+     {
+      "name": "Betaalwijze chipknip"
+     }, 
+     {
+      "name": "Tussenrekening chipknip"
+     }, 
+     {
+      "name": "Vraagposten"
+     }, 
+     {
+      "name": "Tussenrekening correcties"
+     }, 
+     {
+      "name": "Netto lonen"
+     }, 
+     {
+      "name": "Inkopen buiten EU hoog"
+     }, 
+     {
+      "name": "Inkopen buiten EU laag"
+     }, 
+     {
+      "name": "Tussenrek. cadeaubonbetalingen"
+     }, 
+     {
+      "name": "Betaalwijze cadeaubonnen"
+     }, 
+     {
+      "name": "Inkopen Nederland overig"
+     }, 
+     {
+      "name": "Inkopen Nederland laag"
+     }, 
+     {
+      "name": "Inkopen Nederland verlegd"
+     }, 
+     {
+      "name": "Betaalwijze pin"
+     }, 
+     {
+      "name": "Tussenrekening pin"
+     }, 
+     {
+      "name": "Kassa 2"
+     }, 
+     {
+      "name": "Kassa 1"
+     }, 
+     {
+      "name": "Inkopen Nederland onbelast"
+     }, 
+     {
+      "name": "Tussenrekening balans"
+     }, 
+     {
+      "name": "Tegenrekening Inkopen"
+     }
+    ], 
+    "name": "TUSSENREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Capital Stock"
+     }, 
+     {
+      "name": "Dividends"
+     }, 
+     {
+      "name": "Income Summary"
+     }, 
+     {
+      "name": "Retained Earnings"
+     }
+    ], 
+    "name": "Equity"
+   }, 
+   {
+    "children": [
+     {
+      "name": "TRANSFERTS AUX RESERVES IMMUNISEES", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Autres allocataires", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9mun\u00e9ration du capital", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Administrateurs ou g\u00e9rants", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Dotation aux autres r\u00e9serves", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "B\u00e9n\u00e9fice \u00e0 reporter", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Perte report\u00e9e de l'exercice pr\u00e9c\u00e9dent", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Dotation \u00e0 la r\u00e9serve l\u00e9gale", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AFFECTATION DES RESULTATS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Taxe sur le personnel occup\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Taxe sur la force motrice", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Imp\u00f4ts provinciaux et communaux"
+         }, 
+         {
+          "name": "Taxes diverses", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Taxes sur autos et camions", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Taxes et imp\u00f4ts directs"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Timbres fiscaux pris en charge par la firme", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Droits d'enregistrement", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T.V.A. non d\u00e9ductible", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Taxes et imp\u00f4ts indirects"
+         }
+        ], 
+        "name": "Charges fiscales d'exploitation"
+       }, 
+       {
+        "name": "\u00e0 648 Charges d'exploitations diverses", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Charges d'exploitation port\u00e9es \u00e0 l'actif au titre de restructuration", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisations courantes d'immobilisations corporelles", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisations de cr\u00e9ances commerciales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AUTRES CHARGES D'EXPLOITATION"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Charges exceptionnelles transf\u00e9r\u00e9es \u00e0 l'actif en frais de restructuration", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Autres charges exceptionnelles", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Diff\u00e9rence de charge", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "P\u00e9nalit\u00e9s et amendes diverses", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur immeubles acquis ou construits en vue de la revente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations financi\u00e8res", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations d\u00e9tenues en location-financement et droits similaires", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Moins-values sur r\u00e9alisation d'actifs immobilis\u00e9s"
+       }, 
+       {
+        "name": "Provisions pour risques et charges exceptionnels", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur sur immobilisations financi\u00e8res", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur frais d'\u00e9tablissement", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Amortissements et r\u00e9ductions de valeur exceptionnels"
+       }
+      ], 
+      "name": "CHARGES EXCEPTIONNELLES"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Exc\u00e9dent de versements d'imp\u00f4ts et pr\u00e9comptes port\u00e9 \u00e0 l'actif", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Imp\u00f4ts et pr\u00e9comptes dus ou vers\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Charges fiscales estim\u00e9es", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat de l'exercice"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Provisions fiscales constitu\u00e9es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ments d'imp\u00f4ts dus ou vers\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Suppl\u00e9ments d'imp\u00f4ts estim\u00e9s", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Imp\u00f4ts belges sur le r\u00e9sultat d'exercices ant\u00e9rieurs"
+       }, 
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat de l'exercice", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Imp\u00f4ts \u00e9trangers sur le r\u00e9sultat d'exercices ant\u00e9rieurs", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "IMPOTS SUR LE RESULTAT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Achats de fournitures", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats de marchandises", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "De fournitures", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "De mati\u00e8res premi\u00e8res", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "D'immeubles destin\u00e9s \u00e0 la vente", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "De marchandises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Variations de stocks"
+       }, 
+       {
+        "name": "Remises, ristournes et rabais obtenus sur achats", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sous-traitances g\u00e9n\u00e9rales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats de services, travaux et \u00e9tudes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Achats d'immeubles destin\u00e9s \u00e0 la revente", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "APPROVISIONNEMENTS ET MARCHANDISES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Personnel int\u00e9rimaire et personnes mises \u00e0 la disposition  de l'entreprise", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "R\u00e9mun\u00e9rations, primes pour assurances extral\u00e9gales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Documentation", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Missions et r\u00e9ceptions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Cadeaux \u00e0 la client\u00e8le", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Primes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Foires et expositions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Echantillons", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Catalogues et imprim\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Annonces et insertions", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Annonces, publicit\u00e9, propagande et documentation"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sous-traitants pour activit\u00e9s propres", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sous-traitants d'associations momentan\u00e9es", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Quote-part b\u00e9n\u00e9ficiaire des coparticipants", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Sous-traitants"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Imprim\u00e9s et fournitures de bureau", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "T\u00e9l\u00e9grammes", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T\u00e9l\u00e9phone", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "T\u00e9lex et t\u00e9l\u00e9fax", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais postaux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "T\u00e9l\u00e9phone, t\u00e9l\u00e9grammes, t\u00e9lex, t\u00e9l\u00e9fax, frais postaux"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Vapeur", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Eau", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Electricit\u00e9", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Gaz", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Eau, gaz, \u00e9lectricit\u00e9, vapeur"
+         }, 
+         {
+          "name": "Livres, biblioth\u00e8que", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Fournitures faites \u00e0 l'entreprise"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Personnel int\u00e9rimaire", 
+          "root_type": "Expense"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Publications l\u00e9gales", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Honoraires d'avocats, d'experts, etc ...", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Commissions aux tiers", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Dons, lib\u00e9ralit\u00e9s, ...", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Cotisations aux groupements professionnels", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Frais de contentieux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Divers"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Transports de personnel", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Voyages, d\u00e9placements, repr\u00e9sentations", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Transports et d\u00e9placements"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Autres redevances", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Redevances pour brevets, licences, marques, accessoires", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Redevances et royalties"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurance incendie", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance vol", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance autos", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance cr\u00e9dit", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances frais g\u00e9n\u00e9raux", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Assurances non relatives au personnel"
+         }
+        ], 
+        "name": "R\u00e9tributions de tiers"
+       }, 
+       {
+        "name": "Entretien et r\u00e9paration", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "SERVICES ET BIENS DIVERS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Salaire hebdomadaire garanti", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Jours f\u00e9ri\u00e9s pay\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Allocations familiales compl\u00e9mentaires", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Charges sociales diverses"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Assurances individuelles", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurances loi, responsabilit\u00e9 civile, chemin du travail", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Assurance salaire garanti", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Assurances du personnel"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Allocations familiales compl\u00e9mentaires pour non salari\u00e9s", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Lois sociales pour ind\u00e9pendants", 
+            "root_type": "Expense"
+           }, 
+           {
+            "name": "Divers", 
+            "root_type": "Expense"
+           }
+          ], 
+          "name": "Charges sociales des administrateurs, g\u00e9rants et commissaires"
+         }
+        ], 
+        "name": "Autres frais de personnel"
+       }, 
+       {
+        "name": "Primes patronales pour assurances extral\u00e9gales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur appointements et commissions", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Sur salaires", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Cotisations patronales d'assurances sociales"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Administrateurs ou g\u00e9rants", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Personnel de direction", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Employ\u00e9s", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Autres membres du personnel", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Ouvriers", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9mun\u00e9rations et avantages sociaux directs"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provision pour p\u00e9cule de vacances"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Personnel", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Administrateurs et g\u00e9rants", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Pensions de retraite et de survie"
+       }
+      ], 
+      "name": "REMUNERATIONS, CHARGES SOCIALES ET PENSIONS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Dotations aux r\u00e9ductions de valeur sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux r\u00e9ductions de valeur sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur immobilisations incorporelles", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur frais d'\u00e9tablissement", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations aux amortissements sur immobilisations corporelles", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Dotations aux amortissements et aux r\u00e9ductions de valeur sur immobilisations"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur stocks"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur commandes en cours d'ex\u00e9cution"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur cr\u00e9ances commerciales \u00e0 plus d'un an"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur cr\u00e9ances commerciales \u00e0 un an au plus"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour pensions et obligations similaires"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour grosses r\u00e9parations et gros entretiens"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Dotations ", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Utilisations et reprises", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Provisions pour autres risques et charges"
+       }
+      ], 
+      "name": "AMORTISSEMENTS, REDUCTIONS DE VALEUR ET PROVISIONS POUR RISQUES ET CHARGES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Frais de vente des titres", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Moins-values sur r\u00e9alisation d'actifs circulants", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Charges d'escompte de cr\u00e9ances", 
+        "root_type": "Expense"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres charges de dettes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Amortissements des agios et frais d'\u00e9mission d'emprunts", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Int\u00e9r\u00eats, commissions et frais aff\u00e9rents aux dettes", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Int\u00e9r\u00eats intercalaires port\u00e9s \u00e0 l'actif", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "Charges des dettes"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Reprises", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Dotations ", 
+          "root_type": "Expense"
+         }
+        ], 
+        "name": "R\u00e9ductions de valeur sur actifs circulants"
+       }, 
+       {
+        "name": "Frais de banques, de ch\u00e8ques postaux", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Commissions sur ouvertures de cr\u00e9dit, cautions, avals", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Diff\u00e9rences de change", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ecarts de conversion des devises", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "CHARGES FINANCIERES"
+     }
+    ], 
+    "name": "CLASSE 6. - CHARGES"
+   }, 
+   {
+    "name": "FABRIKAGEREKENINGEN"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Verkopen Handel 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen Fabric. 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabric. 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage overig", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage overig", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabric. 0 % EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen fabricage hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel hoog tarief", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel 0% niet-EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verleende Kredietbep. fabricage", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verleende Kredietbep. handel", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten handel laag tarief", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel 0% EU", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Diensten fabricage laag", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel hoog", 
+      "root_type": "Income"
+     }, 
+     {
+      "name": "Verkopen handel overig", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "VERKOOPRESULTATEN"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortissements sur goodwill", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Co\u00fbt d'acquisition", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Goodwill", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Acomptes vers\u00e9s", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Concessions, brevets, licences, savoir-faire, marques, etc...", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es sur concessions, brevets, etc...", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur concessions, brevets, etc...", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Concessions, brevets, licences, savoir-faire, marques et droits similaires", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS INCORPORELLES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres droits r\u00e9els sur des immeubles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Frais d'acquisition des terrains \u00e0 b\u00e2tir", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "B\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "B\u00e2timents industriels", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur frais d'acquisition des terrains b\u00e2tis", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur terrains b\u00e2tis", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Terrains b\u00e2tis", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Voies de transport et ouvrages d'art", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Autres b\u00e2timents d'exploitation", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "B\u00e2timents administratifs et commerciaux", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "B\u00e2timents industriels", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Frais d'acquisition sur constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Constructions sur sol d'autrui", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur constructions sur sol d'autrui", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur frais d'acquisition sur constructions", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur autres b\u00e2timents d'exploitation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur voies de transport et ouvrages d'art", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents industriels", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur b\u00e2timents administratifs et commerciaux", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Constructions", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "TERRAINS ET CONSTRUCTIONS", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Division A", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Division B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Machines", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Division A", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Division B", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Outillage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur machines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur installations", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Plus-values act\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Sur outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur installations", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Sur machines", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortissements", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "INSTALLATIONS, MACHINES ET OUTILLAGE", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Idem sur mat\u00e9riel ferroviaire", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Amortissements sur mat\u00e9riel automobile", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel naval", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel fluvial", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel a\u00e9rien", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Amortissements sur mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Idem sur mat\u00e9riel naval", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Plus-values sur mat\u00e9riel automobile", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel ferroviaire", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel a\u00e9rien", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Idem sur mat\u00e9riel fluvial", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Plus-values sur mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel ferroviaire", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Voitures", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Camions", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Mat\u00e9riel automobile", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel naval", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel fluvial", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mat\u00e9riel a\u00e9rien", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mat\u00e9riel roulant", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "MOBILIER ET MATERIEL ROULANT", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Plus-values act\u00e9es sur installations, machines et outillage pris en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur installations, machines et outillage pris en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Installations", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Machines", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Outillage", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Installations, machines et outillage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mobilier", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur mobilier et mat\u00e9riel roulant en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es sur mobilier et mat\u00e9riel roulant en leasing", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Mobilier et mat\u00e9riel roulant", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATION DETENUES EN LOCATION-FINANCEMENT ET DROITS SIMILAIRES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amortissements sur emballages r\u00e9cup\u00e9rables", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur mat\u00e9riel d'emballage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur r\u00e9serve immobili\u00e8re", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur maison d'habitation", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amortissements sur frais d'am\u00e9nagement des locaux pris en location", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Amortissements sur autres immobilisations corporelles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Plus-values act\u00e9es sur autres immobilisations corporelles", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mat\u00e9riel d'emballage", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "R\u00e9serve immobili\u00e8re", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Maison d'habitation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Emballages r\u00e9cup\u00e9rables", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "AUTRES IMMOBILISATIONS CORPORELLES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titres \u00e0 revenu fixe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres cr\u00e9ances", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres actions et parts", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Titres \u00e0 revenu fixes", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances sur des entreprises li\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Participations dans des entreprises li\u00e9es", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Titres \u00e0 revenu fixe", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances sur des entreprises avec lesquelles il existe un lien de participation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Plus-values act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "R\u00e9ductions de valeurs act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Valeur d'acquisition", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Montants non appel\u00e9s", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Participations dans des entreprises avec lesquelles il existe un lien de participation", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Autres cautionnements vers\u00e9s en num\u00e9raires", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Electricit\u00e9", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "T\u00e9l\u00e9phone, t\u00e9lefax, t\u00e9lex", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Gaz", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Eau", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cautionnements vers\u00e9s en num\u00e9raires", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS FINANCIERES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Installations, machines et outillage", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Constructions", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mobilier et mat\u00e9riel roulant", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Autres immobilisations corporelles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Immobilisations en cours", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Avances et acomptes vers\u00e9s sur immobilisations en cours", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "IMMOBILISATIONS CORPORELLES EN COURS ET ACOMPTES VERSES", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Cr\u00e9ances entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances autres d\u00e9biteurs", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Cr\u00e9ances en compte", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur autres d\u00e9biteurs", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances r\u00e9sultant de la cession d'immobilisations donn\u00e9es en leasing", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Autres cr\u00e9ances", 
+        "root_type": "Asset"
+       }, 
+       {
+        "children": [
+         {
+          "name": "R\u00e9ductions de valeur act\u00e9es", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Cr\u00e9ances douteuses", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Acomptes vers\u00e9s", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Retenues sur garanties", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur clients exportation hors C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients Belgique", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Effets \u00e0 recevoir", 
+          "root_type": "Asset"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Sur entreprises avec lesquelles il existe un lien de participation", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients Belgique", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances en compte sur entreprises li\u00e9es", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Sur clients exportation hors C.E.E.", 
+            "root_type": "Asset"
+           }, 
+           {
+            "name": "Cr\u00e9ances sur les coparticipants", 
+            "root_type": "Asset"
+           }
+          ], 
+          "name": "Clients", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "Cr\u00e9ances commerciales", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "CREANCES A PLUS D'UN AN", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "CLASSE 2. FRAIS D'ETABLISSEMENT. ACTIFS IMMOBILISES ET CREANCES A PLUS D'UN AN", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "D'un mois au plus"
+       }, 
+       {
+        "name": "De plus d'un mois et \u00e0 un an au plus"
+       }, 
+       {
+        "name": "De plus d'un an"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }
+      ], 
+      "name": "DEPOTS A TERME"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Valeur d'acquisition"
+       }, 
+       {
+        "name": "R\u00e9ductions de valeur act\u00e9es"
+       }
+      ], 
+      "name": "TITRES A REVENUS FIXES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Comptes ouverts aupr\u00e8s des divers \u00e9tablissements"
+       }
+      ], 
+      "name": "ETABLISSEMENTS DE CREDIT."
+     }, 
+     {
+      "name": "VIREMENTS INTERNES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Coupons \u00e0 encaisser"
+       }
+      ], 
+      "name": "VALEURS ECHUES A L'ENCAISSEMENT"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Caisses - timbres"
+       }
+      ], 
+      "name": "CAISSES"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ch\u00e8ques \u00e9mis"
+       }
+      ], 
+      "name": "OFFICE DES CHEQUES POSTAUX"
+     }
+    ], 
+    "name": "CLASSE 5. PLACEMENTS DE TRESORERIE ET DE VALEURS DISPONIBLES"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Petty Cash"
+       }, 
+       {
+        "name": "Cash at Bank"
+       }
+      ], 
+      "name": "Cash"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Accumulated Depreciation - Equipment"
+       }
+      ], 
+      "name": "Equipment"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Accumulated Depreciation - Building"
+       }
+      ], 
+      "name": "Building"
+     }, 
+     {
+      "name": "Account Receivable"
+     }, 
+     {
+      "name": "Outstanding Cheques"
+     }, 
+     {
+      "name": "Input VAT"
+     }, 
+     {
+      "name": "Withholding Income Tax"
+     }, 
+     {
+      "name": "Inventory"
+     }
+    ], 
+    "name": "Assets"
+   }
+  ], 
+  "name": "Simple chart of accounts"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/tr_l10ntr_tek_duzen_hesap.json b/setup/doctype/company/charts/tr_l10ntr_tek_duzen_hesap.json
new file mode 100644
index 0000000..fbfba3d
--- /dev/null
+++ b/setup/doctype/company/charts/tr_l10ntr_tek_duzen_hesap.json
@@ -0,0 +1,1191 @@
+{
+ "name": "Tek D\u00fczen Hesap Plan\u0131", 
+ "root": {
+  "children": [
+   {
+    "name": "Naz\u0131m Hesaplar"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Di\u011fer \u0130ndirimler"
+       }, 
+       {
+        "name": "Sat\u0131\u015ftan \u0130adeler(-)"
+       }, 
+       {
+        "name": "Sat\u0131\u015f \u0130ndirimleri(-)"
+       }
+      ], 
+      "name": "Sat\u0131\u015f \u0130ndirimleri (-)"
+     }, 
+     {
+      "children": [
+       {
+        "name": "D\u00f6nem K\u00e2r\u0131 Vergi Ve Di\u011fer Yasal Y\u00fck\u00fcml\u00fcl\u00fck Kar\u015f\u0131l\u0131klar\u0131(-)"
+       }, 
+       {
+        "name": "Enflasyon D\u00fczeltme Hesab\u0131"
+       }, 
+       {
+        "name": "D\u00f6nem K\u00e2r\u0131 Veya Zarar\u0131"
+       }, 
+       {
+        "name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat Ve Enflasyon D\u00fczeltme Hesab\u0131"
+       }, 
+       {
+        "name": "D\u00f6nem Net K\u00e2r\u0131 Veya Zarar\u0131"
+       }
+      ], 
+      "name": "D\u00f6nem Net K\u00e2r\u0131 Ve Zarar\u0131"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Sat\u0131lan Ticari Mallar Maliyeti(-)"
+       }, 
+       {
+        "name": "Di\u011fer Sat\u0131\u015flar\u0131n Maliyeti(-)"
+       }, 
+       {
+        "name": "Sat\u0131lan Hizmet Maliyeti(-)"
+       }, 
+       {
+        "name": "Sat\u0131lan Mamuller Maliyeti(-)"
+       }
+      ], 
+      "name": "Sat\u0131\u015flar\u0131n Maliyeti(-)"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pazarlama Sat\u0131\u015f Ve Da\u011f\u0131t\u0131m Giderleri(-)"
+       }, 
+       {
+        "name": "Ara\u015ft\u0131rma Ve Geli\u015ftirme Giderleri(-)"
+       }, 
+       {
+        "name": "Genel Y\u00f6netim Giderleri(-)"
+       }
+      ], 
+      "name": "Faaliyet Giderleri(-)"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Konusu Kalmayan Kar\u015f\u0131l\u0131klar"
+       }, 
+       {
+        "name": "Reeskont Faiz Gelirleri"
+       }, 
+       {
+        "name": "Kambiyo K\u00e2rlar\u0131"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Ortakl\u0131klardan Temett\u00fc Gelirleri"
+       }, 
+       {
+        "name": "\u0130\u015ftiraklerden Temett\u00fc Gelirleri"
+       }, 
+       {
+        "name": "Komisyon Gelirleri"
+       }, 
+       {
+        "name": "Faiz Gelirleri"
+       }, 
+       {
+        "name": "Di\u011fer Ola\u011fan Gelir Ve K\u00e2rlar"
+       }, 
+       {
+        "name": "Enflasyon D\u00fczeltme K\u00e2rlar\u0131"
+       }, 
+       {
+        "name": "Menkul K\u0131ymet Sat\u0131\u015f K\u00e2rlar\u0131"
+       }
+      ], 
+      "name": "Di\u011fer Faaliyetlerden Olu\u015fan Gelir ve K\u00e2rlar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "K\u0131sa Vadeli Bor\u00e7lanma Giderleri(-)"
+       }, 
+       {
+        "name": "Uzun Vadeli Bor\u00e7lanma Giderleri(-)"
+       }
+      ], 
+      "name": "Finansman Giderleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer Ola\u011fan D\u0131\u015f\u0131 Gelir Ve K\u00e2rlar"
+       }, 
+       {
+        "name": "\u00d6nceki D\u00f6nem Gelir Ve K\u00e2rlar\u0131"
+       }
+      ], 
+      "name": "Ola\u011fan D\u0131\u015f\u0131 Gelir Ve K\u00e2rlar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer Ola\u011fan D\u0131\u015f\u0131 Gider Ve Zararlar(-)"
+       }, 
+       {
+        "name": "\u00d6nceki D\u00f6nem Gider Ve Zararlar\u0131(-)"
+       }, 
+       {
+        "name": "\u00c7al\u0131\u015fmayan K\u0131s\u0131m Gider Ve Zararlar\u0131(-)"
+       }
+      ], 
+      "name": "Ola\u011fan D\u0131\u015f\u0131 Gider Ve Zaralar(-)"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Yurt D\u0131\u015f\u0131 Sat\u0131\u015flar"
+       }, 
+       {
+        "name": "Di\u011fer Gelirler"
+       }, 
+       {
+        "name": "Yurt \u0130\u00e7i Sat\u0131\u015flar"
+       }
+      ], 
+      "name": "Br\u00fct Sat\u0131\u015flar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kambiyo Zararlar\u0131(-)"
+       }, 
+       {
+        "name": "Menkul K\u0131ymet Sat\u0131\u015f Zararlar\u0131(-)"
+       }, 
+       {
+        "name": "Komisyon Giderleri(-)"
+       }, 
+       {
+        "name": "Di\u011fer Ola\u011fan Gider Ve Zararlar(-)"
+       }, 
+       {
+        "name": "Kar\u015f\u0131l\u0131k Giderleri(-)"
+       }, 
+       {
+        "name": "Enflasyon D\u00fczeltmesi Zararlar\u0131(-)"
+       }, 
+       {
+        "name": "Reeskont Faiz Giderleri(-)"
+       }
+      ], 
+      "name": "Di\u011fer Faaliyetlerden Olu\u015fan Gider ve Zararlar (-)"
+     }
+    ], 
+    "name": "Gelir Tablosu Hesaplar\u0131"
+   }, 
+   {
+    "name": "Serbest Hesaplar"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Verilen \u00c7ekler ve \u00d6deme Emirleri(-)", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Bankalar"
+       }, 
+       {
+        "name": "Kasa"
+       }, 
+       {
+        "name": "Al\u0131nan \u00c7ekler", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Di\u011fer Haz\u0131r De\u011ferler", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Haz\u0131r De\u011ferler", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "\u00d6zel Kesim Tahvil Senet Ve Bonolar\u0131", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Hisse Senetleri", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kamu Kesimi Tahvil, Senet ve Bonolar\u0131", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Menkul K\u0131ymetler De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Di\u011fer Menkul K\u0131ymetler", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Menkul K\u0131ymetler", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Al\u0131c\u0131lar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u015e\u00fcpheli Ticari Alacaklar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u015e\u00fcpheli Ticari Alacaklar Kar\u015f\u0131l\u0131\u011f\u0131", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Verilen Depozito ve Teminatlar"
+       }, 
+       {
+        "name": "Alacak Senetleri"
+       }, 
+       {
+        "name": "Alacak Senetleri Reeskontu(-)"
+       }, 
+       {
+        "name": "Kazan\u0131lmam\u0131\u015f Finansal Kiralama Faiz Gelirleri(-)"
+       }, 
+       {
+        "name": "Di\u011fer Ticari Alacaklar"
+       }
+      ], 
+      "name": "Ticari Alacaklar", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ticari Mallar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Verilen Sipari\u015f Avanslar\u0131", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Stok De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u0130lk Madde Malzeme", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Mamuller", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Yar\u0131 Mamuller", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Stoklar", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer D\u00f6nen Varl\u0131klar Kar\u015f\u0131l\u0131\u011f\u0131(-)"
+       }, 
+       {
+        "name": "Say\u0131m Ve Tesell\u00fcm Noksanlar\u0131"
+       }, 
+       {
+        "name": "\u0130ndirilecek KDV"
+       }, 
+       {
+        "name": "Pe\u015fin \u00d6denen Vergiler Ve Fonlar"
+       }, 
+       {
+        "name": "Di\u011fer KDV"
+       }, 
+       {
+        "name": "Devreden KDV"
+       }, 
+       {
+        "name": "\u0130\u015f Avanslar\u0131"
+       }, 
+       {
+        "name": "Di\u011fer \u00c7e\u015fitli D\u00f6nen Varl\u0131klar"
+       }, 
+       {
+        "name": "Personel Avanslar\u0131"
+       }
+      ], 
+      "name": "Di\u011fer D\u00f6nen Varl\u0131klar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gelir Tahakkuklar\u0131"
+       }, 
+       {
+        "name": "Gelecek Aylara Ait Giderler", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gelecek Aylara Ait Giderler ve Gelir Tahakkuklar\u0131", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer \u00c7e\u015fitli Alacaklar"
+       }, 
+       {
+        "name": "\u015e\u00fcpheli Di\u011fer Alacaklar"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Ortakl\u0131klardan Alacaklar"
+       }, 
+       {
+        "name": "\u0130\u015ftiraklerden Alacaklar"
+       }, 
+       {
+        "name": "Ortaklardan Alacaklar"
+       }, 
+       {
+        "name": "Di\u011fer Alacak Senetleri Reeskontu(-)"
+       }, 
+       {
+        "name": "Personelden Alacaklar"
+       }, 
+       {
+        "name": "\u015e\u00fcpheli Di\u011fer Alacaklar Kar\u015f\u0131l\u0131\u011f\u0131(-)"
+       }
+      ], 
+      "name": "Di\u011fer Alacaklar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat Ve Onar\u0131m Maliyetleri", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Ta\u015feronlara Verilen Avanslar", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat ve Onar\u0131m Maliyetleri", 
+      "root_type": "Expense"
+     }
+    ], 
+    "name": "D\u00f6nen Varl\u0131klar", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Di\u011fer KDV", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Hesaplanan KDV", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Merkez Ve \u015eubeler Cari Hesab\u0131"
+       }, 
+       {
+        "name": "Say\u0131m Ve Tesell\u00fcm Fazlalar\u0131"
+       }, 
+       {
+        "name": "Di\u011fer \u00c7e\u015fitli Yabanc\u0131 Kaynaklar"
+       }
+      ], 
+      "name": "Di\u011fer K\u0131sa Vadeli Yabanc\u0131 Kaynaklar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Vadesi Ge\u00e7mi\u015f, Ertelenmi\u015f Veya Taksitlendirilmi\u015f Vergi Ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "\u00d6denecek Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "\u00d6denecek Vergi Ve Fonlar", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "\u00d6denecek Sosyal G\u00fcvenl\u00fck Kesintileri", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "\u00d6denecek Vergi ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Personele Bor\u00e7lar"
+       }, 
+       {
+        "name": "Di\u011fer Bor\u00e7 Senetleri Reeskontu(-)"
+       }, 
+       {
+        "name": "Di\u011fer \u00c7e\u015fitli Bor\u00e7lar"
+       }, 
+       {
+        "name": "Ortaklara Bor\u00e7lar"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Ortakl\u0131klara Bor\u00e7lar"
+       }, 
+       {
+        "name": "\u0130\u015ftiraklere Bor\u00e7lar"
+       }
+      ], 
+      "name": "Di\u011fer Bor\u00e7lar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Al\u0131nan Sipari\u015f Avanslar\u0131"
+       }, 
+       {
+        "name": "Al\u0131nan Di\u011fer Avanslar"
+       }
+      ], 
+      "name": "Al\u0131nan Avanslar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer Ticari Bor\u00e7lar"
+       }, 
+       {
+        "name": "Bor\u00e7 Senetleri Reeskontu(-)"
+       }, 
+       {
+        "name": "Bor\u00e7 Senetleri"
+       }, 
+       {
+        "name": "Al\u0131nan Depozito Ve Teminatlar"
+       }, 
+       {
+        "name": "Sat\u0131c\u0131lar"
+       }
+      ], 
+      "name": "Ticari Bor\u00e7lar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "D\u00f6nem K\u00e2r\u0131n\u0131n Pe\u015fin \u00d6denen Vergi Ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler(-)", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "D\u00f6nem K\u00e2r\u0131 Vergi Ve Di\u011fer Yasal Y\u00fck\u00fcml\u00fcl\u00fck Kar\u015f\u0131l\u0131klar\u0131", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Maliyet Giderleri Kar\u015f\u0131l\u0131\u011f\u0131", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Di\u011fer Bor\u00e7 Ve Gider Kar\u015f\u0131l\u0131klar\u0131"
+       }, 
+       {
+        "name": "K\u0131dem Tazminat\u0131 Kar\u015f\u0131l\u0131\u011f\u0131", 
+        "root_type": "Liability"
+       }
+      ], 
+      "name": "Bor\u00e7 ve Gider Kar\u015f\u0131l\u0131klar\u0131"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gelecek Aylara Ait Gelirler", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Gider Tahakkuklar\u0131"
+       }
+      ], 
+      "name": "Gelecek Aylara Ait Gelirler Ve Gider Tahakkuklar\u0131", 
+      "root_type": "Income"
+     }, 
+     {
+      "children": [
+       {
+        "name": "350 Y\u0131llara Yayg\u0131n \u0130n\u015faat Ve Onar\u0131m Hakedi\u015fleri Bedelleri"
+       }
+      ], 
+      "name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat Ve Onar\u0131m Hakedi\u015fleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer Mali Bor\u00e7lar"
+       }, 
+       {
+        "name": "Tahvil Anapara Bor\u00e7, Taksit Ve Faizleri"
+       }, 
+       {
+        "name": "\u00c7\u0131kar\u0131lan Bonolar Ve Senetler"
+       }, 
+       {
+        "name": "\u00c7\u0131kar\u0131lm\u0131\u015f Di\u011fer Menkul K\u0131ymetler"
+       }, 
+       {
+        "name": "Banka Kredileri"
+       }, 
+       {
+        "name": "Finansal Kiralama \u0130\u015flemlerinden Bor\u00e7lar"
+       }, 
+       {
+        "name": "Ertelenmi\u015f Finansal Kiralama Bor\u00e7lanma Maliyetleri(-)"
+       }, 
+       {
+        "name": "Uzun Vadeli Kredilerin Anapara Taksitleri Ve Faizleri"
+       }, 
+       {
+        "name": "Menkul K\u0131ymetler \u0130hra\u00e7 Fark\u0131(-)"
+       }
+      ], 
+      "name": "Mali Bor\u00e7lar"
+     }
+    ], 
+    "name": "K\u0131sa Vadeli Yabanc\u0131 Kaynaklar"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "\u00d6denmi\u015f Sermaye(-)"
+       }, 
+       {
+        "name": "Sermaye", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "\u00d6denmi\u015f Sermaye", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Stat\u00fc Yedekleri", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Di\u011fer K\u00e2r Yedekleri", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u00d6zel Fonlar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Yasal Yedekler", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Ola\u011fan\u00fcst\u00fc Yedekler", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "K\u00e2r Yedekleri", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ge\u00e7mi\u015f Y\u0131llar K\u00e2rlar\u0131", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Ge\u00e7mi\u015f Y\u0131llar K\u00e2rlar\u0131", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "D\u00f6nem Net Zarar\u0131(-)", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "D\u00f6nem Net K\u00e2r\u0131", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "D\u00f6nem Net K\u00e2r\u0131 (Zarar\u0131)", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ge\u00e7mi\u015f Y\u0131llar Zararlar\u0131(-)", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Ge\u00e7mi\u015f Y\u0131llar Zararlar\u0131(-)", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Maliyet Art\u0131\u015flar\u0131 Fonu", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Di\u011fer Sermaye Yedekleri", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Hisse Senetleri \u0130hra\u00e7 Primleri", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u0130\u015ftirakler Yeniden De\u011ferleme Art\u0131\u015flar\u0131", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Hisse Senedi \u0130ptal K\u00e2rlar\u0131", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Maddi Duran Varl\u0131k Yeniden De\u011ferlenme Art\u0131\u015flar\u0131", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Sermaye Yedekleri", 
+      "root_type": "Asset"
+     }
+    ], 
+    "name": "\u00d6z Kaynaklar", 
+    "root_type": "Asset"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Di\u011fer \u00c7e\u015fitli Uzun Vadeli Yabanc\u0131 Kaynaklar"
+       }, 
+       {
+        "name": "Tesise Kat\u0131lma Paylar\u0131"
+       }, 
+       {
+        "name": "Gelecek Y\u0131llara Ertelenmi\u015f Veya Terkin Edilecek KDV"
+       }
+      ], 
+      "name": "Di\u011fer Uzun Vadeli Yabanc\u0131 Kaynaklar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Kamuya Olan Ertelenmi\u015f Veya Taksitlendirilmi\u015f Bor\u00e7lar"
+       }, 
+       {
+        "name": "Ortaklara Bor\u00e7lar"
+       }, 
+       {
+        "name": "Di\u011fer \u00c7e\u015fitli Bor\u00e7lar"
+       }, 
+       {
+        "name": "Di\u011fer Bor\u00e7 Senetleri Reeskontu(-)"
+       }, 
+       {
+        "name": "\u0130\u015ftiraklere Bor\u00e7lar"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Ortakl\u0131klara Bor\u00e7lar"
+       }
+      ], 
+      "name": "Di\u011fer Bor\u00e7lar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Al\u0131nan Sipari\u015f Avanslar\u0131"
+       }, 
+       {
+        "name": "Al\u0131nan Di\u011fer Avanslar"
+       }
+      ], 
+      "name": "Al\u0131nan Avanslar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Bor\u00e7 Senetleri Reeskontu(-)"
+       }, 
+       {
+        "name": "Di\u011fer Ticari Bor\u00e7lar"
+       }, 
+       {
+        "name": "Al\u0131nan Depozito Ve Teminatlar"
+       }, 
+       {
+        "name": "Bor\u00e7 Senetleri"
+       }, 
+       {
+        "name": "Sat\u0131c\u0131lar"
+       }
+      ], 
+      "name": "Ticari Bor\u00e7lar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Gider Tahakkuklar\u0131"
+       }, 
+       {
+        "name": "Gelecek Y\u0131llara Ait Gelirler"
+       }
+      ], 
+      "name": "Gelecek Y\u0131llara Ait Gelirler Ve Gider Tahakkuklar\u0131"
+     }, 
+     {
+      "children": [
+       {
+        "name": "K\u0131dem Tazminat\u0131 Kar\u015f\u0131l\u0131\u011f\u0131", 
+        "root_type": "Liability"
+       }, 
+       {
+        "name": "Di\u011fer Bor\u00e7 Ve Gider Kar\u015f\u0131l\u0131klar\u0131"
+       }
+      ], 
+      "name": "Bor\u00e7 Ve Gider Kar\u015f\u0131l\u0131klar\u0131"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer Mali Bor\u00e7lar"
+       }, 
+       {
+        "name": "Finansal Kiralama \u0130\u015flemlerinden Bor\u00e7lar"
+       }, 
+       {
+        "name": "\u00c7\u0131kar\u0131lm\u0131\u015f Di\u011fer Menkul K\u0131ymetler"
+       }, 
+       {
+        "name": "\u00c7\u0131kar\u0131lm\u0131\u015f Tahviller"
+       }, 
+       {
+        "name": "Menkul K\u0131ymetler \u0130hra\u00e7 Fark\u0131(-)"
+       }, 
+       {
+        "name": "Ertelenmi\u015f Finansal Kiralama Bor\u00e7lanma Maliyetleri(-)"
+       }, 
+       {
+        "name": "Banka Kredileri"
+       }
+      ], 
+      "name": "Mali Bor\u00e7lar"
+     }
+    ], 
+    "name": "Uzun Vadeli Yabanc\u0131 Kaynaklar"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Genel \u00dcretim Giderleri Yans\u0131tma Hesab\u0131"
+       }, 
+       {
+        "name": "Genel \u00dcretim Giderleri B\u00fct\u00e7e Farklar\u0131"
+       }, 
+       {
+        "name": "Genel \u00dcretim Giderleri"
+       }, 
+       {
+        "name": "Genel \u00dcretim Giderleri Verimlilik Giderleri"
+       }, 
+       {
+        "name": "Genel \u00dcretim Giderleri Kapasite Farklar\u0131"
+       }
+      ], 
+      "name": "Genel \u00dcretim Giderleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Direkt \u0130\u015f\u00e7ilik S\u00fcre Farklar\u0131"
+       }, 
+       {
+        "name": "Direkt \u0130\u015f\u00e7ilik Giderleri"
+       }, 
+       {
+        "name": "Direkt \u0130\u015f\u00e7ilik \u00dccret Farklar\u0131"
+       }, 
+       {
+        "name": "Direkt \u0130\u015f\u00e7ilik Giderleri Yans\u0131tma Hesab\u0131"
+       }
+      ], 
+      "name": "Direkt \u0130\u015f\u00e7ilik Giderleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Direkt \u0130lk Madde Ve Malzeme Fiyat Fark\u0131"
+       }, 
+       {
+        "name": "Direkt \u0130lk Madde Ve Malzeme Yans\u0131tma Hesab\u0131"
+       }, 
+       {
+        "name": "Direk \u0130lk Madde Ve Malzeme Giderleri Hesab\u0131"
+       }, 
+       {
+        "name": "Direkt \u0130lk Madde Ve Malzeme Miktar Fark\u0131"
+       }
+      ], 
+      "name": "Direkt \u0130lk Madde Ve Malzeme Giderleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Genel Y\u00f6netim Giderleri"
+       }, 
+       {
+        "name": "Genel Y\u00f6netim Giderleri Yans\u0131tma Hesab\u0131"
+       }, 
+       {
+        "name": "Genel Y\u00f6netim Gider Farklar\u0131 Hesab\u0131"
+       }
+      ], 
+      "name": "Genel Y\u00f6netim Giderleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Hizmet \u00dcretim Maliyeti"
+       }, 
+       {
+        "name": "Hizmet \u00dcretim Maliyeti Yans\u0131tma Hesab\u0131"
+       }, 
+       {
+        "name": "Hizmet \u00dcretim Maliyeti Fark Hesaplar\u0131"
+       }
+      ], 
+      "name": "Hizmet \u00dcretim Maliyeti"
+     }, 
+     {
+      "name": "Ara\u015ft\u0131rma Ve Geli\u015ftirme Giderleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Finansman Giderleri"
+       }, 
+       {
+        "name": "Finansman Giderleri Yans\u0131tma Hesab\u0131"
+       }, 
+       {
+        "name": "Finansman Giderleri Fark Hesab\u0131"
+       }
+      ], 
+      "name": "Finansman Giderleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Pazarlama Sat\u0131\u015f Ve Da\u011f\u0131t\u0131m Giderleri Fark Hesab\u0131"
+       }, 
+       {
+        "name": "Atra\u015ft\u0131rma Ve Geli\u015ftirme Giderleri"
+       }, 
+       {
+        "name": "Pazarlama Sat\u0131\u015f Ve Dag\u0131t\u0131m Giderleri Yans\u0131tma Hesab\u0131"
+       }
+      ], 
+      "name": "Pazarlama, Sat\u0131\u015f Ve Da\u011f\u0131t\u0131m Giderleri"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Maliyet Muhasebesi Ba\u011flant\u0131 Hesab\u0131"
+       }, 
+       {
+        "name": "Maliyet Muhasebesi Yans\u0131tma Hesab\u0131"
+       }
+      ], 
+      "name": "Maliyet Muhasebesi Ba\u011flant\u0131 Hesaplar\u0131"
+     }
+    ], 
+    "name": "Maliyet Hesaplar\u0131"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Gelir Tahakkuklar\u0131", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gelecek Y\u0131llara Ait Giderler", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "Gelecek Y\u0131llara Ait Giderler ve Gelir Tahakkuklar\u0131", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Alacak Senetleri Reeskontu(-)"
+       }, 
+       {
+        "name": "Kazaqn\u0131lmam\u0131\u015f Finansal Kiralama Faiz Gelirleri(-)"
+       }, 
+       {
+        "name": "\u015e\u00fcpheli Ticari Alacaklar Kar\u015f\u0131l\u0131\u011f\u0131(-)"
+       }, 
+       {
+        "name": "Alacak Senetleri"
+       }, 
+       {
+        "name": "Al\u0131c\u0131lar"
+       }, 
+       {
+        "name": "Verilen Depozito Ve Teminatlar"
+       }
+      ], 
+      "name": "Ticari Alacaklar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer \u00c7e\u015fitli Duran Varl\u0131klar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Pe\u015fin \u00d6denen Vergi Ve Fonlar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Gelecek Y\u0131llarda \u0130ndirilecek KDV", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Di\u011fer KDV", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Elden \u00c7\u0131kar\u0131lacak Stoklar Ve Maddi Duran Varl\u0131klar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Stok De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Birikmi\u015f Amortismanlar(-)", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Gelecek Y\u0131llar \u0130htiyac\u0131 Stoklar", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Di\u011fer Duran Varl\u0131klar", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer Mali Duran Varl\u0131klar Kar\u015f\u0131l\u0131\u011f\u0131(-)"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Menkul K\u0131ymetler De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Menkul K\u0131ymetler"
+       }, 
+       {
+        "name": "\u0130\u015ftiraklere Sermaye Taahh\u00fctleri(-)"
+       }, 
+       {
+        "name": "\u0130\u015ftirakler"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Ortakl\u0131klar"
+       }, 
+       {
+        "name": "\u0130\u015ftirakler Sermaye Paylar\u0131 De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Ortakl\u0131klar Sermaye Paylar\u0131 De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Ortakl\u0131klara Sermaye Taahh\u00fctleri(-)"
+       }, 
+       {
+        "name": "Di\u011fer Mali Duran Varl\u0131klar"
+       }
+      ], 
+      "name": "Mali Duran Varl\u0131klar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Yer Alt\u0131 Ve Yer \u00dcst\u00fc D\u00fczenleri", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Binalar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Tesis, Makine Ve Cihazlar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Arazi Ve Arsalar"
+       }, 
+       {
+        "name": "Di\u011fer Maddi Duran Varl\u0131klar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Birikmi\u015f Amortismanlar(-)", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Ta\u015f\u0131tlar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Demirba\u015flar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Yap\u0131lmakta Olan Yat\u0131r\u0131mlar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Verilen Avanslar", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Maddi Duran Varl\u0131klar"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Verilen Avanslar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Birikmi\u015f Amortismanlar(-)", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u00d6zel Maliyetler", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Ara\u015ft\u0131rma Ve Geli\u015ftirme Giderleri", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "\u015eerefiye", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Haklar", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Kurulu\u015f Ve \u00d6rg\u00fctlenme Giderleri", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Di\u011fer Maddi Olmayan Duran Varl\u0131klar", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "Maddi Olmayan Duran Varl\u0131klar", 
+      "root_type": "Asset"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Birikmi\u015f T\u00fckenme Paylar\u0131(-)", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Di\u011fer \u00d6zel T\u00fckenmeye Tabi Varl\u0131klar", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Verilen Avanslar", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Arama Giderleri", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Haz\u0131rl\u0131k Ve Geli\u015ftirme Giderleri", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "\u00d6zel T\u00fckenmeye Tabi Varl\u0131klar", 
+      "root_type": "Expense"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Di\u011fer Alacak Senetleri Reeskontu(-)"
+       }, 
+       {
+        "name": "\u0130\u015ftiraklerden Alacaklar"
+       }, 
+       {
+        "name": "Personelden Alacaklar"
+       }, 
+       {
+        "name": "Ba\u011fl\u0131 Ortakl\u0131klardan Alacaklar"
+       }, 
+       {
+        "name": "\u015e\u00fcpheli Di\u011fer Alacaklar Kar\u015f\u0131l\u0131\u011f\u0131(-)"
+       }, 
+       {
+        "name": "Di\u011fer \u00c7e\u015fitli Alacaklar"
+       }, 
+       {
+        "name": "Ortaklardan Alacaklar"
+       }
+      ], 
+      "name": "Di\u011fer Alacaklar"
+     }
+    ], 
+    "name": "Duran Varl\u0131klar"
+   }
+  ], 
+  "name": "Tek D\u00fczen Hesap Plan\u0131"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/us_account_chart_template_basic.json b/setup/doctype/company/charts/us_account_chart_template_basic.json
new file mode 100644
index 0000000..2da1865
--- /dev/null
+++ b/setup/doctype/company/charts/us_account_chart_template_basic.json
@@ -0,0 +1,400 @@
+{
+ "name": "Basic Chart of Account", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "name": "Proceeds from Sale of Assets"
+     }, 
+     {
+      "name": "Interest Income"
+     }, 
+     {
+      "name": "Finance Charge Income"
+     }, 
+     {
+      "name": "Insurance Proceeds Received"
+     }
+    ], 
+    "name": "Other Income"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Furniture and Equipment"
+       }, 
+       {
+        "name": "Accumulated Depreciation"
+       }
+      ], 
+      "name": "Fixed Assets"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Account Receivable"
+         }
+        ], 
+        "name": "Receivable"
+       }, 
+       {
+        "name": "Client Trust Account"
+       }, 
+       {
+        "name": "Cash or Cash Equivalents"
+       }
+      ], 
+      "name": "Current Assets"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Filing Fees"
+       }, 
+       {
+        "name": "Expert Witness Fees"
+       }, 
+       {
+        "name": "Advanced Client Costs"
+       }, 
+       {
+        "name": "Court Costs"
+       }
+      ], 
+      "name": "Other Current Assets"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Security Deposits Asset"
+       }
+      ], 
+      "name": "Other Assets"
+     }
+    ], 
+    "name": "Assets"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Retained Earnings"
+       }, 
+       {
+        "name": "Opening Balance Equity"
+       }, 
+       {
+        "name": "Capital Stock"
+       }, 
+       {
+        "name": "Dividends Paid"
+       }
+      ], 
+      "name": "Equity"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Sales Tax Payable"
+         }, 
+         {
+          "name": "Use Tax Payable"
+         }, 
+         {
+          "name": "Customer Deposits Received"
+         }, 
+         {
+          "name": "Payroll Liabilities"
+         }
+        ], 
+        "name": "Other Current Liabilities"
+       }, 
+       {
+        "children": [
+         {
+          "children": [
+           {
+            "name": "Account Payable"
+           }
+          ], 
+          "name": "Payable"
+         }
+        ], 
+        "name": "Current Liabilities"
+       }
+      ], 
+      "name": "Liabilities"
+     }
+    ], 
+    "name": "Liabilities and Equity"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Freight and Shipping Costs"
+     }, 
+     {
+      "name": "Commissions Paid"
+     }, 
+     {
+      "name": "Purchase Discounts"
+     }, 
+     {
+      "name": "Subcontractors Expense"
+     }, 
+     {
+      "name": "Job Materials Purchased"
+     }, 
+     {
+      "name": "Equipment Rental for Jobs"
+     }, 
+     {
+      "name": "Media Purchased for Clients"
+     }, 
+     {
+      "name": "Tools and Small Equipment"
+     }, 
+     {
+      "name": "Subcontracted Services"
+     }, 
+     {
+      "name": "Purchases - Resale Items"
+     }, 
+     {
+      "name": "Commissions Paid"
+     }, 
+     {
+      "name": "Other Job Related Costs"
+     }, 
+     {
+      "name": "Merchant Account Fees"
+     }, 
+     {
+      "name": "Merchant Account Fees"
+     }
+    ], 
+    "name": "Cost of Goods Sold"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Office Supplies"
+     }, 
+     {
+      "name": "Rent Expense"
+     }, 
+     {
+      "name": "Postage and Delivery"
+     }, 
+     {
+      "name": "Dues and Subscriptions"
+     }, 
+     {
+      "name": "Printing and Reproduction"
+     }, 
+     {
+      "name": "Janitorial Expense"
+     }, 
+     {
+      "name": "Freight and Trucking"
+     }, 
+     {
+      "name": "Payroll Expenses"
+     }, 
+     {
+      "name": "Bank Service Charges"
+     }, 
+     {
+      "name": "Computer and Internet Expenses"
+     }, 
+     {
+      "name": "Small Tools and Equipment"
+     }, 
+     {
+      "name": "Car and Truck Expenses"
+     }, 
+     {
+      "name": "Interest Expense"
+     }, 
+     {
+      "name": "Taxes - Property"
+     }, 
+     {
+      "name": "Custom Hire and Contract Labor"
+     }, 
+     {
+      "name": "Gasoline, Fuel and Oil"
+     }, 
+     {
+      "name": "Advertising and Promotion"
+     }, 
+     {
+      "name": "Utilities"
+     }, 
+     {
+      "name": "Telephone Expense"
+     }, 
+     {
+      "name": "Marketing Expense"
+     }, 
+     {
+      "name": "Business Licenses and Permits"
+     }, 
+     {
+      "name": "Continuing Education"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Life and Disability Insurance"
+       }, 
+       {
+        "name": "Worker's Compensation"
+       }, 
+       {
+        "name": "Health Insurance"
+       }, 
+       {
+        "name": "General Liability Insurance"
+       }, 
+       {
+        "name": "Professional Liability"
+       }
+      ], 
+      "name": "Insurance Expense"
+     }, 
+     {
+      "name": "Seeds and Plants Purchased"
+     }, 
+     {
+      "name": "Automobile Expense"
+     }, 
+     {
+      "name": "Equipment Rental"
+     }, 
+     {
+      "name": "Uniforms"
+     }, 
+     {
+      "name": "Storage and Warehousing"
+     }, 
+     {
+      "name": "Chemicals Purchased"
+     }, 
+     {
+      "name": "Miscellaneous Expense"
+     }, 
+     {
+      "name": "Fertilizers and Lime"
+     }, 
+     {
+      "name": "Repairs and Maintenance"
+     }, 
+     {
+      "name": "Depreciation Expense"
+     }, 
+     {
+      "name": "Feed Purchased"
+     }, 
+     {
+      "name": "Meals and Entertainment"
+     }, 
+     {
+      "name": "Veterinary, Breeding, Medicine"
+     }, 
+     {
+      "name": "Professional Fees"
+     }, 
+     {
+      "name": "Conservation Expenses"
+     }, 
+     {
+      "name": "Charitable Contributions"
+     }, 
+     {
+      "name": "Travel Expense"
+     }
+    ], 
+    "name": "Expenses"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Farmers Market Sales"
+     }, 
+     {
+      "name": "Shipping and Delivery Income"
+     }, 
+     {
+      "name": "Livestock Sales"
+     }, 
+     {
+      "name": "Commodity Credit Loans"
+     }, 
+     {
+      "name": "Cooperative Distributions"
+     }, 
+     {
+      "name": "Rental Income"
+     }, 
+     {
+      "name": "Crop Insurance Proceeds"
+     }, 
+     {
+      "name": "Crop Sales"
+     }, 
+     {
+      "name": "Commission income"
+     }, 
+     {
+      "name": "Legal Fee Income"
+     }, 
+     {
+      "name": "Service Income"
+     }, 
+     {
+      "name": "Job Income"
+     }, 
+     {
+      "name": "Administrative Fees"
+     }, 
+     {
+      "name": "Sales"
+     }, 
+     {
+      "name": "Fuel Tax Credits and Other Inc."
+     }, 
+     {
+      "name": "Sales Discounts"
+     }, 
+     {
+      "name": "Sales Discounts"
+     }, 
+     {
+      "name": "Sales"
+     }, 
+     {
+      "name": "Settlement Income"
+     }, 
+     {
+      "name": "Custom Hire Income"
+     }, 
+     {
+      "name": "Agricultural Program Payments"
+     }
+    ], 
+    "name": "Income"
+   }
+  ], 
+  "name": "Basic", 
+  "parent_id": ""
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/company/charts/uy_uy_chart_template.json b/setup/doctype/company/charts/uy_uy_chart_template.json
new file mode 100644
index 0000000..220dcc7
--- /dev/null
+++ b/setup/doctype/company/charts/uy_uy_chart_template.json
@@ -0,0 +1,815 @@
+{
+ "name": "Plan de Cuentas Uruguay - Template", 
+ "root": {
+  "children": [
+   {
+    "children": [
+     {
+      "name": "Capital Autorizado a Suscribir"
+     }, 
+     {
+      "name": "Capital suscripto"
+     }
+    ], 
+    "name": "ORDEN PASIVO"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Dividendos a Pagar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Irae a Pagar"
+           }, 
+           {
+            "name": "Irae Anticipo a Pagar"
+           }, 
+           {
+            "name": "Irae del Ejercicio"
+           }
+          ], 
+          "name": "DGI IRAE"
+         }, 
+         {
+          "name": "Otras deudas", 
+          "root_type": "Liability"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Icosa del Ejercicio"
+           }, 
+           {
+            "name": "Icosa a Pagar"
+           }, 
+           {
+            "name": "Icosa Anticipo a Pagar"
+           }
+          ], 
+          "name": "DGI ICOSA"
+         }, 
+         {
+          "children": [
+           {
+            "name": "Patrimonio Anticipo a Pagar"
+           }, 
+           {
+            "name": "Patrimonio a Pagar"
+           }, 
+           {
+            "name": "Patrimonio del Ejercicio"
+           }
+          ], 
+          "name": "DGI PATRIMONIO"
+         }, 
+         {
+          "name": "Casa Matriz, Empresas Controlantes,", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Acreedores por Cargas Sociales", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Saldos Acreedores Cuentas Directores", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Cobros Anticipados", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Controladas/Vinculadas", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Sueldos y Jornales a pagar", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Acreedores fiscales", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "DEUDAS DIVERSAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Documentos a pagar MN a pagar ds/Financieras", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Ints. a vencer ds/Financieras", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Obligaciones", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Prestamos Bancarios", 
+          "root_type": "Liability"
+         }, 
+         {
+          "name": "Documentos a pagar ME a pagar ds/Financieras", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "DEUDAS FINANCIERAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Irpf Retenido"
+         }, 
+         {
+          "name": "Iva Retenido"
+         }, 
+         {
+          "name": "Bps"
+         }, 
+         {
+          "name": "Iva Ventas M\u00ednima"
+         }, 
+         {
+          "name": "Iva a Pagar"
+         }, 
+         {
+          "name": "Iva Ventas B\u00e1sica"
+         }
+        ], 
+        "name": "DGI IVA x VENTAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Intereses a vencer ds/Comerciales"
+         }, 
+         {
+          "name": "Deuds. Contratos de Cambio Import."
+         }, 
+         {
+          "name": "Acreedores Varios (def)"
+         }, 
+         {
+          "name": "Documentos a Pagar ds/Comerciales"
+         }, 
+         {
+          "name": "Proveedores de Plaza"
+         }, 
+         {
+          "name": "Proveedores por Importaciones"
+         }
+        ], 
+        "name": "DEUDAS COMERCIALES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Responsabilidad frente a terceros", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "PREVISIONES"
+       }
+      ], 
+      "name": "PASIVO CORRIENTE"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Deudas Comerciales", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "DEUDAS COMERCIALES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas Diversas", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "DEUDAS DIVERSAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Previsiones No Corrientes", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "PREVISIONES NO CORRIENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudas Financieras", 
+          "root_type": "Liability"
+         }
+        ], 
+        "name": "DEUDAS FINANCIERAS"
+       }
+      ], 
+      "name": "PASIVO NO CORRIENTE"
+     }
+    ], 
+    "name": "PASIVO"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Capital Integrado"
+         }
+        ], 
+        "name": "CAPITAL"
+       }, 
+       {
+        "name": "APORTES A CAPITALIZAR"
+       }
+      ], 
+      "name": "APORTE DE PROPIETARIOS/SOCIOS"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Revaluaciones fiscales"
+         }, 
+         {
+          "name": "Revaluaciones voluntarias"
+         }
+        ], 
+        "name": "AJUSTES PATRIMONIO (H)"
+       }
+      ], 
+      "name": "AJUSTES AL PATRIMONIO"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Resultados del ejercicio"
+         }, 
+         {
+          "name": "Dividendos provisorios"
+         }
+        ], 
+        "name": "RESULTADOS ACUMULADOS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "P\u00e9rdidas y Ganancias"
+         }, 
+         {
+          "name": "Reservas Legales"
+         }, 
+         {
+          "name": "Reservas Voluntarias"
+         }
+        ], 
+        "name": "RESERVAS"
+       }
+      ], 
+      "name": "GANANCIAS RETENIDAS"
+     }
+    ], 
+    "name": "PATRIMONIO"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Amort.Ac.Vehiculos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amort.Ac.Inmuebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amort.Ac.Mueb.y Utiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Amort.Ac.Maq.y Herram.", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Veh\u00edculos", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Muebles y \u00datiles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Maquinas y Herramientas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Inmuebles", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "BIENES DE USO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Valores orig. y revaluados s/anexo", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Depositos Bancarios", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Menos: Amort. Acum.", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Prevision para Desvalorizaciones", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Inmuebles", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Intereses percibidos por adelantado", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Titulos y Acciones", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INVERSIONES A LARGO PLAZO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Bienes de cambio no corrientes", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "BIENES DE CAMBIO NO CORRIENTES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Cr\u00e9ditos a Largo Plazo", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "CREDITOS A LARGO PLAZO"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Amortizaciones Acumuladas", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Patentes, marcas y licencias", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Gastos de investigacion", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "INTANGIBLES"
+       }
+      ], 
+      "name": "ACTIVO NO CORRIENTE"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "Controladas / Vinculadas"
+         }, 
+         {
+          "name": "Depositos en Garantia"
+         }, 
+         {
+          "name": "Saldos Deudor de ctas de Directores"
+         }, 
+         {
+          "name": "Anticipos a Proveedores"
+         }, 
+         {
+          "name": "Casa Matriz, Empresas Controlantes"
+         }, 
+         {
+          "name": "Pagos adelantados"
+         }
+        ], 
+        "name": "OTROS CREDITOS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Prevision para Deudores Incobrables", 
+          "root_type": "Expense"
+         }, 
+         {
+          "name": "Ingresos diferidos", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Patrimonio Anticipo"
+         }, 
+         {
+          "name": "Icosa Anticipo"
+         }, 
+         {
+          "name": "Ingresos percibidos por adelantado", 
+          "root_type": "Income"
+         }, 
+         {
+          "name": "Irae Anticipo"
+         }, 
+         {
+          "name": "Diversos"
+         }
+        ], 
+        "name": "DGI ANTICIPOS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Iva Importaci\u00f3n"
+         }, 
+         {
+          "name": "Iva Compras M\u00ednima"
+         }, 
+         {
+          "name": "Iva Anticipo Importaci\u00f3n"
+         }, 
+         {
+          "name": "Iva Pagos"
+         }, 
+         {
+          "name": "Iva Retenciones"
+         }, 
+         {
+          "name": "Iva Compras B\u00e1sica"
+         }
+        ], 
+        "name": "DGI IVA x COMPRAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Previsi\u00f3n para desvalorizaciones"
+         }, 
+         {
+          "name": "Dep\u00f3sitos Bancarios"
+         }, 
+         {
+          "name": "Intereses percibidos por adelantado"
+         }, 
+         {
+          "name": "Valores P\u00fablicos"
+         }
+        ], 
+        "name": "INVERSIONES TEMPORARIAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Caja Moneda Nacional"
+         }, 
+         {
+          "name": "Caja Moneda Extranjera"
+         }, 
+         {
+          "name": "Banco Cuenta Corriente ME"
+         }, 
+         {
+          "name": "Banco Cuenta Corriente"
+         }, 
+         {
+          "name": "Movimientos Banco (def)"
+         }
+        ], 
+        "name": "DISPONIBILIDADES"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Deudores Varios (def)"
+         }, 
+         {
+          "name": "Deudores Simples Plaza"
+         }, 
+         {
+          "name": "Cheques en Cartera ME"
+         }, 
+         {
+          "name": "Documentos a Cobrar ME"
+         }, 
+         {
+          "name": "Intereses percibidos por adelantado"
+         }, 
+         {
+          "name": "Cheques en Cartera MN"
+         }, 
+         {
+          "name": "Ingresos diferidos"
+         }, 
+         {
+          "name": "Documentos a Cobrar MN"
+         }, 
+         {
+          "name": "Deudores por Exportaciones"
+         }, 
+         {
+          "name": "Prevision para Deudores Incobrables"
+         }, 
+         {
+          "name": "Prevision p/dtos y Bonificaciones"
+         }
+        ], 
+        "name": "CREDITOS POR VENTAS"
+       }, 
+       {
+        "children": [
+         {
+          "name": "Productos en Proceso", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Mercaderia de Reventa", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Prevision p/desvalorizaciones", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materiales y Suministros", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Importaciones en tramite", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Productos Terminados", 
+          "root_type": "Asset"
+         }, 
+         {
+          "name": "Materias Primas", 
+          "root_type": "Asset"
+         }
+        ], 
+        "name": "BIENES DE CAMBIO"
+       }
+      ], 
+      "name": "ACTIVO CORRIENTE"
+     }
+    ], 
+    "name": "ACTIVO"
+   }, 
+   {
+    "children": [
+     {
+      "name": "Suscriptores de acciones"
+     }, 
+     {
+      "name": "Acciones a Emitir"
+     }
+    ], 
+    "name": "ORDEN ACTIVO"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Ventas extraordinarias", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "VENTAS EXTRAORDINARIAS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Ventas Tasa B\u00e1sica", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ventas por Exportaciones", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ventas Tasa M\u00ednima", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Ventas Exentas", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "VENTAS ORDINARIAS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Diferencias de Cambio ganadas", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Descuentos Obtenidos", 
+        "root_type": "Income"
+       }, 
+       {
+        "name": "Intereses ganados", 
+        "root_type": "Income"
+       }
+      ], 
+      "name": "INGRESOS FINANCIEROS"
+     }, 
+     {
+      "name": "Ingresos Operativos (def)", 
+      "root_type": "Income"
+     }
+    ], 
+    "name": "GANANCIAS"
+   }, 
+   {
+    "children": [
+     {
+      "children": [
+       {
+        "name": "Intereses y Gastos Bancarios", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Descuentos Concedidos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Diferencias de Cambio perdidas", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Multas y Recargos Fiscales", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "GASTOS FINANCIEROS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Papeler\u00eda", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Cargas Sociales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Sueldos y Jornales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Combustible", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Fletes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Publicidad", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Energ\u00eda El\u00e9ctrica y Aguas Corrientes", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Representaci\u00f3n", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Comunicaciones y Servicios Telef\u00f3nicos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Alquileres", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Servicios Contratados", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Honorarios Profesionales", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Mantenimiento Veh\u00edculos", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Seguros", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Gastos Varios (def)", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "GASTOS DE ADMINISTRACION Y VENTAS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Costos de lo vendido", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Costo de Venta de Bienes de Uso", 
+        "root_type": "Expense"
+       }, 
+       {
+        "name": "Costo de Mercader\u00edas", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "COSTO DE LO VENDIDO"
+     }, 
+     {
+      "children": [
+       {
+        "children": [
+         {
+          "name": "IVA ventas 10%"
+         }, 
+         {
+          "name": "IVA ventas 22%"
+         }
+        ], 
+        "name": "IVA x VENTAS"
+       }, 
+       {
+        "name": "Contribuciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Retenciones", 
+        "root_type": "Asset"
+       }, 
+       {
+        "name": "Otros", 
+        "root_type": "Asset"
+       }
+      ], 
+      "name": "OBLIGACIONES TRIBUTARIAS"
+     }, 
+     {
+      "children": [
+       {
+        "name": "Amortizaciones", 
+        "root_type": "Expense"
+       }
+      ], 
+      "name": "AMORTIZACIONES"
+     }
+    ], 
+    "name": "PERDIDAS"
+   }
+  ], 
+  "name": "Uruguay - Plan de Cuentas"
+ }
+}
\ No newline at end of file
diff --git a/setup/doctype/global_defaults/global_defaults.js b/setup/doctype/global_defaults/global_defaults.js
index 246bacf..fa80025 100644
--- a/setup/doctype/global_defaults/global_defaults.js
+++ b/setup/doctype/global_defaults/global_defaults.js
@@ -19,12 +19,4 @@
 	$c_obj(make_doclist(cdt, cdn), 'get_defaults', '', function(r, rt){
 		sys_defaults = r.message;
 	});
-}
-
-cur_frm.fields_dict['default_territory'].get_query = function(doc,cdt,cdn) {
-	return 'SELECT `tabTerritory`.`name`,`tabTerritory`.`parent_territory` FROM `tabTerritory` WHERE `tabTerritory`.`is_group` = "No" AND `tabTerritory`.`docstatus`!= 2 AND `tabTerritory`.%(key)s LIKE "%s"  ORDER BY  `tabTerritory`.`name` ASC LIMIT 50';
-}
-
-cur_frm.fields_dict['default_customer_group'].get_query = function(doc,cdt,cdn) {
-	return 'SELECT `tabCustomer Group`.`name`, `tabCustomer Group`.`parent_customer_group` FROM `tabCustomer Group` WHERE `tabCustomer Group`.`is_group` = "No" AND `tabCustomer Group`.`docstatus`!= 2 AND `tabCustomer Group`.%(key)s LIKE "%s" ORDER BY	`tabCustomer Group`.`name` ASC LIMIT 50';
 }
\ No newline at end of file
diff --git a/setup/doctype/global_defaults/global_defaults.py b/setup/doctype/global_defaults/global_defaults.py
index 349bba5..52a291f 100644
--- a/setup/doctype/global_defaults/global_defaults.py
+++ b/setup/doctype/global_defaults/global_defaults.py
@@ -27,18 +27,10 @@
 	'company': 'default_company',
 	'currency': 'default_currency',
 	'hide_currency_symbol':'hide_currency_symbol',
-	'price_list_name': 'default_price_list',
-	'price_list_currency': 'default_price_list_currency',
-	'customer_group': 'default_customer_group',
-	'cust_master_name': 'cust_master_name', 
-	'supplier_type': 'default_supplier_type',
-	'supp_master_name': 'supp_master_name', 
-	'territory': 'default_territory',
 	'date_format': 'date_format',
 	'number_format': 'number_format',
 	'float_precision': 'float_precision',
 	'account_url':'account_url',
-	'maintain_same_rate' : 'maintain_same_rate',
 	'session_expiry': 'session_expiry',
 	'disable_rounded_total': 'disable_rounded_total'
 }
diff --git a/setup/doctype/global_defaults/global_defaults.txt b/setup/doctype/global_defaults/global_defaults.txt
index 7f17f16..98a428c 100644
--- a/setup/doctype/global_defaults/global_defaults.txt
+++ b/setup/doctype/global_defaults/global_defaults.txt
@@ -2,7 +2,7 @@
  {
   "creation": "2013-05-02 17:53:24", 
   "docstatus": 0, 
-  "modified": "2013-06-24 17:07:55", 
+  "modified": "2013-06-25 11:20:40", 
   "modified_by": "Administrator", 
   "owner": "Administrator"
  }, 
@@ -24,8 +24,7 @@
   "parent": "Global Defaults", 
   "parentfield": "fields", 
   "parenttype": "DocType", 
-  "permlevel": 0, 
-  "read_only": 0
+  "permlevel": 0
  }, 
  {
   "amend": 0, 
@@ -49,72 +48,49 @@
  }, 
  {
   "doctype": "DocField", 
-  "fieldname": "general", 
+  "fieldname": "date_and_number_settings", 
   "fieldtype": "Section Break", 
-  "label": "General"
- }, 
- {
-  "description": "Session Expiry in Hours e.g. 06:00", 
-  "doctype": "DocField", 
-  "fieldname": "session_expiry", 
-  "fieldtype": "Data", 
-  "label": "Session Expiry"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "column_break_3", 
-  "fieldtype": "Column Break"
- }, 
- {
-  "description": "For Server Side Print Formats", 
-  "doctype": "DocField", 
-  "fieldname": "print_style", 
-  "fieldtype": "Select", 
-  "label": "Print Format Style", 
-  "options": "Standard\nClassic\nModern\nSpartan"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "company", 
-  "fieldtype": "Section Break", 
-  "label": "Company"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "default_company", 
-  "fieldtype": "Link", 
-  "label": "Default Company", 
-  "options": "Company", 
-  "reqd": 0
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "current_fiscal_year", 
-  "fieldtype": "Link", 
-  "label": "Current Fiscal Year", 
-  "options": "Fiscal Year", 
-  "reqd": 1
+  "label": "Date and Number Settings"
  }, 
  {
   "doctype": "DocField", 
   "fieldname": "date_format", 
   "fieldtype": "Select", 
   "label": "Date Format", 
-  "options": "yyyy-mm-dd\ndd-mm-yyyy\ndd/mm/yyyy\nmm/dd/yyyy\nmm-dd-yyyy"
+  "options": "yyyy-mm-dd\ndd-mm-yyyy\ndd/mm/yyyy\nmm/dd/yyyy\nmm-dd-yyyy", 
+  "read_only": 0
  }, 
  {
+  "default": "This is the default number format. For currencies, please set the number format in the currency master.", 
   "doctype": "DocField", 
-  "fieldname": "column_break1", 
-  "fieldtype": "Column Break", 
-  "width": "50%"
- }, 
- {
-  "description": "Do not show any symbol like $ etc next to currencies.", 
-  "doctype": "DocField", 
-  "fieldname": "hide_currency_symbol", 
+  "fieldname": "number_format", 
   "fieldtype": "Select", 
-  "label": "Hide Currency Symbol", 
-  "options": "\nNo\nYes"
+  "label": "Number Format", 
+  "options": "\n#,###.##\n#.###,##\n# ###.##\n#,###.###\n#,##,###.##\n#.###\n#,###", 
+  "read_only": 0
+ }, 
+ {
+  "description": "Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.", 
+  "doctype": "DocField", 
+  "fieldname": "float_precision", 
+  "fieldtype": "Select", 
+  "label": "Float Precision", 
+  "options": "\n2\n3\n4\n5\n6", 
+  "read_only": 0
+ }, 
+ {
+  "description": "If disable, 'Rounded Total' field will not be visible in any transaction", 
+  "doctype": "DocField", 
+  "fieldname": "disable_rounded_total", 
+  "fieldtype": "Check", 
+  "label": "Disable Rounded Total", 
+  "read_only": 0
+ }, 
+ {
+  "doctype": "DocField", 
+  "fieldname": "currency_settings", 
+  "fieldtype": "Section Break", 
+  "label": "Currency Settings"
  }, 
  {
   "default": "INR", 
@@ -123,164 +99,87 @@
   "fieldtype": "Link", 
   "label": "Default Currency", 
   "options": "Currency", 
+  "read_only": 0, 
   "reqd": 1
  }, 
  {
-  "default": "This is the default number format. For currencies, please set the number format in the currency master.", 
+  "description": "Do not show any symbol like $ etc next to currencies.", 
   "doctype": "DocField", 
-  "fieldname": "number_format", 
+  "fieldname": "hide_currency_symbol", 
   "fieldtype": "Select", 
-  "label": "Number Format", 
-  "options": "\n#,###.##\n#.###,##\n# ###.##\n#,###.###\n#,##,###.##\n#.###\n#,###"
- }, 
- {
-  "description": "Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.", 
-  "doctype": "DocField", 
-  "fieldname": "float_precision", 
-  "fieldtype": "Select", 
-  "label": "Float Precision", 
-  "options": "\n2\n3\n4\n5\n6"
+  "label": "Hide Currency Symbol", 
+  "options": "\nNo\nYes", 
+  "read_only": 0
  }, 
  {
   "doctype": "DocField", 
-  "fieldname": "selling", 
+  "fieldname": "company", 
   "fieldtype": "Section Break", 
-  "label": "Selling"
- }, 
- {
-  "default": "Customer Name", 
-  "doctype": "DocField", 
-  "fieldname": "cust_master_name", 
-  "fieldtype": "Select", 
-  "label": "Customer Master created by ", 
-  "options": "Customer Name\nNaming Series"
+  "label": "Company Settings", 
+  "read_only": 0
  }, 
  {
   "doctype": "DocField", 
-  "fieldname": "default_customer_group", 
+  "fieldname": "default_company", 
   "fieldtype": "Link", 
-  "label": "Default Customer Group", 
-  "options": "Customer Group"
+  "label": "Default Company", 
+  "options": "Company", 
+  "read_only": 0, 
+  "reqd": 0
  }, 
  {
   "doctype": "DocField", 
-  "fieldname": "cghelp", 
-  "fieldtype": "HTML", 
-  "label": "CGHelp", 
-  "options": "<a href=\"#!Sales Browser/Customer Group\">To manage Customer Groups, click here</a>"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "default_territory", 
+  "fieldname": "current_fiscal_year", 
   "fieldtype": "Link", 
-  "label": "Default Territory", 
-  "options": "Territory"
+  "label": "Current Fiscal Year", 
+  "options": "Fiscal Year", 
+  "read_only": 0, 
+  "reqd": 1
  }, 
  {
   "doctype": "DocField", 
-  "fieldname": "territoryhelp", 
-  "fieldtype": "HTML", 
-  "label": "TerritoryHelp", 
-  "options": "<a href=\"#!Sales Browser/Territory\">To manage Territory, click here</a>"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "column_break5", 
-  "fieldtype": "Column Break", 
-  "width": "50%"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "default_price_list", 
-  "fieldtype": "Link", 
-  "label": "Default Price List", 
-  "options": "Price List"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "default_price_list_currency", 
-  "fieldtype": "Link", 
-  "label": "Default Price List Currency", 
-  "options": "Currency"
- }, 
- {
-  "default": "No", 
-  "doctype": "DocField", 
-  "fieldname": "so_required", 
-  "fieldtype": "Select", 
-  "label": "Sales Order Required", 
-  "options": "No\nYes"
- }, 
- {
-  "default": "No", 
-  "doctype": "DocField", 
-  "fieldname": "dn_required", 
-  "fieldtype": "Select", 
-  "label": "Delivery Note Required", 
-  "options": "No\nYes"
- }, 
- {
-  "description": "If disable, 'Rounded Total' field will not be visible in any transaction", 
-  "doctype": "DocField", 
-  "fieldname": "disable_rounded_total", 
-  "fieldtype": "Check", 
-  "label": "Disable Rounded Total"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "buying", 
+  "fieldname": "system", 
   "fieldtype": "Section Break", 
-  "label": "Buying"
+  "label": "System Settings", 
+  "read_only": 0
+ }, 
+ {
+  "description": "Session Expiry in Hours e.g. 06:00", 
+  "doctype": "DocField", 
+  "fieldname": "session_expiry", 
+  "fieldtype": "Data", 
+  "label": "Session Expiry", 
+  "read_only": 0
  }, 
  {
   "doctype": "DocField", 
-  "fieldname": "default_supplier_type", 
-  "fieldtype": "Link", 
-  "label": "Default Supplier Type", 
-  "options": "Supplier Type"
- }, 
- {
-  "default": "Supplier Name", 
-  "doctype": "DocField", 
-  "fieldname": "supp_master_name", 
-  "fieldtype": "Select", 
-  "label": "Supplier Master created by ", 
-  "options": "Supplier Name\nNaming Series"
+  "fieldname": "sms_sender_name", 
+  "fieldtype": "Data", 
+  "label": "SMS Sender Name", 
+  "read_only": 0
  }, 
  {
   "doctype": "DocField", 
-  "fieldname": "column_break6", 
+  "fieldname": "column_break_3", 
   "fieldtype": "Column Break", 
-  "width": "50%"
+  "read_only": 0
  }, 
  {
-  "default": "No", 
+  "description": "For Server Side Print Formats", 
   "doctype": "DocField", 
-  "fieldname": "po_required", 
+  "fieldname": "print_style", 
   "fieldtype": "Select", 
-  "label": "Purchase Order Required", 
-  "options": "No\nYes"
- }, 
- {
-  "default": "No", 
-  "doctype": "DocField", 
-  "fieldname": "pr_required", 
-  "fieldtype": "Select", 
-  "label": "Purchase Receipt Required", 
-  "options": "No\nYes"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "maintain_same_rate", 
-  "fieldtype": "Check", 
-  "label": "Maintain same rate throughout purchase cycle"
+  "label": "Print Format Style", 
+  "options": "Standard\nClassic\nModern\nSpartan", 
+  "read_only": 0
  }, 
  {
   "doctype": "DocField", 
   "fieldname": "hr", 
   "fieldtype": "Section Break", 
   "label": "HR", 
-  "options": "<div style=\"padding-top: 8px;\" class=\"columnHeading\">HR</div>"
+  "options": "<div style=\"padding-top: 8px;\" class=\"columnHeading\">HR</div>", 
+  "read_only": 0
  }, 
  {
   "description": "Employee record is created using selected field. ", 
@@ -288,19 +187,8 @@
   "fieldname": "emp_created_by", 
   "fieldtype": "Select", 
   "label": "Employee Records to be created by ", 
-  "options": "Naming Series\nEmployee Number"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "system", 
-  "fieldtype": "Section Break", 
-  "label": "System"
- }, 
- {
-  "doctype": "DocField", 
-  "fieldname": "sms_sender_name", 
-  "fieldtype": "Data", 
-  "label": "SMS Sender Name"
+  "options": "Naming Series\nEmployee Number", 
+  "read_only": 0
  }, 
  {
   "doctype": "DocPerm"
diff --git a/setup/doctype/setup_control/setup_control.py b/setup/doctype/setup_control/setup_control.py
index ebb528f..0f4f6a1 100644
--- a/setup/doctype/setup_control/setup_control.py
+++ b/setup/doctype/setup_control/setup_control.py
@@ -69,16 +69,10 @@
 			'current_fiscal_year':curr_fiscal_year,
 			'default_currency': args.get('currency'),
 			'default_company':args.get('company_name'),
-			'default_stock_uom':'Nos',
 			'date_format': webnotes.conn.get_value("Country", 
 				args.get("country"), "date_format"),
-			'so_required':'No',
-			'dn_required':'No',
-			'po_required':'No',
-			'pr_required':'No',
 			'emp_created_by':'Naming Series',
-			'cust_master_name':'Customer Name', 
-			'supp_master_name':'Supplier Name'
+			"float_precision": 4
 		}
 
 		# Set 
@@ -94,6 +88,19 @@
 		stock_settings.doc.auto_indent = 1
 		stock_settings.save()
 		
+		selling_settings = webnotes.bean("Selling Settings")
+		selling_settings.cust_master_name = "Customer Name"
+		selling_settings.doc.so_required = "No"
+		selling_settings.doc.dn_required = "No"
+		selling_settings.save()
+
+		buying_settings = webnotes.bean("Buying Settings")
+		buying_settings.doc.supp_master_name = "Supplier Name"
+		buying_settings.doc.po_required = "No"
+		buying_settings.doc.pr_required = "No"
+		buying_settings.doc.maintain_same_rate = 1
+		buying_settings.save()
+		
 		cp_args = {}
 		for k in ['industry', 'country', 'timezone', 'company_name']:
 			cp_args[k] = args[k]
diff --git a/startup/install.py b/startup/install.py
index 363c7ba..205bee4 100644
--- a/startup/install.py
+++ b/startup/install.py
@@ -42,6 +42,7 @@
 
 def post_import():
 	webnotes.conn.begin()
+
 	# feature setup
 	import_defaults()
 	import_country_and_currency()
diff --git a/stock/doctype/delivery_note/delivery_note.py b/stock/doctype/delivery_note/delivery_note.py
index fd74976..30647a1 100644
--- a/stock/doctype/delivery_note/delivery_note.py
+++ b/stock/doctype/delivery_note/delivery_note.py
@@ -104,7 +104,7 @@
 
 	def so_required(self):
 		"""check in manage account if sales order required or not"""
-		if webnotes.conn.get_value('Global Defaults', 'Global Defaults', 'so_required') == 'Yes':
+		if webnotes.conn.get_single_value("Selling Settings", 'so_required') == 'Yes':
 			 for d in getlist(self.doclist,'delivery_note_details'):
 				 if not d.prevdoc_docname:
 					 msgprint("Sales Order No. required against item %s"%d.item_code)
diff --git a/stock/doctype/purchase_receipt/purchase_receipt.py b/stock/doctype/purchase_receipt/purchase_receipt.py
index 83322c1..49b9bd0 100644
--- a/stock/doctype/purchase_receipt/purchase_receipt.py
+++ b/stock/doctype/purchase_receipt/purchase_receipt.py
@@ -95,8 +95,7 @@
 			Please enter a valid Challan No.", raise_exception=1)
 
 	def po_required(self):
-		res = sql("select value from `tabSingles` where doctype = 'Global Defaults' and field = 'po_required'")
-		if res and res[0][0]== 'Yes':
+		if webnotes.conn.get_single_value("Buying Settings", "po_required") == 'Yes':
 			 for d in getlist(self.doclist,'purchase_receipt_details'):
 				 if not d.prevdoc_docname:
 					 msgprint("Purchse Order No. required against item %s"%d.item_code)
diff --git a/stock/page/stock_home/stock_home.js b/stock/page/stock_home/stock_home.js
index 3b6af03..c92c6fe 100644
--- a/stock/page/stock_home/stock_home.js
+++ b/stock/page/stock_home/stock_home.js
@@ -105,7 +105,7 @@
 				"label": wn._("Stock Settings"),
 				"route": "Form/Stock Settings",
 				"doctype":"Stock Settings",
-				"description": "Settings for Stock"
+				"description": "Settings for Stock Module"
 			},
 			{
 				"route":"Sales Browser/Item Group",
diff --git a/support/doctype/support_ticket/get_support_mails.py b/support/doctype/support_ticket/get_support_mails.py
index 82ae9a3..fd3d3ea 100644
--- a/support/doctype/support_ticket/get_support_mails.py
+++ b/support/doctype/support_ticket/get_support_mails.py
@@ -47,7 +47,7 @@
 			ticket = webnotes.bean([{
 				"doctype":"Support Ticket",
 				"description": mail.content,
-				"subject": mail.mail["Subject"],
+				"subject": mail.subject,
 				"raised_by": mail.from_email,
 				"content_type": mail.content_type,
 				"status": "Open",