diff --git a/Albania/ALB_export_excel_output.py b/Albania/ALB_export_excel_output.py index d9a9326..6ba67f5 100644 --- a/Albania/ALB_export_excel_output.py +++ b/Albania/ALB_export_excel_output.py @@ -35,8 +35,7 @@ TARGET_TABLE = 'prd_mega.boost.alb_publish' TARGET_TABLE_REVENUE = 'prd_mega.boost_intermediate.alb_boost_rev_gold' OUTPUT_MISSING_DESC_FILE_PATH = f"{OUTPUT_DIR}/Albania_missing_code_descriptions.xlsx" - - +TAG_MAPPING_PATH = "../quality/tag_code_mapping.csv" # COMMAND ---------- @@ -47,7 +46,7 @@ .cache() ) -tag_code_mapping = pd.read_csv(TAG_MAPPING_URL) +tag_code_mapping = pd.read_csv(TAG_MAPPING_PATH) years = [str(year) for year in sorted(raw_data.select("year").distinct().rdd.flatMap(lambda x: x).collect())] def create_pivot(df, parent, child, agg_col ): @@ -55,7 +54,7 @@ def create_pivot(df, parent, child, agg_col ): # Step 1: Get detailed level e.g. (econ + econ_sub + year) detailed = ( - df.groupBy(parent, child, "boost_year") + df.groupBy(parent, child, "year") .agg(F.sum(agg_col).alias(agg_col)) .withColumnRenamed(parent, "parent") .withColumnRenamed(child, "child") @@ -63,19 +62,19 @@ def create_pivot(df, parent, child, agg_col ): # Step 2: Get subtotals at parent level e.g (econ + year), econ_sub = 'Subtotal' subtotals = ( - df.groupBy(parent, "boost_year") + df.groupBy(parent, "year") .agg(F.sum(agg_col).alias(agg_col)) .withColumn("child", F.lit("Subtotal")) # Ensure same schema .withColumnRenamed(parent, "parent") ) # Step 3: Union both - combined = detailed.unionByName(subtotals).filter(F.col("boost_year").isNotNull()) + combined = detailed.unionByName(subtotals).filter(F.col("year").isNotNull()) # Step 4: Pivot to wide format pivoted = ( combined.groupBy("parent", "child") - .pivot("boost_year") + .pivot("year") .agg(F.sum(agg_col)) .fillna(0) # Replace NaNs with 0 ) @@ -98,26 +97,26 @@ def create_pivot(df, parent, child, agg_col ): def create_pivot_total(df, agg_col): # Step 1: Calculate total expenditure by year total = ( - df.groupBy("boost_year") + df.groupBy("year") .agg(F.sum(agg_col).alias(agg_col)) .withColumn("code", F.lit("EXP_ECON_TOT_EXP_EXE")) ) # Step 2: Calculate foreign expenditure by year foreign_total = ( - df.filter(F.col("boost_is_foreign") == True) - .groupBy("boost_year") + df.filter(F.col("is_foreign") == True) + .groupBy("year") .agg(F.sum(agg_col).alias(agg_col)) .withColumn("code", F.lit("EXP_ECON_TOT_EXP_FOR_EXE")) ) # Step 3: Combine total and foreign expenditure - combined = total.unionByName(foreign_total).filter(F.col("boost_year").isNotNull()) + combined = total.unionByName(foreign_total).filter(F.col("year").isNotNull()) # Step 4: Pivot to wide format pivoted = ( combined.groupBy("code") - .pivot("boost_year") + .pivot("year") .agg(F.first(agg_col)) .fillna(0) ) @@ -125,7 +124,16 @@ def create_pivot_total(df, agg_col): # COMMAND ---------- -pairs = [('boost_econ', 'boost_econ_sub'), ('boost_func', 'boost_econ_sub'), ('boost_func', 'boost_econ'), ('boost_func', 'boost_func_sub'), ('boost_func_sub', 'boost_econ'), ('boost_func_sub', 'boost_econ_sub')] +pairs = [ + ("boost_econ", "boost_econ_sub"), + ("boost_func", "boost_econ_sub"), + ("boost_func", "boost_econ"), + ("boost_func", "boost_func_sub"), + ("boost_func_sub", "boost_econ"), + ("boost_func_sub", "boost_econ_sub"), +] + +filtered_raw_data = raw_data.filter(col('transfer') == 'Excluding transfers') def generate_combined_pivots(pairs, agg_col): # Initialize an empty DataFrame for combining results @@ -133,8 +141,8 @@ def generate_combined_pivots(pairs, agg_col): for parent, child in pairs: # Create pivot for central and regional levels - pivoted = create_pivot(raw_data, parent, child,agg_col) - + pivoted = create_pivot(filtered_raw_data, parent, child, agg_col) + # Combine the results if combined is None: combined = pivoted @@ -142,12 +150,13 @@ def generate_combined_pivots(pairs, agg_col): combined = combined.unionByName(pivoted) # Add totals to the combined DataFrame - totals = create_pivot_total(raw_data, agg_col) + totals = create_pivot_total(filtered_raw_data, agg_col) combined = combined.unionByName(totals) return combined -executed = generate_combined_pivots(pairs, "boost_executed") -approved = generate_combined_pivots(pairs, "boost_approved") + +executed = generate_combined_pivots(pairs, "executed") +approved = generate_combined_pivots(pairs, "approved") # COMMAND ---------- diff --git a/Albania/ALB_extract_raw_microdata_excel_to_csv.py b/Albania/ALB_extract_raw_microdata_excel_to_csv.py index d688e1d..3aa43f4 100644 --- a/Albania/ALB_extract_raw_microdata_excel_to_csv.py +++ b/Albania/ALB_extract_raw_microdata_excel_to_csv.py @@ -10,6 +10,10 @@ raw_microdata_csv_dir = prepare_raw_microdata_csv_dir(COUNTRY) ADMIN2_PAD_LENGTH = 3 +# admin2 to admin2_new mapping +mapping = pd.read_csv('./mapping.csv') +mapping = mapping[['admin2', 'admin2_new', 'county']].rename(columns={'admin2': 'admin2_tmp'}).astype({'admin2_new': 'str'}) + col_format_map_7 = { "admin2": r"\d{3}", "admin3": r"\d{2}", @@ -189,6 +193,8 @@ def format_float(x): df = pd.concat([df_7, df_3], ignore_index=True) df['counties'] = df.admin2.map(lambda x: map_to_region(pad_left(str(x).split('.')[0], length=ADMIN2_PAD_LENGTH))) + df['admin2_tmp'] = df.admin2.astype(int) + df = df.merge(mapping, on='admin2_tmp', how='left').drop(columns=['admin2_tmp']) outfile = f'{raw_microdata_csv_dir}/{year}.csv' df.to_csv(outfile, index=False) @@ -217,5 +223,11 @@ def format_float(x): df = pd.concat([df_7_rev, df_46655], ignore_index=True) df['year'] = year + df['admin2_tmp'] = df.admin2.astype(int) + df = df.merge(mapping, on='admin2_tmp', how='left').drop(columns=['admin2_tmp']) outfile = f'{raw_microdata_csv_dir}/{year}_rev.csv' df.to_csv(outfile, index=False) + +# COMMAND ---------- + +df diff --git a/Albania/ALB_rev_transform_load_raw_dlt.py b/Albania/ALB_rev_transform_load_raw_dlt.py index 723f12e..95093c1 100644 --- a/Albania/ALB_rev_transform_load_raw_dlt.py +++ b/Albania/ALB_rev_transform_load_raw_dlt.py @@ -167,6 +167,7 @@ def alb_2022_and_before_boost_rev_gold(): 'admin0', 'admin1', 'admin2', + 'admin2_new', 'admin3', 'admin4', 'econ1', @@ -189,6 +190,7 @@ def alb_2023_onward_boost_rev_gold(): 'admin0', 'admin1', 'admin2', + 'admin2_new', 'admin3', 'admin4', 'econ1', diff --git a/Albania/ALB_transform_load_raw_dlt.py b/Albania/ALB_transform_load_raw_dlt.py index 0c498f9..fa51e73 100644 --- a/Albania/ALB_transform_load_raw_dlt.py +++ b/Albania/ALB_transform_load_raw_dlt.py @@ -24,7 +24,7 @@ "escape": '"', } -with open(f"{RAW_INPUT_DIR}/{COUNTRY}/labels_en_v01_overall.json", 'r') as json_file: +with open(f"./labels_en_v01_overall.json", 'r') as json_file: labels = json.load(json_file) with open(f"{RAW_INPUT_DIR}/{COUNTRY}/project_labels.json", 'r') as json_file: @@ -36,13 +36,14 @@ def replace_value(value): if value is None: return value value_str = str(value).split('.')[0] - return labels.get(column_name, {}).get(value_str, value_str) + column_labels = labels.get(column_name, {}) + return column_labels.get(value_str, column_labels.get("__default__", value_str)) return udf(replace_value, StringType()) @dlt.expect_or_drop("year_not_null", "Year IS NOT NULL") @dlt.table(name=f'alb_2023_onward_boost_bronze') def boost_2023_onward_bronze(): - file_paths = glob(f"{RAW_COUNTRY_MICRODATA_DIR}/*.csv") + file_paths = [file for file in glob(f"{RAW_COUNTRY_MICRODATA_DIR}/*.csv" ) if ('rev' not in file.lower())] dfs = [] for f in file_paths: df = (spark.read @@ -110,7 +111,7 @@ def boost_silver(): ).withColumn("program1", col("func3") ).withColumn("func3", col("func3").cast("double") # substituting with values from func3_n for those where the code is alphanumeric ).withColumn("func3_n", - when((col("year") == 2023) & col("func3").isNull() & (col("program1") != ""), + when((col("year") >= 2023) & col("func3").isNull() & (col("program1") != ""), substring(col("project"), 2, 3)) .otherwise(lit(None)) ).withColumn("func3_n", when(col("func3_n").isNotNull(), concat(col("func3_n"), lit("0"))) @@ -119,7 +120,7 @@ def boost_silver(): concat(lit("1"), col("func3_n"))) .otherwise(col("func3_n")) ).withColumn("func3_n", col("func3_n").cast("double") - ).withColumn("func3", when((col("year") == 2023) & col("func3").isNull() & (col("program1") != ""), + ).withColumn("func3", when((col("year") >= 2023) & col("func3").isNull() & (col("program1") != ""), col("func3_n")) .otherwise(col("func3")) ).withColumn("func1", (col("func3") / 1000).cast("int") @@ -179,7 +180,7 @@ def boost_silver(): .otherwise(col('counties')) ).withColumn('admin2_tmp', when(col('admin2').startswith('00'), 'Central') - .otherwise(col('admin2')) + .otherwise(col('admin2_new')) ).withColumn('geo1', col('admin1_tmp') ).withColumn('func_sub', # spending in Judiciary @@ -260,7 +261,6 @@ def boost_silver(): .when(col('econ2').startswith('65') | col('econ2').startswith('66'), 'Interest on debt') # other expenses .otherwise('Other expenses') - ).withColumn('admin2_new', col('admin2') ) return silver_df @@ -268,8 +268,7 @@ def boost_silver(): @dlt.table(name=f'alb_2022_and_before_boost_silver') def boost_silver(): return (dlt.read(f'alb_2022_and_before_boost_bronze') - .filter(col('transfer') == 'Excluding transfers' - ).withColumn('is_foreign', col('fin_source').startswith('2') + .withColumn('is_foreign', col('fin_source').startswith('2') ).withColumn('admin0', when(col('admin2').startswith('00') | col('admin2').startswith('999'), 'Central') .otherwise('Regional') @@ -380,6 +379,7 @@ def alb_2022_and_before_boost_gold(): 'func', 'econ_sub', 'econ', + 'transfer', 'id') ) @@ -387,7 +387,6 @@ def alb_2022_and_before_boost_gold(): @dlt.table(name=f'alb_2023_onward_boost_gold') def alb_2023_onward_boost_gold(): return (dlt.read(f'alb_2023_onward_boost_silver') - .filter(col('transfer')=='Excluding transfers') .withColumn('country_name', lit(COUNTRY)) .select('country_name', 'year', @@ -403,6 +402,7 @@ def alb_2023_onward_boost_gold(): 'func', 'econ_sub', 'econ', + 'transfer', 'id') ) @@ -410,27 +410,22 @@ def alb_2023_onward_boost_gold(): def alb_boost_gold(): df_before_2023 = dlt.read("alb_2022_and_before_boost_gold") df_from_2023 = dlt.read("alb_2023_onward_boost_gold") - - return df_before_2023.unionByName(df_from_2023).drop("id") + + return df_before_2023.unionByName(df_from_2023).drop("id").filter(col('transfer') == 'Excluding transfers') @dlt.table(name='boost.alb_publish', comment='The Ministry of Finance of Albania together with the World Bank developed and published a BOOST platform obtained from the National Treasury System in order to facilitate access to the detailed public finance data for comprehensive budget analysis. In this context, the Albania BOOST Public Finance Portal aims to strengthen the disclosure and demand for availability of public finance information at all level of government in the country from 2010 onward.Note that 2020 execution only covers 6 months.') def alb_publish(): - alb_bronze_before_2023 = dlt.read('alb_2022_and_before_boost_bronze') - alb_bronze_from_2023 = dlt.read('alb_2023_onward_boost_silver') - col_list = [col for col in alb_bronze_before_2023.columns if col in alb_bronze_from_2023.columns] - alb_bronze_from_2023 = alb_bronze_from_2023.select(col_list) - alb_bronze_before_2023 = alb_bronze_before_2023.select(col_list) - alb_bronze_union = alb_bronze_before_2023.unionByName(alb_bronze_from_2023) - - alb_gold_from_2023 = dlt.read(f'alb_2023_onward_boost_gold') - alb_gold_before_2023 = dlt.read('alb_2022_and_before_boost_gold') - alb_gold_union = alb_gold_before_2023.unionByName(alb_gold_from_2023) - + alb_silver_from_2023 = dlt.read(f'alb_2023_onward_boost_silver').drop('id','src','program1', 'func3_n', 'program_tmp') + alb_silver_before_2023 = dlt.read('alb_2022_and_before_boost_silver').drop('county') + alb_silver_union = alb_silver_before_2023.unionByName(alb_silver_from_2023, allowMissingColumns=True) + BOOST_COLS = ['func', 'func_sub', 'econ', 'econ_sub', 'admin0', 'admin1_tmp', 'admin2_tmp','geo1'] prefix = "boost_" - for column in alb_gold_union.columns: - alb_gold_union = alb_gold_union.withColumnRenamed(column, prefix + column) - - return alb_bronze_union.join(alb_gold_union, on=[alb_gold_union['boost_id'] == alb_bronze_union['id']], how='left').drop("id", "boost_id") - + for column in BOOST_COLS: + if column == 'admin2_tmp' or column == 'admin1_tmp': + new_column = prefix +column.split("_")[0] + else: + new_column = prefix + column + alb_silver_union = alb_silver_union.withColumnRenamed(column,new_column) + return alb_silver_union diff --git a/Albania/labels_en_v01_overall.json b/Albania/labels_en_v01_overall.json new file mode 100644 index 0000000..af1f76d --- /dev/null +++ b/Albania/labels_en_v01_overall.json @@ -0,0 +1,4787 @@ +{ + "admin1": { + "1": "Central", + "2": "Local", + "0": "Other" + }, + "admin2": { + "001": "001 Central Government Fund", + "003": "003 Social Insurance Institute", + "004": "004 Health Insurance Institute", + "006": "006 Former Owners Compensation Fund", + "010": "010 Region Elbasan-Gramsh", + "011": "011 Region Gjirokaster", + "012": "012 Region Kukes-Has", + "013": "013 Region Tirane-Kavaje", + "014": "014 Region Korce-Kolonje", + "015": "015 Region Korce", + "016": "016 Region Durres-Kruje", + "017": "017 Region Berat", + "018": "018 Region Kukes", + "019": "019 Region Lezhe-La\u00e7", + "020": "020 Region Lezhe", + "021": "021 Region Elbasan-Librazhd", + "022": "022 Region Berat-Lushnje", + "023": "023 Region Shkoder-Malesi Madhe", + "024": "024 Region Fier-Mallakaster", + "025": "025 Region Diber-Mat", + "026": "026 Region Lezhe-Mirdite", + "027": "027 Region Elbasan-Peqin", + "028": "028 Region Gjirokaster-Permet", + "029": "029 Region Korce-Pogradec", + "030": "030 Region Lezhe-Puke", + "031": "031 Region Vlore-Sarande", + "032": "032 Region Berat-Skrapar", + "033": "033 Region Shkoder", + "034": "034 Region Gjirokaster-Tepelene", + "035": "035 Region Tirane", + "036": "036 Region Kukes-Tropoje", + "037": "037 Region Vlore", + "042": "042 Region Berat", + "043": "043 Region Diber-Bulqize", + "044": "044 Region Vlore-Delvine", + "045": "045 Region Korce-Devoll", + "046": "046 Region Diber-Diber", + "047": "047 Region Durres-Durres", + "048": "048 Region Elbasan-Elbasan", + "049": "049 Region Fier-Fier", + "101": "101 Municipality of Tirana", + "102": "102 Municipality of Berat", + "103": "103 Municipality of Bulqize", + "104": "104 Municipality of Delvine", + "105": "105 Municipality of Devoll", + "106": "106 Municipality of Diber", + "107": "107 Municipality of Durres", + "108": "108 Municipality of Shijak", + "109": "109 Municipality of Elbasan", + "110": "110 Municipality of Cerrik", + "111": "111 Municipality of Fier", + "112": "112 Municipality of Patos", + "113": "113 Municipality of Roskovec", + "114": "114 Municipality of Gramsh", + "115": "115 Municipality of Gjirokaster", + "116": "116 Municipality of Libohove", + "117": "117 Municipality of Has", + "118": "118 Municipality of Kavaja", + "119": "119 Municipality of Rogozhine", + "120": "120 Municipality of Kolonje", + "121": "121 Municipality of Leskovik", + "122": "122 Municipality of Korce", + "123": "123 Municipality of Kruje", + "124": "124 Municipality of Kucove", + "125": "125 Municipality of Kukes", + "126": "126 Municipality of Kurbin", + "127": "127 Municipality of Lezhe", + "128": "128 Municipality of Librazhd", + "129": "129 Municipality of Lushnje", + "130": "130 Municipality of Malesi e Madhe", + "131": "131 Municipality of Mallakaster", + "132": "132 Municipality of Mat", + "133": "133 Municipality of Mirdite", + "134": "134 Municipality of Peqin", + "135": "135 Municipality of Permet", + "136": "136 Municipality of Pogradec", + "137": "137 Municipality of Puke", + "138": "138 Municipality of Sarande", + "139": "139 Municipality of Skrapar", + "140": "140 Municipality of Polican", + "141": "141 Municipality of Shkoder", + "142": "142 Municipality of Tepelene", + "143": "143 Municipality of Memaliaj", + "145": "145 Municipality of Tropoje", + "146": "146 Municipality of Vlore", + "147": "147 Municipality of Divjake", + "150": "150 Municipality of Manez", + "151": "151 Municipality of Sukth", + "152": "152 Municipality of Belsh", + "153": "153 Municipality of Prenjas", + "154": "154 Municipality of Kelcyre", + "155": "155 Municipality of Fushe-Arrez", + "156": "156 Municipality of Konispol", + "157": "157 Municipality of Vau-Dejes", + "158": "158 Municipality of Orikum", + "159": "159 Municipality of Selenice", + "160": "160 Municipality of Himare", + "162": "162 Municipality of Mamuras", + "163": "163 Municipality of Fushe Kruje", + "164": "164 Municipality of Rubik", + "165": "165 Municipality of Vore", + "166": "166 Municipality of Kamez", + "167": "167 Municipality of Ura Vajgurore", + "168": "168 Municipality of Maliq", + "302": "302 Commune of Poshnje", + "303": "303 Commune of Kutalli", + "304": "304 Commune of Otllak", + "305": "305 Commune of Lumas", + "306": "306 Commune of Sinje", + "307": "307 Commune of Terpan", + "308": "308 Commune of Velabisht", + "309": "309 Commune of Vertop", + "310": "310 Commune of Roshnik", + "311": "311 Commune of Cukalat", + "315": "315 Commune of Fushe Bulqize", + "316": "316 Commune of Klenje", + "317": "317 Commune of Ostren", + "318": "318 Commune of Shupenze", + "319": "319 Commune of Gjorice", + "320": "320 Commune of Zerqan", + "321": "321 Commune of Martanesh", + "325": "325 Commune of Vergo", + "326": "326 Commune of Finiq", + "328": "328 Commune of Mesopotam", + "335": "335 Commune of Miras", + "336": "336 Commune of Bilisht", + "337": "337 Commune of Morave", + "338": "338 Commune of Proger", + "345": "345 Commune of Qender", + "346": "346 Commune of Melan", + "347": "347 Commune of Kastriot", + "348": "348 Commune of Lure", + "349": "349 Commune of Maqellare", + "350": "350 Commune of Fushe Murre", + "351": "351 Commune of Selisht", + "352": "352 Commune of Sllove", + "353": "353 Commune of Kala E Dodes", + "354": "354 Commune of Zall Dardhe", + "355": "355 Commune of Zall Rec", + "356": "356 Commune of Fushe Cidhen", + "357": "357 Commune of Arras", + "358": "358 Commune of Luzni", + "365": "365 Commune of Rashbull", + "366": "366 Commune of Xhafzotaj", + "367": "367 Commune of Gjepalaj", + "368": "368 Commune of Katundi I Ri", + "370": "370 Commune of Maminas", + "372": "372 Commune of Ishem", + "381": "381 Commune of Bradashesh", + "382": "382 Commune of Funar", + "383": "383 Commune of Gostime", + "384": "384 Commune of Gracen", + "385": "385 Commune of Grekan", + "386": "386 Commune of Gjinar", + "387": "387 Commune of Gjergjan", + "388": "388 Commune of Kajan", + "389": "389 Commune of Fierze", + "390": "390 Commune of Klos", + "391": "391 Commune of Labinot Mal", + "392": "392 Commune of Labinot Fushe", + "393": "393 Commune of Mollas", + "394": "394 Commune of Paper", + "395": "395 Commune of Rrase", + "396": "396 Commune of Shales", + "397": "397 Commune of Shirgjan", + "398": "398 Commune of Shushice", + "399": "399 Commune of Tregan", + "400": "400 Commune of Zavaline", + "410": "410 Commune of Mbrostare", + "411": "411 Commune of Libofsh", + "412": "412 Commune of Dermenas", + "413": "413 Commune of Topoje", + "414": "414 Commune of Levan", + "415": "415 Commune of Frakull", + "416": "416 Commune of Portez", + "417": "417 Commune of Qender", + "418": "418 Commune of Ruzhdie", + "419": "419 Commune of Zharres", + "420": "420 Commune of Kurjan", + "421": "421 Commune of Kuman", + "422": "422 Commune of Strume", + "423": "423 Commune of Cakran", + "430": "430 Commune of Pishaj", + "431": "431 Commune of Kodovjak", + "432": "432 Commune of Kukur", + "433": "433 Commune of Skenderbeg", + "434": "434 Commune of Porocan", + "435": "435 Commune of Lenie", + "436": "436 Commune of Tunje", + "437": "437 Commune of Sult", + "438": "438 Commune of Kushove", + "445": "445 Commune of Qender Libohove", + "446": "446 Commune of Odrie", + "447": "447 Commune of Lunxheri", + "448": "448 Commune of Antigone", + "449": "449 Commune of Lazarat", + "450": "450 Commune of Cepo", + "451": "451 Commune of Picar", + "452": "452 Commune of Dropull i Poshtem", + "453": "453 Commune of Dropull i Siperm", + "454": "454 Commune of Pogon", + "455": "455 Commune of Zagorie", + "460": "460 Commune of Golaj", + "461": "461 Commune of Fajze", + "462": "462 Commune of Gjinaj", + "470": "470 Commune of Lekaj", + "471": "471 Commune of Luz i Vogel", + "472": "472 Commune of Helmes", + "473": "473 Commune of Kryevidh", + "474": "474 Commune of Synej", + "475": "475 Commune of Golem", + "476": "476 Commune of Sinoballaj", + "477": "477 Commune of Gose", + "485": "485 Commune of Qender", + "486": "486 Commune of Mollas", + "487": "487 Commune of Clirim", + "488": "488 Commune of Barmash", + "489": "489 Commune of Piskal-Novosel", + "490": "490 Commune of Leskovik", + "495": "495 Commune of Maliq", + "496": "496 Commune of Voskopoje", + "497": "497 Commune of Lekas", + "498": "498 Commune of Vithkuq", + "499": "499 Commune of Pustec", + "500": "500 Commune of Pojan", + "501": "501 Commune of Vreshtas", + "502": "502 Commune of Libonik", + "503": "503 Commune of Prig", + "504": "504 Commune of Gore", + "505": "505 Commune of Moglice", + "506": "506 Commune of Voskop", + "507": "507 Commune of Drenove", + "508": "508 Commune of Mollaj", + "509": "509 Commune of Qender", + "520": "520 Commune of Fushe - Kruje", + "521": "521 Commune of Nikel", + "522": "522 Commune of Bubq", + "523": "523 Commune of Koder Thumane", + "524": "524 Commune of Cudhi", + "530": "530 Commune of Perondi", + "531": "531 Commune of Kozare", + "540": "540 Commune of Malzi", + "541": "541 Commune of Bicaj", + "542": "542 Commune of Ujemisht", + "543": "543 Commune of Terthore", + "544": "544 Commune of Shtiqen", + "545": "545 Commune of Orgjost", + "546": "546 Commune of Shishtavec", + "547": "547 Commune of Topojan", + "548": "548 Commune of Bushtrice", + "549": "549 Commune of Surroj", + "550": "550 Commune of Arren", + "551": "551 Commune of Kolsh", + "552": "552 Commune of Kalis", + "553": "553 Commune of Gryke e Cajes", + "560": "560 Commune of Milot", + "561": "561 Commune of Mamurras", + "562": "562 Commune of Fushe Kuqe", + "570": "570 Commune of Zejmen", + "571": "571 Commune of Shenkoll", + "572": "572 Commune of Shengjin", + "573": "573 Commune of Kolsh", + "574": "574 Commune of Balldren i Ri", + "575": "575 Commune of Kallmet i Madh", + "576": "576 Commune of Ungrej", + "577": "577 Commune of Dajc", + "578": "578 Commune of Blinisht", + "585": "585 Commune of Prenjas", + "586": "586 Commune of Qukes", + "587": "587 Commune of Stravaj", + "588": "588 Commune of Hotolisht", + "589": "589 Commune of Polis", + "590": "590 Commune of Qender", + "591": "591 Commune of Lunik", + "592": "592 Commune of Orenje", + "593": "593 Commune of Sterbleve", + "594": "594 Commune of Rajce", + "600": "600 Commune of Ballagat", + "601": "601 Commune of Hysgjokaj", + "602": "602 Commune of Golem", + "603": "603 Commune of Fier-Shegan", + "604": "604 Commune of Karbunare", + "605": "605 Commune of Allkaj", + "606": "606 Commune of Krutje", + "607": "607 Commune of Bubullime", + "608": "608 Commune of Kolonje", + "609": "609 Commune of Gradisht", + "610": "610 Commune of Remas", + "611": "611 Commune of Divjake", + "612": "612 Commune of Grabian", + "613": "613 Commune of Terbuf", + "614": "614 Commune of Dushk", + "625": "625 Commune of Qender", + "626": "626 Commune of Kelmend", + "627": "627 Commune of Kastrat", + "628": "628 Commune of Shkrel", + "629": "629 Commune of Gruemire", + "635": "635 Commune of Fshat Ballsh", + "636": "636 Commune of Hekal", + "637": "637 Commune of Aranitas", + "638": "638 Commune of Fratar", + "639": "639 Commune of Kute", + "640": "640 Commune of Kapaj", + "641": "641 Commune of Ngracan", + "642": "642 Commune of Greshice", + "645": "645 Commune of Komsi", + "646": "646 Commune of Ulez", + "647": "647 Commune of Baz", + "648": "648 Commune of Rukaj", + "649": "649 Commune of Derjan", + "650": "650 Commune of Macukull", + "651": "651 Commune of Lis", + "652": "652 Commune of Suc", + "653": "653 Commune of Gurre", + "654": "654 Commune of Klos", + "655": "655 Commune of Xiber", + "656": "656 Commune of Martanesh", + "665": "665 Commune of Rubik", + "666": "666 Commune of Kacinar", + "667": "667 Commune of Orosh", + "668": "668 Commune of Fan", + "669": "669 Commune of Kthelle", + "670": "670 Commune of Selite", + "680": "680 Commune of Gjocaj", + "681": "681 Commune of Karine", + "682": "682 Commune of Pajove", + "683": "683 Commune of Perparim", + "684": "684 Commune of Sheze", + "690": "690 Commune of Carcove", + "691": "691 Commune of Qender Piskove", + "692": "692 Commune of Kelcyre", + "693": "693 Commune of Suke", + "694": "694 Commune of Ballaban", + "695": "695 Commune of Frasher", + "696": "696 Commune of Dishnice", + "697": "697 Commune of Petran", + "700": "700 Commune of Bucimas", + "701": "701 Commune of Hundenisht", + "702": "702 Commune of Proptisht", + "703": "703 Commune of Velcan", + "704": "704 Commune of Trebinje", + "705": "705 Commune of Dardhas", + "706": "706 Commune of Cerrave", + "715": "715 Commune of Qerret", + "716": "716 Commune of Qelez", + "717": "717 Commune of Fushe Arrez", + "718": "718 Commune of Gojan i Madh", + "719": "719 Commune of Fierze", + "720": "720 Commune of Iballe", + "721": "721 Commune of Blerim", + "722": "722 Commune of Qafe-Mali", + "723": "723 Commune of Rrape", + "730": "730 Commune of Lukove", + "731": "731 Commune of Dhiver", + "732": "732 Commune of Livadhja", + "733": "733 Commune of Konispol", + "734": "734 Commune of Xarre", + "735": "735 Commune of Markat", + "736": "736 Commune of Ksamil", + "737": "737 Commune of Aliko", + "740": "740 Commune of Qender", + "741": "741 Commune of Potom", + "742": "742 Commune of Leshnje", + "743": "743 Commune of Cepan", + "744": "744 Commune of Vendreshe", + "745": "745 Commune of Bogove", + "746": "746 Commune of Zhepe", + "747": "747 Commune of Gjerbez", + "755": "755 Commune of Postribe", + "756": "756 Commune of Pult", + "757": "757 Commune of Shosh", + "758": "758 Commune of Shale", + "759": "759 Commune of Shllak", + "760": "760 Commune of Guri i Zi", + "761": "761 Commune of Vig Mnelle", + "762": "762 Commune of Hajmel", + "763": "763 Commune of Lac", + "764": "764 Commune of Bushat", + "765": "765 Commune of Berdice", + "766": "766 Commune of Velipoje", + "767": "767 Commune of Dajc-Bregbune", + "768": "768 Commune of Ana Malit", + "769": "769 Commune of Rrethinat e Shkodres", + "770": "770 Commune of Temal", + "771": "771 Commune of Barbullush", + "780": "780 Commune of Qender", + "781": "781 Commune of Fshat Memaliaj", + "782": "782 Commune of Krahes", + "783": "783 Commune of Qesarat", + "784": "784 Commune of Luftinje", + "785": "785 Commune of Buz", + "786": "786 Commune of Kurvelesh", + "787": "787 Commune of Lopez", + "795": "795 Commune of Petrele", + "796": "796 Commune of Berzhide", + "797": "797 Commune of Baldushk", + "798": "798 Commune of Zall Bastar", + "799": "799 Commune of Shengjergj", + "800": "800 Commune of Dajt", + "801": "801 Commune of Vaqarr", + "802": "802 Commune of Peze", + "803": "803 Commune of Ndroq", + "804": "804 Commune of Preze", + "805": "805 Commune of Zall Herr", + "806": "806 Commune of Kamez", + "807": "807 Commune of Paskuqan", + "808": "808 Commune of Berxull", + "809": "809 Commune of Kashar", + "810": "810 Commune of Vore", + "811": "811 Commune of Sauk", + "812": "812 Commune of Krrabe", + "820": "820 Commune of Tropoje", + "821": "821 Commune of Bytyc", + "822": "822 Commune of Lekbibaj", + "823": "823 Commune of Fierze", + "824": "824 Commune of Margegaj", + "825": "825 Commune of Bujan", + "826": "826 Commune of Llugaj", + "835": "835 Commune of Qender V", + "836": "836 Commune of Novosele", + "837": "837 Commune of Brataj", + "838": "838 Commune of Vranisht", + "839": "839 Commune of Orikum", + "840": "840 Commune of Himare", + "841": "841 Commune of Shushice", + "842": "842 Commune of Selenice", + "843": "843 Commune of Vllahine", + "844": "844 Commune of Kote", + "845": "845 Commune of Sevaster", + "846": "846 Commune of Armen", + "999": "999 Other" + }, + "admin3": { + "0": "00 Unspecified", + "1": "01 Office of the President", + "2": "02 National Assembly", + "3": "03 Council of Ministers", + "4": "04 Ministry of Economy, Trade and Energy", + "5": "05 Ministry of Agriculture, Food and Consumer's Protection", + "6": "06 Ministry of Public Works and Transport", + "9": "09 Property Central Registration Office", + "10": "10 Ministry of Finance", + "11": "11 Ministry of Education and Science", + "12": "12 Ministry of Tourism, Culture, Youth and Sports", + "13": "13 Ministry of Health", + "14": "14 Ministry of Justice", + "15": "15 Ministry of Foreign Affairs", + "16": "16 Ministry of Internal Affairs", + "17": "17 Ministry of Defense", + "18": "18 State Intelligence Service", + "19": "19 Directorate of Public Radio and Television", + "20": "20 General Directorate of National Archives", + "21": "21 General Directorate of National Archives", + "22": "22 Academy of Sciences", + "24": "24 Supreme State Audit", + "25": "25 Ministry of Labour, Social Affairs and Equal Opportunities", + "26": "26 Ministry of Environment, Forestry and Water Administration", + "27": "27 National Agency for Privatization", + "28": "28 Office of General Attorney", + "29": "29 Administering Office of Justice System Budget", + "30": "30 Constitutional Court", + "31": "31 Albanian Telegraph Agency", + "35": "35 Directorate General of Customs", + "37": "37 Directorate General of Standardization", + "39": "39 Directorate General of Forests and Pastures", + "40": "40 Political Parties", + "41": "41 Directorate General of Taxation", + "46": "46 (T) Debt Service", + "48": "48 Directorate of Metrology and Calibration", + "49": "49 (T) Reserve Fund", + "50": "50 Institute of Statistics", + "53": "53 Financial Supervisory Authority", + "54": "54 National Free Zones Authority", + "55": "55 School of Magistrates", + "56": "56 Albanian Development Fund", + "57": "57 National Cinematography Center", + "59": "59 Institute for Integration of Political Prisoners", + "63": "63 Office of the High Council of Justice", + "64": "64 National Council of RTV", + "66": "66 People's Advocate", + "67": "67 Civil Service Commission", + "70": "70 (T) Contingency Fund", + "73": "73 Central Election Commission", + "75": "75 State Advocacy", + "76": "76 High Inspectorate of Audit and Declaration of Assets", + "77": "77 Competition Authority", + "78": "78 Ministry of European Integration", + "79": "79 State Committee for the Restitution and Compensation of Property", + "80": "80 (T) Non-budgetary Tax Agent", + "81": "81 (T) Reserve to increase salaries and pensions", + "82": "82 National Council of Accounting", + "83": "83 General Directorate for the Prevention of Money Laundering", + "84": "84 Inspectorate of Private Institutes of Supplementary Pensions", + "85": "85 (T) Budget Support", + "86": "86 Public Procurement Advocate", + "87": "87 Other Government Institutions", + "88": "88 Support for Civil Society", + "89": "89 Commissioner for Personal Data Protection", + "91": "91 Commissioner for Protection from Discrimination", + "92": "92 Institute for Communism Crimes' Studies", + "93": "93 Ministry of Energy and Industry", + "94": "94 Ministry of Urban Development and Tourism", + "95": "95 Insitution for the Right to Information", + "99": "99 (T) Local Government Units", + "100": "00 Unspecified: Local budgets", + "90": "90 Other", + "00": "00 Unspecified", + "01": "01 Office of the President", + "02": "02 National Assembly", + "03": "03 Council of Ministers", + "04": "04 Ministry of Economy, Trade and Energy", + "05": "05 Ministry of Agriculture, Food and Consumer's Protection", + "06": "06 Ministry of Public Works and Transport", + "09": "09 Property Central Registration Office" + }, + "admin4": { + "0000000": "0000000 Unspecified", + "1001001": "1001001 Presidential Palace (3535)", + "1002001": "1002001 Albanian Parliament (3535)", + "1003001": "1003001 Council of Ministers (3535)", + "1003005": "1003005 Department of Public Administration (3535)", + "1004001": "1004001 Ministry /institution (3535)", + "1004004": "1004004 Mining Inspection and Rescue Unit (3535)", + "1004009": "1004009 General Directorate of Accreditation (3535)", + "1004022": "1004022 Energy Efficiency Centre (3535)", + "1004023": "1004023 Albanian Geological Survey (3535)", + "1004029": "1004029 Alb Chrome (3535)", + "1004030": "1004030 Alb Copper (3535)", + "1004040": "1004040 NFIM Elbasan (0808)", + "1004043": "1004043 Nitrogen Fertilizer Plant of Fier (0909)", + "1004044": "1004044 Superphosphate Plant of Lac (2019)", + "1004051": "1004051 Albanian Businnes and Investment Agency (3535)", + "1004076": "1004076 General Albanian Patents and Trademarks Office (3535)", + "1004077": "1004077 Central Technical Inspectorate (3535)", + "1004078": "1004078 National Agency of Natural Resources (3535) (0000)", + "1004079": "1004079 Durresi Rubber Factory (0707)", + "1004083": "1004083 Concession Treatment Agency (ATRAKO) (3535)", + "1004093": "1004093 National Registration Center (3535)", + "1004107": "1004107 Albminiera sh.a (3535)", + "1004108": "1004108 General Directorate of Standartization (3535)", + "1004109": "1004109 General Directorate of Metrology and Calibration (3535)", + "1004121": "1004121 National Licensing Center (3535)", + "1004124": "1004124 National Center for Energy Applications (3535)", + "1004129": "1004129 National Nuclear Agency (3535)", + "1004130": "1004130 Albanian Secretariat of Extractive Industry Transparency Initiative (3535)", + "1004131": "1004131 Albanian Investment Development Agency (AIDA) (3535)", + "1005001": "1005001 Ministry of Agriculture, Food and Consumer Protection (3535)", + "1005002": "1005002 Berat Regional Directorate of Agriculture (0202)", + "1005006": "1005006 Diber Regional Directorate of Agriculture (0606)", + "1005007": "1005007 Durres Regional Directorate of Agriculture (0707)", + "1005008": "1005008 Elbasan Regional Directorate of Agriculture (0808)", + "1005009": "1005009 Fier Regional Directorate of Agriculture (0909)", + "1005011": "1005011 Gjirokaster Regional Directorate of Agriculture (1111)", + "1005015": "1005015 Korce Regional Directorate of Agriculture (1515)", + "1005018": "1005018 Kukes Regional Directorate of Agriculture (1818)", + "1005020": "1005020 Lezhe Regional Directorate of Agriculture (2020)", + "1005022": "1005022 Lushnje Regional Directorate of Agriculture (0922)", + "1005033": "1005033 Shkoder Regional Directorate of Agriculture (3333)", + "1005035": "1005035 Tirane Regional Directorate of Agriculture (3535)", + "1005037": "1005037 Vlore Regional Directorate of Agriculture (3737)", + "1005039": "1005039 National Agency of Tobacco (3535)", + "1005040": "1005040 State Entity of Seeds and Saplings (3535)", + "1005067": "1005067 Berat Drainage Board (0202)", + "1005068": "1005068 Durres Drainage Board (0707)", + "1005069": "1005069 Elbasan Drainage Board (0808)", + "1005070": "1005070 Fier Drainage Board (0909)", + "1005071": "1005071 Gjirokaster Drainage Board (1111)", + "1005072": "1005072 Korce Drainage Board (1515)", + "1005073": "1005073 Kukes Drainage Board (1818)", + "1005074": "1005074 Lezhe Drainage Board (2020)", + "1005075": "1005075 Diber \u2013 Mat Drainage Board (0625)", + "1005076": "1005076 Pogradec Drainage Board (1529)", + "1005077": "1005077 Sarande Drainage Board (3731)", + "1005078": "1005078 Shkoder Drainage Board (3333)", + "1005079": "1005079 Tirane Drainage Board (3535)", + "1005080": "1005080 Vlore Drainage Board (3737)", + "1005081": "1005081 Lushnje Drainage Board (0922)", + "1005082": "1005082 Kavaje Drainage Board (3513)", + "1005111": "1005111 Food Safety and Veterinary Institute (3535)", + "1005112": "1005112 Agriculture Technology Transfer Center, Kruje (0716)", + "1005113": "1005113 Agriculture Technology Transfer Center, Vlore (3737)", + "1005114": "1005114 Agriculture Technology Transfer Center, Lushnje (0922)", + "1005115": "1005115 Agriculture Technology Transfer Center, Korce (1515)", + "1005116": "1005116 Agriculture Technology Transfer Center, Shkoder (3333)", + "1005117": "1005117 Agriculture and Rural Development Agency (3535)", + "1005118": "1005118 National Food Authority (NFA) (3535)", + "1005119": "1005119 NFA Regional Office Berat (0202)", + "1005120": "1005120 NFA Regional Office Diber (0606)", + "1005121": "1005121 NFA Regional Office Durres (0707)", + "1005122": "1005122 NFA Regional Office Elbasan (0808)", + "1005123": "1005123 NFA Regional Office Fier (0909)", + "1005124": "1005124 NFA Regional Office Gjirokaster (1111)", + "1005125": "1005125 NFA Regional Office Korce (1515)", + "1005126": "1005126 NFA Regional Office Kukes (1818)", + "1005127": "1005127 NFA Regional Office Lezhe (2020)", + "1005128": "1005128 NFA Regional Office Shkoder (3333)", + "1005129": "1005129 NFA Regional Office Tirane (3535)", + "1005130": "1005130 NFA Regional Office Vlore (3737)", + "1005131": "1005131 General Directorate of Fisheries and Acquaculture Services (3535)", + "1005902": "1005902 Water Resources Management PIU (3535) (0000)", + "1005912": "1005912 Avian Influenza PIU (3535)", + "1005913": "1005913 Sustainable Development of Rural Mountain Areas PIU (3535)", + "1005915": "1005915 Water resources and Irrigation PIU (3535)", + "1005916": "1005916 Construction of Durres Fishing Port PIU (3535)", + "1006001": "1006001 Ministry of Public Works, Transport and Telecommunication (3535)", + "1006032": "1006032 General Directorate of the Construction Police (3535)", + "1006045": "1006045 Central Technical Archive of Construction (3535)", + "1006046": "1006046 National Agency of Territory Planning (3535)", + "1006047": "1006047 General Directorate of Water Supply and Sewerage (3535)", + "1006054": "1006054 Albanian Road Authority (3535)", + "1006055": "1006055 Road Maintenance Directorate, Berat (0202)", + "1006059": "1006059 Regional Road Maintenance Directorate, Diber (0606)", + "1006060": "1006060 Road Maintenance Directorate, Durres (0707)", + "1006062": "1006062 Road Maintenance Directorate, Elbasan (0808)", + "1006065": "1006065 Road Maintenance Directorate, Fier (0909)", + "1006067": "1006067 Southern Region Directorate, (Gjirokaster) (1111)", + "1006071": "1006071 Regional Road Maintenance Directorate, Korce (1515)", + "1006073": "1006073 Regional Road Maintenance Directorate, (1818)", + "1006075": "1006075 Road Maintenance Directorate, Lezhe (2020)", + "1006077": "1006077 Northern Region Directorate (Shkoder) (3333)", + "1006079": "1006079 Central Region Directorate (Tirane) (3535)", + "1006082": "1006082 Regional Road Maintenance Directorate, Vlore (3737)", + "1006084": "1006084 Vehicle Supply and Repair Directorate, Tirane (3535)", + "1006092": "1006092 Shengjin Port (2020)", + "1006093": "1006093 Saranda Port (3731)", + "1006094": "1006094 Water Exploitation Unit Vau Dejes (3333)", + "1006095": "1006095 General Railway Directorate, Durres (0707)", + "1006097": "1006097 Directorate General of Civil Aviation (3535)", + "1006098": "1006098 General Maritime Directorate, Durres (0707)", + "1006099": "1006099 Institute of Transport Studies, Tirane (3535)", + "1006100": "1006100 Railway Inspectorate, Durres (0707)", + "1006111": "1006111 National Housing Entity (3535)", + "1006118": "1006118 ALUIZNI \u2013 General Directorate + Tirana (3) (3535)", + "1006119": "1006119 ALUIZNI - Directorates Tirana (1), Tirana (2) + Kavaje (3535)", + "1006125": "1006125 ALUIZNI - Directorates Durres + Kruje (0707)", + "1006126": "1006126 ALUIZNI - Directorates Elbasan (1) + Elbasan (2) (0808)", + "1006127": "1006127 ALUIZNI - Directorates Korce + Pogradec (1515)", + "1006128": "1006128 ALUIZNI - Directorate Shkoder (3333)", + "1006129": "1006129 ALUIZNI - Directorate Lezhe (2020)", + "1006130": "1006130 ALUIZNI - Directorates Vlore (1), Vlore (2) + Sarande (3737)", + "1006131": "1006131 ALUIZNI - Directorates Fier (1), Fier (2) + Lushnje (0909)", + "1006132": "1006132 ALUIZNI - Directorate Kukes (1818)", + "1006133": "1006133 ALUIZNI - Directorate Diber (0606)", + "1006134": "1006134 ALUIZNI - Directorate Gjirokaster (1111)", + "1006135": "1006135 ALUIZNI - Directorate Berat (0202)", + "1006142": "1006142 Civil Aviation Authority (3535)", + "1006143": "1006143 National Investigation Body of Air Accidents (3535)", + "1006148": "1006148 Albanian Development Fund in Ministry of Transport and Infrastructure (3535)", + "1006903": "1006903 IDB Funding PIU\u2013 water supply utilities (3535) (0000)", + "1006905": "1006905 PIU of Integrated Coastal Zone Management and Cleanup (3535) (0000)", + "1006915": "1006915 Durres Port PIU (3535) (0000)", + "1006917": "1006917 Water PIU (3535) (0000)", + "1006918": "1006918 Land Administration and Management PIU (3535) (0000)", + "1006920": "1006920 \u201cSocial Housing\u201d Project Implementation Unit, Berat (0202) (0000)", + "1006921": "1006921 \u201cSocial Housing\u201d Project Implementation Unit, Elbasan (0808) (0000)", + "1006922": "1006922 \u201cSocial Housing\u201d Project Implementation Unit, Fier (0909) (0000)", + "1006923": "1006923 \u201cSocial Housing\u201d Project Implementation Unit, Kavaje (3513) (0000)", + "1006924": "1006924 \u201cSocial Housing\u201d Project Implementation Unit, Korce (1515) (0000)", + "1006925": "1006925 \u201cSocial Housing\u201d Project Implementation Unit, Peshkopi (0606) (0000)", + "1006926": "1006926 \u201cSocial Housing\u201d Project Implementation Unit, Tirane (3535) (0000)", + "1006927": "1006927 \u201cSocial Housing\u201d Project Implementation Unit, Durres (0707) (0000)", + "1006928": "1006928 Regional Waste Management Association, Korce (1515)", + "1010001": "1010001 Ministry of Finance", + "1010002": "1010002 Treasury Branch of Berat (0202)", + "1010003": "1010003 Treasury Branch of Bulqize (0603)", + "1010004": "1010004 Treasury Branch of Devoll (1505)", + "1010005": "1010005 Treasury Branch of Delvine, (3704)", + "1010006": "1010006 Treasury Branch of Diber (0606)", + "1010007": "1010007 Treasury Branch of Durres (0707)", + "1010008": "1010008 Treasury Branch of Elbasan (0808)", + "1010009": "1010009 Treasury Branch of Fier (0909)", + "1010010": "1010010 Treasury Branch of Gramsh (0810)", + "1010011": "1010011 Treasury Branch of Gjirokaster (1111)", + "1010012": "1010012 Treasury Branch of Has (1812)", + "1010013": "1010013 Treasury Branch of Kavaje (3513)", + "1010014": "1010014 Treasury Branch of Kolonje (1514)", + "1010015": "1010015 Treasury Branch of Korce (1515)", + "1010016": "1010016 Treasury Branch of Kruje (0716)", + "1010017": "1010017 Treasury Branch of Kucove (0217)", + "1010018": "1010018 Treasury Branch of Kukes (1818)", + "1010019": "1010019 Treasury Branch of Lac (2019)", + "1010020": "1010020 Treasury Branch of Lezhe (2020)", + "1010021": "1010021 Treasury Branch of Librazhd (0821)", + "1010022": "1010022 Treasury Branch of Lushnje (0922)", + "1010023": "1010023 Treasury Branch of M Madhe (3323)", + "1010024": "1010024 Treasury Branch of Mallakaster (0924)", + "1010025": "1010025 Treasury Branch of Mat (0625)", + "1010026": "1010026 Treasury Branch of Mirdite (2026)", + "1010027": "1010027 Treasury Branch of Peqin (0827)", + "1010028": "1010028 Treasury Branch of Permet (1128)", + "1010029": "1010029 Treasury Branch of Pogradec (1529)", + "1010030": "1010030 Treasury Branch of Puke (3330)", + "1010031": "1010031 Treasury Branch of Sarande (3731)", + "1010032": "1010032 Treasury Branch of Skrapar (0232)", + "1010033": "1010033 Treasury Branch of Shkoder (3333)", + "1010034": "1010034 Treasury Branch of Tepelene (1134)", + "1010035": "1010035 Treasury Branch of Tirana (3535)", + "1010036": "1010036 Treasury Branch of Tropoje (1836)", + "1010037": "1010037 Treasury Branch of Vlore (3737)", + "1010038": "1010038 Tirana Stock Exchange", + "1010039": "1010039 General Taxation Directorate (3535)", + "1010040": "1010040 Regional Tax Directorate, Tirane (3535)", + "1010041": "1010041 Regional Tax Directorate \u2013VIP Businesses, Tirane (3535)", + "1010042": "1010042 Regional Tax Directorate Berat (0202)", + "1010045": "1010045 Regional Tax Directorate Korce \u2013 Tax Office Devoll (1505)", + "1010046": "1010046 Regional Tax Directorate Diber (0606)", + "1010047": "1010047 Regional Tax Directorate Durres (0707)", + "1010048": "1010048 Regional Tax Directorate Elbasan (0808)", + "1010049": "1010049 Regional Tax Directorate Fier (0909)", + "1010050": "1010050 Regional Tax Directorate Elbasan \u2013 Tax Office Gramsh (0810)", + "1010051": "1010051 Regional Tax Directorate Gjirokaster (1111)", + "1010053": "1010053 Regional Tax Directorate Tirane - Tax Office Kavaje (3513)", + "1010055": "1010055 Regional Tax Directorate Korce (1515)", + "1010056": "1010056 Regional Tax Directorate Durres - Tax Office Kruje (0716)", + "1010057": "1010057 Regional Tax Directorate Berat - Tax Office Kucove (0217)", + "1010058": "1010058 Regional Tax Directorate Kukes (1818)", + "1010059": "1010059 Regional Tax Directorate Lezhe - Tax Office Lac (2019)", + "1010060": "1010060 Regional Tax Directorate Lezhe (2020)", + "1010062": "1010062 Regional Tax Directorate Fier - Tax Office Lushnje (0922)", + "1010065": "1010065 Regional Tax Directorate Diber - Tax Office Mat (0625)", + "1010066": "1010066 Regional Tax Directorate Lezhe - Tax Office Mirdite (2026)", + "1010069": "1010069 Regional Tax Directorate Korce - Tax Office Pogradec (1529)", + "1010071": "1010071 Regional Tax Directorate Vlore - Tax Office Sarande (3731)", + "1010072": "1010072 Regional Tax Directorate Berat - Tax Office Skrapar (0232)", + "1010073": "1010073 Regional Tax Directorate Shkoder (3333)", + "1010076": "1010076 Regional Tax Directorate Vlore (3737)", + "1010077": "1010077 General Directorate of Customs", + "1010079": "1010079 Customs Office Rinas(3535)", + "1010080": "1010080 Customs Office Tirane (3535)", + "1010081": "1010081 Customs Office Durres (0707)", + "1010082": "1010082 Customs Office Shkoder (3333)", + "1010083": "1010083 Customs Office Pogradec (1529)", + "1010084": "1010084 Customs Office Korce (1515)", + "1010085": "1010085 Customs Office Kapshtice (1505)", + "1010086": "1010086 Customs Office Gjirokaster (1111)", + "1010087": "1010087 Customs Office Vlore (3737)", + "1010088": "1010088 Customs Office Elbasan (0808)", + "1010089": "1010089 Customs Office Berat (0202)", + "1010090": "1010090 Customs Office Fier (0909)", + "1010091": "1010091 Customs Office Sarande (3731)", + "1010092": "1010092 Customs Office Peshkopi (0606)", + "1010093": "1010093 Customs Office Kukes (1818)", + "1010095": "1010095 Customs Office Lezhe (2020)", + "1010096": "1010096 Customs Office Tre Urat Permet (1128)", + "1010097": "1010097 General Directorate for the Prevention of Money Laundering (3535)", + "1010098": "1010098 Social Insurance Institute (3535)", + "1010099": "1010099 Agency for the Management of Sequestrated\u00a0or\u00a0Confiscated Assets (3535)", + "1010100": "1010100 Financial Supervision Group (3535)", + "1010102": "1010102 Audit Agency of European Union Funds (3535)", + "1010140": "1010140 Training Center of Tax and Customs Administration (3535)", + "1011001": "1011001 Ministry of Education and Science (3535)", + "1011002": "1011002 Regional Education Directorate Berat (0202)", + "1011006": "1011006 Regional Education Directorate Diber (0606)", + "1011007": "1011007 Regional Education Directorate Durres (0707)", + "1011008": "1011008 Regional Education Directorate Elbasan (0808)", + "1011009": "1011009 Regional Education Directorate Fier (0909)", + "1011011": "1011011 Regional Education Directorate Gjirokaster (1111)", + "1011015": "1011015 Regional Education Directorate Korce (1515)", + "1011018": "1011018 Regional Education Directorate Kukes (1818)", + "1011020": "1011020 Regional Education Directorate Lezhe (2020)", + "1011033": "1011033 Regional Education Directorate Shkoder (3333)", + "1011035": "1011035 Regional Education Directorate qytetit Tirane (3535)", + "1011036": "1011036 Regional Education Directorate rrethit Tirane (3535)", + "1011038": "1011038 Regional Education Directorate Vlore (3737)", + "1011039": "1011039 Tirana University (3535)", + "1011040": "1011040 Polytechnic University (3535)", + "1011041": "1011041 Agriculture University (3535)", + "1011046": "1011046 University Korce (1515)", + "1011047": "1011047 Academy of Fine Arts (3535)", + "1011048": "1011048 Sports Academy (3535)", + "1011049": "1011049 Nursing Department (3535)", + "1011050": "1011050 School Textbook Publishing House (3535)", + "1011051": "1011051 Institute of Blind Children (3535)", + "1011052": "1011052 Institute of Deaf Children (3535)", + "1011053": "1011053 Accreditation Agency (3535)", + "1011055": "1011055 National Agency of Exams (3535)", + "1011056": "1011056 Vocational school \u201cIrakli Terova\u201d Korce (1515)", + "1011057": "1011057 Industrial School \u201cA.Broci\u201d Shkoder (3333)", + "1011058": "1011058 Forestry School Shkoder (3333)", + "1011059": "1011059 Business School Tirane (3535)", + "1011060": "1011060 Hotel and Tourism school of Tirana (3535)", + "1011061": "1011061 Jordan Misja Liceum (3535)", + "1011062": "1011062 School of Arts Fier (0909)", + "1011063": "1011063 Foreign Languages School (3535)", + "1011064": "1011064 \u201cDemir Progeri\u201d school Korce (1515)", + "1011065": "1011065 Industrial School \u201cPavaresia\u201d Vlore (3737)", + "1011075": "1011075 Institute of Education Development (3535)", + "1011076": "1011076 Student Sports Club,Tirane (3535)", + "1011077": "1011077 Loro Borici School, Tirane (3535)", + "1011078": "1011078 Technical Electrical School, Tirane (3535)", + "1011079": "1011079 School of Coreography, Tirane (3535)", + "1011080": "1011080 Karl Gega School, Tirane (3535)", + "1011087": "1011087 Kristo Isak School, Berat (0202)", + "1011088": "1011088 Education Office Kucov\u00eb (0217)", + "1011089": "1011089 Education Office Skrapar (0232)", + "1011090": "1011090 Education Office Bulqiz\u00eb (0603)", + "1011092": "1011092 Education Office Mat (0625)", + "1011094": "1011094 B. \u00c7ela School, Durres (0707)", + "1011095": "1011095 B. Qeraxhia School, Durres (0707)", + "1011096": "1011096 Education Office Kruj\u00eb (0716)", + "1011098": "1011098 A. Myftiu School, Elbasan (0808)", + "1011099": "1011099 A. Xhuvani University, Elbasan (0808)", + "1011100": "1011100 Education Office Gramsh (0810)", + "1011101": "1011101 Education Office Librazhd (0821)", + "1011102": "1011102 Education Office Peqin (0827)", + "1011104": "1011104 Rakip Kryeziu school, Fier (0909)", + "1011105": "1011105 Education Office Lushnj\u00eb (0922)", + "1011106": "1011106 Education Office Mallakast\u00ebr (0924)", + "1011108": "1011108 E. \u00c7abej University, Gjirokaster (1111)", + "1011109": "1011109 Education Office P\u00ebrmet (1128)", + "1011110": "1011110 Education Office Tepelen\u00eb (1134)", + "1011111": "1011111 Education Office Devoll (1505)", + "1011112": "1011112 Education Office Kolonj\u00eb (1514)", + "1011117": "1011117 Education Office Pogradec (1529)", + "1011118": "1011118 Education Office Has (1812)", + "1011120": "1011120 Education Office Tropoj\u00eb (1836)", + "1011121": "1011121 Education Office Kurbin (2019)", + "1011123": "1011123 Education Office Mirdit\u00eb (2026)", + "1011124": "1011124 Education Office Mal\u00ebsi e Madhe (3323)", + "1011125": "1011125 Education Office Puk\u00eb (3330)", + "1011129": "1011129 L.Gurakuqi University, Shkoder (3333)", + "1011130": "1011130 Education Office Kavaj\u00eb (3513)", + "1011131": "1011131 \u201cAgro-business\u201d school, Kavaje (3513)", + "1011132": "1011132 Education Office Delvin\u00eb (3704)", + "1011133": "1011133 Education Office Sarand\u00eb (3731)", + "1011136": "1011136 I.Qemali University, Vlore (3737)", + "1011137": "1011137 Faculty of Foreign Languages, Tirana University (3535)", + "1011138": "1011138 Faculty of History and Philology, Tirana University (3535)", + "1011139": "1011139 Faculty of Medicine (3535)", + "1011140": "1011140 Faculty of Natural Sciences, Tirana University (3535)", + "1011141": "1011141 Faculty of Law, Tirana University (3535)", + "1011142": "1011142 Faculty of Economy, Tirana University (3535)", + "1011143": "1011143 Faculty of Humanities, Tirana University (3535)", + "1011144": "1011144 Master in European Studies, Tirana University (3535)", + "1011145": "1011145 L. Gurakuqi School, Elbasan (0808)", + "1011150": "1011150 Aleksander Moisiu University (0707)", + "1011151": "1011151 National Vocational Education and Training Agency (3535)", + "1011152": "1011152 Preng Jakova School Shkoder (3333)", + "1011153": "1011153 Center of Albanological Studies, Tirane (3535)", + "1011154": "1011154 National Agency for Admissions to Higher Education Institutions (3535)", + "1011155": "1011155 Faculty of Integrated Studies with Practice, University of Durres (0707)", + "1011156": "1011156 University of Tirana, Saranda Branch (3731)", + "1011157": "1011157 University of Tirana, Kukes Branch (1818)", + "1011158": "1011158 National Inspectorate of Pre-University Education (3535)", + "1011159": "1011159 Education Office Kamez (3535)", + "1011160": "1011160 Inter-University Service Center and Telematic Network (3535)", + "1011174": "1011174 Academy of Arts Shkoder (3333)", + "1011175": "1011175 Vocational school Stiliano Bandilli Berat (0202)", + "1011176": "1011176 Vocational school Nazmi Rrushiti Diber (0606)", + "1011183": "1011183 Vocational school Thoma Papapano Gjirokaster (1111)", + "1011187": "1011187 Vocational school Enver Qiraxhi Pogradec (1529)", + "1011189": "1011189 Vocational school Kolin Gjoka Lezhe (2020)", + "1011193": "1011193 Vocational school Ndre Mjeda Bushat Shkoder (3335)", + "1011194": "1011194 Vocational school Shkolla Profesionale Kamez Tirane (3535)", + "1011195": "1011195 Vocational school 26 Marsi Kavaje (3513)", + "1011196": "1011196 Vocational school Tregtare Vlore (3737)", + "1011197": "1011197 Vocational school Antoni Athanas Sarande (3731)", + "1011198": "1011198 Vocational school Industriale Rubik (2026)", + "1011199": "1011199 Rectorate of University of Medicine, Tirane (3535)", + "1011200": "1011200 Faculty of Dentistry (3535)", + "1011201": "1011201 Faculty of Pharmacy (3535)", + "1011202": "1011202 Faculty of Technical Medical Sciences (3535)", + "1011203": "1011203 Faculty of Public Health (3535)", + "1011204": "1011204 Institute of Applied Nuclear Physics, University of Tirana (3535)", + "1011205": "1011205 Agency of Sports Services (3535)", + "1011206": "1011206 Albanian Boxing Federation (3535)", + "1011207": "1011207 Albanian Volleyball Federation (3535)", + "1011208": "1011208 Albanian Swimming Federation (3535)", + "1011209": "1011209 Albanian Weightlifting Federation (3535)", + "1011210": "1011210 Albanian Gymnastics Federation (3535)", + "1011211": "1011211 Albanian Athletics Federation (3535)", + "1011212": "1011212 Albanian Cycling Federation (3535)", + "1011213": "1011213 Albanian Basketball Federation (3535)", + "1011214": "1011214 Albanian Wrestling Federation (3535)", + "1011216": "1011216 Albanian Shooting Sport Federation (3535)", + "1011217": "1011217 Multi-disciplinary Sports Club Partizani (3535)", + "1011218": "1011218 Albanian Climbing and Mountaineering Federation (3535)", + "1011219": "1011219 Chess Federation (3535)", + "1011220": "1011220 Karate Federation (3535)", + "1011221": "1011221 Table Tennis Federation (3535)", + "1011222": "1011222 Billiard Federation e (3535)", + "1011223": "1011223 National Olympic Committee (3535)", + "1011225": "1011225 Albanian Judo Federation", + "1011226": "1011226 Albanian Skiing Federation", + "1011227": "1011227 Albanian Dance Sport Federation", + "1011228": "1011228 Albanian Tennis Federation", + "1011229": "1011229 Albanian Sport for All Federation", + "1011230": "1011230 Albanian Taekwendo Federation (WTF)", + "1012001": "1012001 Ministry of Tourism, Culture, Youth and Sports (3535)", + "1012002": "1012002 Regional Directorate of Cultural Monuments Berat (0202)", + "1012003": "1012003 Regional Directorate of Cultural Monuments Durres (0707)", + "1012004": "1012004 Regional Directorate of Cultural Monuments Gjirokaster (1111)", + "1012005": "1012005 Regional Directorate of Cultural Monuments Korce (1515)", + "1012006": "1012006 Regional Directorate of Cultural Monuments Shkoder (3333)", + "1012007": "1012007 Regional Directorate of Cultural Monuments Sarande (3731)", + "1012008": "1012008 Regional Directorate of Cultural Monuments Tirane (3535)", + "1012009": "1012009 National Children\u2019s Cultural Center (3535)", + "1012010": "1012010 National History Museum (3535)", + "1012011": "1012011 Albanian Dance Sport Federation", + "1012012": "1012012 National Center of Folk Activities (3535)", + "1012013": "1012013 Artworks Implementation Center (3535)", + "1012014": "1012014 National (Ethnographic and Onufri) Museums, Berat (0202)", + "1012015": "1012015 Central State Archive of Film (3535)", + "1012016": "1012016 Museum Gjergj Kastrioti Skenderbeu Kruje (0716)", + "1012017": "1012017 Administration and Coordination Office Butrint (3731)", + "1012018": "1012018 National Museum of Medieval Art, (1515)", + "1012020": "1012020 National Center of the Cultural Properties\u2019 Inventory (3535)", + "1012021": "1012021 National Gallery of Arts (3535)", + "1012022": "1012022 National Theater (3535)", + "1012024": "1012024 National Theater of Opera and Ballet (3535)", + "1012025": "1012025 National Library (3535)", + "1012026": "1012026 Agency of Sports Services (3535)", + "1012027": "1012027 Albanian Boxing Federation (3535)", + "1012028": "1012028 Albanian Volleyball Federation (3535)", + "1012029": "1012029 Albanian Swimming Federation (3535)", + "1012030": "1012030 Albanian Weightlifting Federation (3535)", + "1012031": "1012031 Albanian Gymnastics Federation (3535)", + "1012032": "1012032 Albanian Athletics Federation (3535)", + "1012033": "1012033 Albanian Cycling Federation (3535)", + "1012034": "1012034 Albanian Basketball Federation (3535)", + "1012035": "1012035 Albanian Wrestling Federation (3535)", + "1012037": "1012037 Albanian Shooting Sport Federation (3535)", + "1012039": "1012039 Multi-disciplinary Sports Club Partizani (3535)", + "1012041": "1012041 Albanian Climbing and Mountaineering Federation (3535)", + "1012043": "1012043 Chess Federation 3535)", + "1012044": "1012044 Skiing Federation (3535)", + "1012047": "1012047 Karate Federation(3535)", + "1012048": "1012048 JudoFederation e (3535)", + "1012050": "1012050 Taekwundo Federation (3535)", + "1012051": "1012051 Table tennis Federation (3535)", + "1012052": "1012052 Tennis Federation (3535)", + "1012053": "1012053 Billiard Federation (3535)", + "1012055": "1012055 National Olympic Committee (3535)", + "1012056": "1012056 Aparati Projekte me miratim ne Sport (3535)", + "1012057": "1012057 Albanian Football Association (3535)", + "1012059": "1012059 National Tourism Agency (3535)", + "1012060": "1012060 Institute of Cultural Monuments (3535)", + "1012062": "1012062 Aparati Projkte me miratim ne Trashegimi (3535)", + "1012063": "1012063 Albanian Copyright Office (3535)", + "1012064": "1012064 Apolonia National Park (0909)", + "1012065": "1012065 Bylis National Park (0909)", + "1012066": "1012066 Antigone National Park (1111)", + "1012068": "1012068 Shkoder National Park (3333)", + "1012069": "1012069 Marubi PhototequeShkoder (3333)", + "1012070": "1012070 Regional Directorate of Cultural Monuments Vlore (3737)", + "1012071": "1012071 Amantia National Park - Orikum (3737)", + "1012073": "1012073 Apariti Projekte me miratim ne Art (3535)", + "1012074": "1012074 State Committee on Cults (3535)", + "1012075": "1012075 Regional Directorate of Cultural Monuments Diber (0606)", + "1012076": "1012076 Museum of History,Vlore (3737)", + "1012078": "1012078 International Culture Center Pjeter Arbnori (3535)", + "1012080": "1012080 Administration and Coordination Office Gjirokaster (1111)", + "1012085": "1012085 Archaeological Service Center (3535)", + "1012086": "1012086 Youth Programs (3535)", + "1012087": "1012087 Archaeological Park of Lezhe (2020)", + "1012088": "1012088 Central Directory of Tourism Service Offices (3535)", + "1012089": "1012089 Automobile Club Albania (3535)", + "1012090": "1012090 National Theater of Comedy (3535)", + "1012091": "1012091 National Center for Arts and Culture (3535)", + "1012092": "1012092 National Circus (3535)", + "1012093": "1012093 Albanian Federation of Aeronautics (3535)", + "1012094": "1012094 Albanian Federation \u201cSports for All\u201d (3535)", + "1013001": "1013001 Ministry of Health (3535)", + "1013002": "1013002 Regional Health Authority -ASHR Tirane (3535)", + "1013003": "1013003 Primary Health Directorate Berat (0202)", + "1013004": "1013004 Regional Health Directorate Diber (0606)", + "1013005": "1013005 Regional Health Directorate Durres (0707)", + "1013006": "1013006 Regional Health Directorate Elbasan (0808)", + "1013007": "1013007 Regional Health Directorate Fier (0909)", + "1013008": "1013008 Regional Health Directorate Gjirokaster (1111)", + "1013009": "1013009 Regional Health Directorate Korce (1515)", + "1013010": "1013010 Regional Health Directorate Kukes (1818)", + "1013011": "1013011 Regional Health Directorate Lezhe (2020)", + "1013012": "1013012 Regional Health Directorate Lushnje (0922)", + "1013013": "1013013 Regional Health Directorate Shkoder (3333)", + "1013014": "1013014 Regional Health Directorate Vlore (3737)", + "1013015": "1013015 Diber Hospital (0606)", + "1013016": "1013016 Elbasan Hospital (0808)", + "1013017": "1013017 Fier Hospital (0909)", + "1013018": "1013018 Gjirokaster Hospital (1111)", + "1013019": "1013019 Korce Hospital (1515)", + "1013020": "1013020 Kukes Hospital (1818)", + "1013021": "1013021 Lezhe Hospital (2020)", + "1013022": "1013022 Lushnje Hospital (0922)", + "1013023": "1013023 Shkoder Hospital (3333)", + "1013024": "1013024 Vlore Hospital (3737)", + "1013025": "1013025 Public Health Directorate Bulqize (0603)", + "1013026": "1013026 Public Health Directorate Delvine (3704)", + "1013027": "1013027 Public Health Directorate Devoll (1505)", + "1013028": "1013028 Public Health Directorate Gramsh (0810)", + "1013029": "1013029 Public Health Directorate Has (1812)", + "1013030": "1013030 Public Health Directorate Kavaje (3513)", + "1013031": "1013031 Public Health Directorate Kolonje (1514)", + "1013032": "1013032 Public Health Directorate Kruje (0716)", + "1013033": "1013033 Public Health Directorate Kucove (0217)", + "1013034": "1013034 Public Health Directorate Lac (2019)", + "1013035": "1013035 Public Health Directorate Librazhd (0821)", + "1013036": "1013036 Public Health Directorate Mallakaster (0924)", + "1013037": "1013037 Public Health Directorate Mat (0625)", + "1013038": "1013038 Public Health Directorate Mirdite (2026)", + "1013039": "1013039 Public Health Directorate Peqin (0827)", + "1013040": "1013040 Public Health Directorate Permet (1128)", + "1013041": "1013041 Public Health Directorate Pogradec (1529)", + "1013042": "1013042 Public Health Directorate Puke (3330)", + "1013043": "1013043 Public Health Directorate Sarande (3731)", + "1013044": "1013044 Public Health Directorate Skrapar (0232)", + "1013046": "1013046 Public Health Directorate Tepelene (1134)", + "1013047": "1013047 Public Health Directorate Tropoje (1836)", + "1013048": "1013048 Institute of Public Health Tirane (3535)", + "1013049": "1013049 University Hospital Center Mother Tereza (3535)", + "1013050": "1013050 Tirana Maternity Hospital (3535)", + "1013051": "1013051 Sanatorium of Tirana (3535)", + "1013052": "1013052 Governmental Health Care Clinic (3535)", + "1013053": "1013053 University Dentistry Clinic of Tirana (3535)", + "1013054": "1013054 Dystrophic Children\u2019s Hospital (3535)", + "1013055": "1013055 National Center for Blood Transfusion (3535)", + "1013056": "1013056 National Center of Drug Control (3535)", + "1013057": "1013057 National Center for Biomedical Engineering Tirane (3535)", + "1013058": "1013058 Helicopter Transport Unit (3535)", + "1013059": "1013059 Psychiatric Hospital Elbasan (0808)", + "1013060": "1013060 Psychiatric Hospital Vlore (3737)", + "1013061": "1013061 Public Health Directorate M.Madhe (3323)", + "1013063": "1013063 National Center of Quality, Security and Accreditation of Health Institutions (3535)", + "1013064": "1013064 Berati Hospital (0202)", + "1013065": "1013065 Bulqiza Hospital (0603)", + "1013066": "1013066 Delvina Hospital (3704)", + "1013067": "1013067 Devoll Hospital (1505)", + "1013068": "1013068 Durres Hospital (0707)", + "1013069": "1013069 Gramsh (Hospital 0810)", + "1013070": "1013070 Has Hospital (1812)", + "1013071": "1013071 Kavaja Hospital (3513)", + "1013072": "1013072 Kolonja Hospital (1514)", + "1013073": "1013073 Kruja Hospital (0716)", + "1013074": "1013074 Kucova Hospital (0217)", + "1013075": "1013075 La\u00e7 Hospital (2019)", + "1013076": "1013076 Librazhd Hospital (0821)", + "1013077": "1013077 Mallakaster Hospital (0924)", + "1013078": "1013078 Mat Hospital (0625)", + "1013079": "1013079 Mirdita Hospital (2026)", + "1013080": "1013080 Peqin Hospital (0827)", + "1013081": "1013081 Permet Hospital (1128)", + "1013082": "1013082 Pogradec Hospital (1529)", + "1013083": "1013083 Puka Hospital (3330)", + "1013084": "1013084 Saranda Hospital (3731)", + "1013085": "1013085 Skrapar Hospital (0232)", + "1013086": "1013086 Tepelena Hospital (1134)", + "1013087": "1013087 Tropoja Hospital (1836)", + "1013088": "1013088 Maternity No.2 Tirane (3535)", + "1013098": "1013098 Mandatory Healthcare Insurance Fund (3535)", + "1013101": "1013101 Malesi e Madhe Hospital (3323)", + "1013104": "1013104 Military Hospital (3535)", + "1013106": "1013106 State Health Inspectorate", + "1013107": "1013107 Regional State Health Inspectorate,Tiran\u00eb", + "1013902": "1013902 Health System Rehabilitation PIU (3535)", + "1013903": "1013903 Global Fund PIU (3535)", + "1013904": "1013904 National Center of Continuous Education (3535)", + "1014001": "1014001 Ministry of Justice (3535)", + "1014002": "1014002 Rrogozhina Prison (3513)", + "1014003": "1014003 Lushnja Prison (0922)", + "1014004": "1014004 Kruja Prison (0716)", + "1014005": "1014005 Tepelena Prison (1134)", + "1014006": "1014006 Burrel Prison (0625)", + "1014007": "1014007 Peqin Prison (0827)", + "1014008": "1014008 Lezha Prison (2020)", + "1014009": "1014009 Prison 313 Tirane (3535)", + "1014010": "1014010 Prison 302 Tirane (3535)", + "1014011": "1014011 Prison 325 Tirane (3535)", + "1014012": "1014012 Vaqarr Prison, Tirane (3535)", + "1014013": "1014013 Tirana Prison Hospital (3535)", + "1014014": "1014014 Bailiff Office Berat (0202)", + "1014016": "1014016 Bailiff Office Diber (0606)", + "1014017": "1014017 Bailiff Office Durres (0707)", + "1014018": "1014018 Bailiff Office Elbasan (0808)", + "1014019": "1014019 Bailiff Office Fier (0909)", + "1014021": "1014021 Bailiff Office Gjirokaster (1111)", + "1014023": "1014023 Bailiff Office Kavaje (3513)", + "1014025": "1014025 Bailiff Office Korce (1515)", + "1014026": "1014026 Bailiff Office Kruje (0716)", + "1014027": "1014027 Bailiff Office Kukes (1818)", + "1014028": "1014028 Bailiff Office Lac (2019)", + "1014029": "1014029 Bailiff Office Lezhe (2020)", + "1014031": "1014031 Bailiff Office Lushnje (0922)", + "1014032": "1014032 Bailiff Office Mat (0625)", + "1014035": "1014035 Bailiff Office Pogradec (1529)", + "1014036": "1014036 Bailiff Office Puke (3330)", + "1014037": "1014037 Bailiff Office Sarande (3731)", + "1014039": "1014039 Bailiff Office Shkoder (3333)", + "1014041": "1014041 Bailiff Office Tropoje (1836)", + "1014042": "1014042 Bailiff Office Vlore (3737)", + "1014043": "1014043 Bailiff Office Tirane (3535)", + "1014044": "1014044 Institute of Forensic Medicine (3535)", + "1014045": "1014045 Official Publication Center (3535)", + "1014047": "1014047 General Directorate of Bailiff (3535)", + "1014048": "1014048 General Directorate of Prisons (3535)", + "1014049": "1014049 Albanian Adoption Committee (3535)", + "1014050": "1014050 Fushe-Kruja Prison (0716)", + "1014051": "1014051 Pre-Detention Centre, Berat (0202)", + "1014053": "1014053 Pre-Detention Centre,Tropoje (1836)", + "1014054": "1014054 Pre-Detention Centre, Durres (0707)", + "1014055": "1014055 Pre-Detention Centre, Kukes (1818)", + "1014056": "1014056 Pre-Detention Centre, Sarande (3731)", + "1014057": "1014057 Pre-Detention Centre, Vlore (3737)", + "1014058": "1014058 State Advocacy Office (3535)", + "1014059": "1014059 Immovable Property Central Registration Office (3535)", + "1014060": "1014060 Registration Office Berat (0202)", + "1014061": "1014061 Registration Office Bulqize (0603)", + "1014062": "1014062 Registration Office Devoll (1505)", + "1014063": "1014063 Registration Office Diber (0606)", + "1014064": "1014064 Registration Office Durres (0707)", + "1014065": "1014065 Registration Office Elbasan (0808)", + "1014066": "1014066 Registration Office Fier (0909)", + "1014067": "1014067 Registration Office Gramsh (0810)", + "1014068": "1014068 Registration Office Gjirokaster (1111)", + "1014069": "1014069 Registration Office Has (1812)", + "1014070": "1014070 Registration Office Kavaje (3513)", + "1014071": "1014071 Registration Office Kolonje (1514)", + "1014072": "1014072 Registration Office Korce (1515)", + "1014073": "1014073 Registration Office Kruje (0716)", + "1014074": "1014074 Registration Office Kucove (0217)", + "1014075": "1014075 Registration Office Kukes (1818)", + "1014076": "1014076 Registration Office Lac (2019)", + "1014077": "1014077 Registration Office Lezhe (2020)", + "1014078": "1014078 Registration Office Librazhd (0821)", + "1014079": "1014079 Registration Office Lushnje (0922)", + "1014080": "1014080 Registration Office M.Madhe (3323)", + "1014081": "1014081 Registration Office Mallakaster (0924)", + "1014082": "1014082 Registration Office Mat (0625)", + "1014083": "1014083 Registration Office Mirdite (2026)", + "1014084": "1014084 Registration Office Peqin (0827)", + "1014085": "1014085 Registration Office Permet (1128)", + "1014086": "1014086 Registration Office Pogradec (1529)", + "1014087": "1014087 Registration Office Puke (3330)", + "1014088": "1014088 Registration Office Sarande (3731)", + "1014089": "1014089 Registration Office Skrapar (0232)", + "1014090": "1014090 Registration Office Shkoder (3333)", + "1014091": "1014091 Registration Office Tepelene (1134)", + "1014092": "1014092 Registration Office Tropoje (1836)", + "1014093": "1014093 Registration Office Vlore (3737)", + "1014095": "1014095 Registration Office Tirane (3535)", + "1014096": "1014096 Agency for Property Restitution and Compensation (3535)", + "1014097": "1014097 Institute for Execution of Penal Decisions Korce (1515)", + "1014098": "1014098 Internal Control Service (3535)", + "1014099": "1014099 Institute for Reintegration of Minors, Kavaje (3513)", + "1014100": "1014100 Directorate of Probation Service (3535)", + "1014101": "1014101 Institute for the Integration of Former Political Prisoners (3535)", + "1014102": "1014102 Albanian Bankruptcy Supervision Agency (3535)", + "1014103": "1014103 State Legal Aid Committee (3535)", + "1014104": "1014104 Institute for Execution of Penal Decisions (I.E.D.P)Elbasan (0808)", + "1014901": "1014901 Land Admnistration and Management PIU(3535)", + "1015001": "1015001 Ministry of Foreign Affairs (3535)", + "1015002": "1015002 Diplomatic Corps (3535)", + "1016001": "1016001 Ministry of Interior (3535)", + "1016003": "1016003 Police Training Center Tirane (3535)", + "1016004": "1016004 Republican Guard ,Tirane (3535)", + "1016005": "1016005 Institute of Police Dog Training (IPQP) Tirane (3535)", + "1016007": "1016007 Exploitation and Administration Center of Transport Vehicles (Q.SH.A.M.T.) Tirane (3535)", + "1016008": "1016008 Resi Special Police UnitTirane (3535)", + "1016009": "1016009 Renea Special Police UnitTirane (3535)", + "1016012": "1016012 Rapid Reaction Unit, Tirane (3535)", + "1016013": "1016013 Rapid Reaction Unit Shkoder (3333)", + "1016016": "1016016 Delta Force Unit Vlore (3737)", + "1016019": "1016019 Rapid Reaction Unit Fier (0909)", + "1016020": "1016020 Tirana Police Directorate (3535)", + "1016021": "1016021 Shkodra Police Station (3333)", + "1016022": "1016022 Vlora Police Station (3737)", + "1016023": "1016023 Berat Police Station (0202)", + "1016024": "1016024 Dibra Police Station (0606)", + "1016025": "1016025 Durres Police Station (0707)", + "1016026": "1016026 Elbasan Police Station (0808)", + "1016027": "1016027 Fier Police Station (0909)", + "1016028": "1016028 Gjirokastra Police Station (1111)", + "1016029": "1016029 Korca Police Station (1515)", + "1016030": "1016030 Kukes Police Station (1818)", + "1016031": "1016031 Lezha Police Station (2020)", + "1016035": "1016035 Erseka Police Station (1514)", + "1016038": "1016038 Kavaja Police Station (3513)", + "1016052": "1016052 Saranda Police Station (3731)", + "1016055": "1016055 Tropoja Police Station (1836)", + "1016056": "1016056 Material and Technical Supplies Center (QFM Teknike) Tirane (3535)", + "1016057": "1016057 Babrru National Reception Center for Asylum-seekers (3535)", + "1016058": "1016058 Albanian School of Public Administration (ASPA) (3535)", + "1016059": "1016059 Berat Prefecture (0202)", + "1016060": "1016060 Dibra Prefecture (0606)", + "1016061": "1016061 Durres Prefecture (0707)", + "1016062": "1016062 Elbasan Prefecture (0808)", + "1016064": "1016064 Fier Prefecture (0909)", + "1016065": "1016065 Lushnja Sub-prefecture (0922)", + "1016066": "1016066 Gjirokastra Prefecture (1111)", + "1016067": "1016067 Korca Prefecture (1515)", + "1016068": "1016068 Kukes Prefecture (1818)", + "1016070": "1016070 Lezhe Prefecture (2020)", + "1016071": "1016071 Shkodra Prefecture (3333)", + "1016072": "1016072 Tirana Prefecture (3535)", + "1016073": "1016073 Kavaje Sub-Prefecture (3513)", + "1016074": "1016074 Vlora Prefecture (3737)", + "1016075": "1016075 Sarande Sub-Prefecture (3731)", + "1016078": "1016078 Internal Security and Ceremony Unit (3535)", + "1016079": "1016079 General Directorate of State Police (3535)", + "1016086": "1016086 Culture & Sports (Recreational Center Dr.) (0707)", + "1016088": "1016088 International Law Directorate (3535)", + "1016091": "1016091 Central Directorate of Reserves (3535)", + "1016092": "1016092 Reserve Branch of Tirana (3535)", + "1016093": "1016093 Reserve Branch of Durres (0707)", + "1016094": "1016094 Reserve Branch of Elbasan (0808)", + "1016095": "1016095 Reserve Branch of Mat (0625)", + "1016096": "1016096 Reserve Branch of Korce (1515)", + "1016097": "1016097 Reserve Branch of Vlore (3737)", + "1016098": "1016098 Reserve Branch of Puke (3330)", + "1016099": "1016099 Border and Migration Department (3535)", + "1016100": "1016100 Regional Directorate of Border and Migration Tirane (3535)", + "1016101": "1016101 Regional Directorate of Border and Migration Durres (0707)", + "1016102": "1016102 Regional Directorate of Border and Migration Shkoder (3333)", + "1016103": "1016103 Regional Directorate of Border and Migration Kukes (1818)", + "1016104": "1016104 Regional Directorate of Border and Migration Diber (0606)", + "1016105": "1016105 Regional Directorate of Border and Migration Korce (1515)", + "1016106": "1016106 Regional Directorate of Border and Migration Gjirokaster (1111)", + "1016107": "1016107 Regional Directorate of Border and Migration Vlore (3737)", + "1016108": "1016108 Border and Migration Police Station, Sarande (3731)", + "1016109": "1016109 Department of Public Administration (3535)", + "1016110": "1016110 Internal Control Service at MoI (3535)", + "1016111": "1016111 Center for Reception of foreign citizens and Border-Migration (0707)", + "1016112": "1016112 General Directorate of Traffic Police (3535)", + "1016113": "1016113 Regional Traffic Police Unit of Tirane (3535)", + "1016126": "1016126 Directorate of Special Operational Force (3535)", + "1016127": "1016127 Information Technology Directorate (3535)", + "1016128": "1016128 Departament of Fight against Organized and Serious Crime Tirane (3535)", + "1017001": "1017001 Ministry of Defence (3535)", + "1017008": "1017008 Military Base No.1001 Tirane (3535)", + "1017009": "1017009 Military Base No.1001 Tirane (3535)", + "1017011": "1017011 Military Base No.1010 Shkoder (3333)", + "1017013": "1017013 Military Base No.1030 Berat (0202)", + "1017016": "1017016 Military Base No.5566 Tirane (3535)", + "1017019": "1017019 Military Base No.4500 Tirane (3535)", + "1017031": "1017031 Military Base No.2001 Durres (0707)", + "1017033": "1017033 Military Base No.2004 Vlore (3737)", + "1017036": "1017036 Military Base No.2010 Vlore (3737)", + "1017037": "1017037 Military Base No.3001 Tirane (3535)", + "1017041": "1017041 Military Base No.3006 Tirane (3535)", + "1017042": "1017042 Military Base No.3350 Tirane (3535)", + "1017046": "1017046 Military Base No.4001 Tirane (3535)", + "1017051": "1017051 Military Base No.4300 Tirane (3535)", + "1017056": "1017056 Military Base No.4302 Tirane (3535)", + "1017078": "1017078 Military Base No.6630 Tirane (3535)", + "1017079": "1017079 Military Base No.6010 Tirane (3535)", + "1017080": "1017080 Military Base No.6665 Tirane (3535)", + "1017081": "1017081 Military Base No.5001 Tirane (3535)", + "1017082": "1017082 Military Base No.5560 Tirane (3535)", + "1017083": "1017083 Military Base No.5570 Vlore (3737)", + "1017084": "1017084 Military Base No.6016 Tirane (3535)", + "1017085": "1017085 Military Base No.6660 Tirane (3535)", + "1017086": "1017086 Social Insurance Institute Tirane (3535)", + "1017087": "1017087 Military Base No.6001 Tirane (3535)", + "1017088": "1017088 Military Base No.6640 Tirane (3535)", + "1017089": "1017089 Military Base No.4401 Tirane (3535)", + "1017090": "1017090 Military Base No.6620 Tirane (3535)", + "1017091": "1017091 Military Base No.6614 Tirane (3535)", + "1017092": "1017092 Military Base No.1320 Tirane (3535)", + "1017094": "1017094 Military Base No.6650 Tirane (3535)", + "1017097": "1017097 Military Base No.1040 Tirane (3535)", + "1017098": "1017098 Military Base No.1050 Tirane (3535)", + "1017100": "1017100 Military Base No.4304 Tirane (3535)", + "1017101": "1017101 Military Base No.4405 Tirane (3535)", + "1017104": "1017104 Military Base No.3200 Kucove (0217)", + "1017111": "1017111 Military Base No. 1601 (1515)", + "1017113": "1017113 Military Base No.1701 Elbasan (0808)", + "1017114": "1017114 Military Base No.1801 Gjirokaster (1111)", + "1017115": "1017115 Military Base No.1401 Kukes (1818)", + "1017116": "1017116 Military Base No.1501 Mat (0625)", + "1017117": "1017117 Military Base No.1510 Shkoder (3333)", + "1017118": "1017118 Military Base No.1112 Tirane (3535)", + "1017120": "1017120 Military Base No.4400 Tirane (3535)", + "1017122": "1017122 Military Base No.6670 Tirane (3535)", + "1017124": "1017124 Military Base No.4303 Tirane (3535)", + "1017125": "1017125 Military Base No.5561 Tirane (3535)", + "1017126": "1017126 State Export Control Authority (AKSHE) (3535)", + "1017127": "1017127 Inter-institutional\u00a0Maritime\u00a0Operational Centre Durr\u00ebs (0707)", + "1017128": "1017128 Cipher Directorate Tirane (3535)", + "1017130": "1017130 Military Base No.6006 Tirane (3535)", + "1018001": "1018001 National Intelligence Service (3535)", + "1018002": "1018002 NIS Directorate Berat (0202)", + "1018003": "1018003 National Intelligence Service Institute (3535)", + "1018004": "1018004 NIS Directorate Tirane (3535)", + "1018006": "1018006 NIS Directorate Durres (0707)", + "1018007": "1018007 NIS Directorate Diber (0606)", + "1018008": "1018008 NIS Directorate Elbasan (0808)", + "1018009": "1018009 NIS Directorate Fier (0909)", + "1018010": "1018010 NIS Directorate Gjirokaster (1111)", + "1018011": "1018011 NIS Directorate Korce (1515)", + "1018012": "1018012 NIS Directorate Kukes (1818)", + "1018013": "1018013 NIS Directorate Shkoder (3333)", + "1018014": "1018014 NIS Directorate Lezhe (2020)", + "1018015": "1018015 NIS Directorate Sarande (3731)", + "1018016": "1018016 NIS Directorate Vlore (3737)", + "1018017": "1018017 NIS Directorate Lushnje (0922)", + "1019001": "1019001 General Directorate of Albanian Radio Television (RTSH) (3535)", + "1020001": "1020001 General Directorate of State Archives (3535)", + "1022001": "1022001 Academy (3535)", + "1024001": "1024001 Supreme State Audit (3535)", + "1025001": "1025001 Ministry of Labour (3535)", + "1025002": "1025002 Berat Labour Office (0202)", + "1025003": "1025003 Bulqiza Labour Office (0603)", + "1025004": "1025004 Devoll Labour Office (1505)", + "1025005": "1025005 Delvina Labour Office (3704)", + "1025006": "1025006 Dibra Labour Office (0606)", + "1025007": "1025007 Durres Labour Office (0707)", + "1025008": "1025008 Elbasan Labour Office (0808)", + "1025009": "1025009 Fier Labour Office (0909)", + "1025010": "1025010 Gramsh Labour Office (0810)", + "1025011": "1025011 Gjirokastra Labour Office (1111)", + "1025012": "1025012 Has Labour Office (1812)", + "1025013": "1025013 Kavaja Labour Office (3513)", + "1025014": "1025014 Kolonja Labour Office (1514)", + "1025015": "1025015 Korca Labour Office (1515)", + "1025016": "1025016 Kruja Labour Office (0716)", + "1025017": "1025017 Kucova Labour Office (0217)", + "1025018": "1025018 Kukes Labour Office (1818)", + "1025019": "1025019 Lac Labour Office (2019)", + "1025020": "1025020 Lezha Labour Office (2020)", + "1025021": "1025021 Librazhd Labour Office (0821)", + "1025022": "1025022 Lushnja Labour Office (0922)", + "1025023": "1025023 Labour Office of M.e Madhe (3323)", + "1025024": "1025024 Mallakastra Labour Office (0924)", + "1025025": "1025025 Mat Labour Office (0625)", + "1025026": "1025026 Mirdita Labour Office (2026)", + "1025027": "1025027 Peqin Labour Office (0827)", + "1025028": "1025028 Permet Labour Office (1128)", + "1025029": "1025029 Pogradec Labour Office (1529)", + "1025030": "1025030 Puka Labour Office (3330)", + "1025031": "1025031 Saranda Labour Office (3731)", + "1025032": "1025032 Skrapar Labour Office (0232)", + "1025033": "1025033 Shkodra Labour Office (3333)", + "1025034": "1025034 Tepelena Labour Office (1134)", + "1025035": "1025035 Tirana Labour Office (3535)", + "1025036": "1025036 Tropoja Labour Office (1836)", + "1025037": "1025037 Vlora Labour Office (3737)", + "1025038": "1025038 Vocational Training Center no.1 Tirane (3535)", + "1025039": "1025039 Vocational Training Center no.4 Tirane (3535)", + "1025040": "1025040 Vocational Training Center in Korce (1515)", + "1025041": "1025041 Vocational Training Center inVlore (3737)", + "1025042": "1025042 Vocational Training Center in Elbasan (0808)", + "1025043": "1025043 Vocational Training Center in Fier (0909)", + "1025045": "1025045 Vocational Training Center in Shkoder (3333)", + "1025046": "1025046 Vocational Training Center in Durres (0707)", + "1025047": "1025047 Regional Social Care Office, District of Tirana (3535)", + "1025048": "1025048 Regional Social Care Office, District of Berat (0202)", + "1025049": "1025049 Regional Social Care Office, District of Diber (0606)", + "1025050": "1025050 Regional Social Care Office, District of Durres (0707)", + "1025051": "1025051 Regional Social Care Office, District of Elbasan (0808)", + "1025052": "1025052 Regional Social Care Office, District of Fier (0909)", + "1025053": "1025053 Regional Social Care Office, District of Gjirokaster (1111)", + "1025054": "1025054 Regional Social Care Office, District of Korce (1515)", + "1025055": "1025055 Regional Social Care Office, District of Kukes (1818)", + "1025056": "1025056 Regional Social Care Office, District of Lezhe (2020)", + "1025057": "1025057 Regional Social Care Office, District of Shkoder (3333)", + "1025058": "1025058 Regional Social Care Office, District of Vlore (3737)", + "1025059": "1025059 School-age Orphanage, Tirana District (3535)", + "1025063": "1025063 National Observatory of Persons with Disabilities (3535)", + "1025072": "1025072 Baby Orphanage, Tirane (3535)", + "1025085": "1025085 Central Administration of NES (3535)", + "1025086": "1025086 State Labour Inspectorate,Tirana (3535)", + "1025087": "1025087 State Labour Inspectorate, Vlora (3737)", + "1025088": "1025088 State Labour Inspectorate, Elbasan (0808)", + "1025089": "1025089 State Labour Inspectorate,Fier (0909)", + "1025090": "1025090 State Labour Inspectorate, Korce (1515)", + "1025091": "1025091 State Labour Inspectorate, Durres (0707)", + "1025092": "1025092 State Labour Inspectorate, Shkoder (3333)", + "1025095": "1025095 Linza Reception Center for Victims of Trafficking (3535)", + "1025096": "1025096 Social Insurance Institute (3535)", + "1025097": "1025097 Central Administration of SSS (State Social Service) (3535)", + "1025098": "1025098 Central Administration of National Employment Service (3535)", + "1025099": "1025099 NC for Rehabilitation of Blind People (3535)", + "1025104": "1025104 Vocational Training Center in Gjirokaster (1111)", + "1025105": "1025105 Regional Directorate of Mobile Vocational Training Centre, Tirane (3535)", + "1025106": "1025106 State Labour Inspectorate, Berat (0202)", + "1025107": "1025107 State Labour Inspectorate, Diber (0606)", + "1025108": "1025108 State Labour Inspectorate, Gjirokaster (1111)", + "1025109": "1025109 State Labour Inspectorate, Lezhe (2020)", + "1025110": "1025110 State Labour Inspectorate, Kukes (1818)", + "1025111": "1025111 Polyvalent National Center (0232)", + "1025112": "1025112 Regional Office of Public Health Institute, Sarande (3731)", + "1025113": "1025113 National Center for Victims of Domestic Violence (3535)", + "1025114": "1025114 State Agency for Protection of Children\u2019s Rights (3535)", + "1025115": "1025115 State Committee on Cults (3535)", + "1025116": "1025116 Institute for Integration of Former Political Prisoners (3535)", + "1026001": "1026001 Ministry of Environment, Forestry and Water Administration (3535)", + "1026003": "1026003 Tirana Forest Service Directorate (3535)", + "1026004": "1026004 Berat Forest Service Directorate (0202)", + "1026005": "1026005 Bulqiza Forest Service Directorate (0603)", + "1026006": "1026006 Dibra Forest Service Directorate (0606)", + "1026007": "1026007 Durres Forest Service Directorate (0707)", + "1026008": "1026008 Elbasan Forest Service Directorate (0808)", + "1026009": "1026009 Fieri Forest Service Directorate (0909)", + "1026010": "1026010 Gramsh Forest Service Directorate (0810)", + "1026011": "1026011 Gjirokastra Forest Service Directorate (1111)", + "1026012": "1026012 Kavaja Forest Service Directorate (3513)", + "1026013": "1026013 Korca Forest Service Directorate (1515)", + "1026014": "1026014 Kruja Forest Service Directorate (0716)", + "1026015": "1026015 Kukes Forest Service Directorate (1818)", + "1026016": "1026016 Lac Forest Service Directorate (2019)", + "1026017": "1026017 Lezha Forest Service Directorate (2020)", + "1026018": "1026018 Librazhd Forest Service Directorate (0821)", + "1026019": "1026019 Lushnja Forest Service Directorate (0922)", + "1026020": "1026020 Mirdita Forest Service Directorate (2026)", + "1026021": "1026021 Permet Forest Service Directorate (1128)", + "1026022": "1026022 Pogradec Forest Service Directorate (1529)", + "1026023": "1026023 Puka Forest Service Directorate (3330)", + "1026024": "1026024 Saranda Forest Service Directorate (3731)", + "1026025": "1026025 Shkodra Forest Service Directorate (3333)", + "1026026": "1026026 Tepelena Forest Service Directorate (1134)", + "1026027": "1026027 Vlora Forest Service Directorate (3737)", + "1026028": "1026028 Delvina Forest Service Directorate (3704)", + "1026029": "1026029 Devoll Forest Service Directorate (1505)", + "1026030": "1026030 Has Forest Service Directorate (1812)", + "1026031": "1026031 Kolonja Forest Service Directorate (1514)", + "1026032": "1026032 Kucova Forest Service Directorate (0217)", + "1026033": "1026033 Forest Service Directorate of Malesi e Madhe (3323)", + "1026034": "1026034 Mallakastra Forest Service Directorate (0924)", + "1026035": "1026035 Mat Forest Service Directorate (0625)", + "1026036": "1026036 Peqin Forest Service Directorate (0827)", + "1026037": "1026037 Skrapar Forest Service Directorate (0232)", + "1026038": "1026038 Tropoja Forest Service Directorate (1836)", + "1026040": "1026040 Mussels Enterprise in Saranda (3731)", + "1026060": "1026060 Environmental and Forestry Agency (3535)", + "1026061": "1026061 Regional Environmental Directorate, Berat", + "1026062": "1026062 Regional Branch of State Inspectorate of Environment, Forests and Waters, Berat", + "1026063": "1026063 Regional Environmental Directorate, Diber", + "1026064": "1026064 Regional Branch of State Inspectorate of Environment, Forests and Waters, Diber", + "1026065": "1026065 Regional Environmental Directorate, Durres", + "1026066": "1026066 Regional Branch of State Inspectorate of Environment, Forests and Waters, Durres", + "1026067": "1026067 Regional Environmental Directorate, Elbasan", + "1026068": "1026068 Regional Branch of State Inspectorate of Environment, Forests and Waters, Elbasan", + "1026069": "1026069 Regional Environmental Directorate, Fier", + "1026070": "1026070 Regional Branch of State Inspectorate of Environment, Forests and Waters, Fier", + "1026071": "1026071 Regional Environmental Directorate, Gjirokaster", + "1026072": "1026072 Regional Branch of State Inspectorate of Environment, Forests and Waters, Gjirokaster", + "1026073": "1026073 Regional Environmental Directorate, Lezhe", + "1026074": "1026074 Regional Branch of State Inspectorate of Environment, Forests and Waters, Lezhe", + "1026075": "1026075 Regional Environmental Directorate, Korce", + "1026076": "1026076 Regional Branch of State Inspectorate of Environment, Forests and Waters, Korce", + "1026077": "1026077 Regional Environmental Directorate, Kukes", + "1026078": "1026078 Regional Branch of State Inspectorate of Environment, Forests and Waters, Kukes", + "1026079": "1026079 Regional Environmental Directorate, Shkoder", + "1026080": "1026080 Regional Branch of State Inspectorate of Environment, Forests and Waters, Shkoder", + "1026081": "1026081 Regional Environmental Directorate, Tirane", + "1026082": "1026082 Regional Branch of State Inspectorate of Environment, Forests and Waters, Tirane", + "1026083": "1026083 Regional Environmental Directorate, Vlore", + "1026084": "1026084 Regional Branch of State Inspectorate of Environment, Forests and Waters, Vlore", + "1026085": "1026085 State Inspectorate of Environment, Forests and Waters", + "1026086": "1026086 Albanian Development Fund in Ministry of Environment (3535)", + "1026901": "1026901 Lake Shkodra Integrated Management Project (3333) (0000)", + "1026903": "1026903 Natural Resources Development Project (3535) (0000)", + "1026910": "1026910 Project for the Construction of Durresi Fishing Port (3535)", + "1028001": "1028001 General Prosecutor\u2019s Office (3535)", + "1028002": "1028002 Tirana Prosecutor\u2019s Office (3535)", + "1028003": "1028003 Berat Prosecutor\u2019s Office (0202)", + "1028005": "1028005 Dibra Prosecutor\u2019s Office (0606)", + "1028006": "1028006 Durres Prosecutor\u2019s Office (0707)", + "1028007": "1028007 Elbasan Prosecutor\u2019s Office (0808)", + "1028008": "1028008 Fier Prosecutor\u2019s Office (0909)", + "1028010": "1028010 Gjirokastra Prosecutor\u2019s Office (1111)", + "1028011": "1028011 Kavaja Prosecutor\u2019s Office (3513)", + "1028013": "1028013 Korca Prosecutor\u2019s Office (1515)", + "1028014": "1028014 Kruja Prosecutor\u2019s Office (0716)", + "1028015": "1028015 Kukes Prosecutor\u2019s Office (1818)", + "1028016": "1028016 Lac Prosecutor\u2019s Office (2019)", + "1028017": "1028017 Lezha Prosecutor\u2019s Office (2020)", + "1028019": "1028019 Lushnja Prosecutor\u2019s Office (0922)", + "1028020": "1028020 Mat Prosecutor\u2019s Office (0625)", + "1028022": "1028022 Permet Prosecutor\u2019s Office (1128)", + "1028023": "1028023 Pogradec Prosecutor\u2019s Office (1529)", + "1028024": "1028024 Puka Prosecutor\u2019s Office (3330)", + "1028025": "1028025 Saranda Prosecutor\u2019s Office (3731)", + "1028027": "1028027 Shkodra Prosecutor\u2019s Office (3333)", + "1028029": "1028029 Tropoja Prosecutor\u2019s Office (1836)", + "1028030": "1028030 Vlora Prosecutor\u2019s Office (3737)", + "1028031": "1028031 Serious Crimes Prosecution Office (3535)", + "1028032": "1028032 Appeal Prosecution Office of Gjirokastra (1111)", + "1028033": "1028033 Appeal Prosecution Office of Korca (1515)", + "1028034": "1028034 Appeal Prosecution Office of Vlora (3737)", + "1028035": "1028035 Appeal Prosecution Office of Durres (0707)", + "1028036": "1028036 Appeal Prosecution Office of Shkodra (3333)", + "1028037": "1028037 Appeal Prosecution Office of Tirana (3535)", + "1028044": "1028044 Appeal Prosecution Office of Serious Crimes, Tirane (3535)", + "1029001": "1029001 Office for the Administration of the Judiciary Budget (3535)", + "1029003": "1029003 Court of Appeal, Durres (0707)", + "1029004": "1029004 Court of Appeal, Gjirokaster (1111)", + "1029005": "1029005 Court of Appeal, Korce (1515)", + "1029006": "1029006 Court of Appeal, Shkoder (3333)", + "1029007": "1029007 Court of Appeal, Tirane (3535)", + "1029008": "1029008 Court of Appeal, Vlore (3737)", + "1029010": "1029010 Court of Criminal Appeals, Tirane (3535)", + "1029011": "1029011 District Court of Tirana (3535)", + "1029012": "1029012 District Court of Berat (0202)", + "1029014": "1029014 District Court of Dibra (0606)", + "1029015": "1029015 District Court of Durres (0707)", + "1029016": "1029016 District Court of Elbasan (0808)", + "1029017": "1029017 District Court of Fier (0909)", + "1029019": "1029019 District Court of Gjirokastra (1111)", + "1029021": "1029021 District Court of Kavaja (3513)", + "1029023": "1029023 District Court of Korca (1515)", + "1029024": "1029024 District Court of Kruja (0716)", + "1029025": "1029025 District Court of Kukes (1818)", + "1029026": "1029026 District Court of Lac (2019)", + "1029027": "1029027 District Court of Lezha (2020)", + "1029029": "1029029 District Court of Lushnja (0922)", + "1029030": "1029030 District Court of Mat (0625)", + "1029032": "1029032 District Court of Permet (1128)", + "1029033": "1029033 District Court of Pogradec (1529)", + "1029034": "1029034 District Court of Puka (3330)", + "1029035": "1029035 District Court of Saranda (3731)", + "1029037": "1029037 District Court of Shkodra (3333)", + "1029039": "1029039 District Court of Tropoja (1836)", + "1029040": "1029040 District Court of Vlora (3737)", + "1029041": "1029041 Gjykata e larte (3535)", + "1029042": "1029042 District Court for Crimes (3535)", + "1029043": "1029043 Administrative Court of Appeal,Tirane", + "1029044": "1029044 First Instance Administrative Court of Durres", + "1029045": "1029045 First Instance Administrative Court of Gjirokastra", + "1029046": "1029046 First Instance Administrative Court of Korca", + "1029047": "1029047 First Instance Administrative Court of Shkodra", + "1029048": "1029048 First Instance Administrative Court of Tirana", + "1029049": "1029049 First Instance Administrative Court of Vlora", + "1030001": "1030001 The Constitutional Court (3535)", + "1031001": "1031001 Albanian Telegraphic Agency (3535)", + "1040002": "1040002 Democratic Party of Albania (3535)", + "1040003": "1040003 Socialist Party of Albania (3535)", + "1040004": "1040004 Social Democratic Party of Albania (3535)", + "1040007": "1040007 Republican Party of Albania (3535)", + "1040008": "1040008 Liberal Union Party (3535)", + "1040009": "1040009 Union for Human Rights Party (3535)", + "1040011": "1040011 Demochristian Party (3535)", + "1040012": "1040012 Socialist Movement for Integration (3535)", + "1040013": "1040013 Social Democracy Party (3535)", + "1040014": "1040014 National Front Party (3535)", + "1040015": "1040015 Party for Justice and Integration (3535)", + "1040016": "1040016 Movement for National Development (3535)", + "1040019": "1040019 Albanian Labour Movement Party (3535)", + "1040021": "1040021 Conservative Party (3535)", + "1040023": "1040023 The Association of Paraplegic and Tetrapelgic Invalids (3535)", + "1040024": "1040024 The Association of Labour Invalids (3535)", + "1040025": "1040025 Albanian Blind Association (3535)", + "1040026": "1040026 National Association of Orphans (3535)", + "1040027": "1040027 The Association of War Invalids (3535)", + "1040028": "1040028 Veteran\u2019s Organization (3535)", + "1040029": "1040029 United Organization of War Veterans (3535)", + "1040035": "1040035 Christian Democratic Party (3535)", + "1040040": "1040040 Green Party of Albania (3535)", + "1040042": "1040042 \u201cFuture of Albania\u201d Party (3535)", + "1040043": "1040043 National Reconciliation Party (3535)", + "1040046": "1040046 New Party of Denied Rights (3535)", + "1040052": "1040052 G99 Party (3535)", + "1040055": "1040055 People\u2019s Alliance Party (3535)", + "1040056": "1040056 Albanian Party of Labour (3535)", + "1040060": "1040060 Albanian Republican Union Party (3535)", + "1040066": "1040066 Albanian Party of Democratic Reforms (3535)", + "1040068": "1040068 The Party On the Protection of the Rights of all Emigrants (3535)", + "1040070": "1040070 Party of Persons with Disabilities (3535)", + "1040072": "1040072 New Tolerance Party (3535)", + "1040073": "1040073 Moderate Socialist Party (3535)", + "1040076": "1040076 \u201cNew European Democracy\u201d Party (3535)", + "1040077": "1040077 Albanian Emigration Party (3535)", + "1040079": "1040079 Party of Denied Rights (3535)", + "1040080": "1040080 Ora e Shqiperise Party (3535)", + "1040081": "1040081 True Path Party (3535)", + "1040083": "1040083 Party of People\u2019s Union of Albanian Pensioners (3535)", + "1040086": "1040086 Red and Black Alliance (3535)", + "1040087": "1040087 New Democratic Spirit Party (3535)", + "1050001": "1050001 Albanian Institute of Statistics (INSTAT) (3535)", + "1050003": "1050003 Statistical Directorate of Berati District (0202)", + "1050004": "1050004 Statistical Directorate of Bulqiza District (0603)", + "1050005": "1050005 Statistical Directorate of Delvina District (3704)", + "1050006": "1050006 Statistical Directorate of Devolli District (1505)", + "1050007": "1050007 Statistical Directorate of Dibra District (0606)", + "1050008": "1050008 Statistical Directorate of Durres District (0707)", + "1050009": "1050009 Statistical Directorate of Elbasan District (0808)", + "1050010": "1050010 Statistical Directorate of Fier District (0909)", + "1050011": "1050011 Statistical Directorate of Gramsh District (0810)", + "1050012": "1050012 Statistical Directorate of Gjirokastra District (1111)", + "1050013": "1050013 Statistical Directorate of Has District (1812)", + "1050014": "1050014 Statistical Directorate of Kavaja District (3513)", + "1050015": "1050015 Statistical Directorate of Kolonja District (1514)", + "1050016": "1050016 Statistical Directorate of Korce District (1515)", + "1050017": "1050017 Statistical Directorate of Kruje District (0716)", + "1050018": "1050018 Statistical Directorate of Kucove District (0217)", + "1050019": "1050019 Statistical Directorate of Kukes District (1818)", + "1050020": "1050020 Statistical Directorate of Lac District (2019)", + "1050021": "1050021 Statistical Directorate of Lezha District (2020)", + "1050022": "1050022 Statistical Directorate of Librazhd District (0821)", + "1050023": "1050023 Statistical Directorate of Lushnja District (0922)", + "1050024": "1050024 Statistical Directorate of M.Madhe District (3323)", + "1050025": "1050025 Statistical Directorate of Mallakastra District (0924)", + "1050026": "1050026 Statistical Directorate of Mat District (0625)", + "1050027": "1050027 Statistical Directorate of Mirdita District (2026)", + "1050028": "1050028 Statistical Directorate of Peqin District (0827)", + "1050029": "1050029 Statistical Directorate of Permet District (1128)", + "1050030": "1050030 Statistical Directorate of Pogradec District (1529)", + "1050031": "1050031 Statistical Directorate of Puka District (3330)", + "1050032": "1050032 Statistical Directorate of Saranda District (3731)", + "1050033": "1050033 Statistical Directorate of Skrapar District (0232)", + "1050034": "1050034 Statistical Directorate of Shkodra District (3333)", + "1050035": "1050035 Statistical Directorate of Tepelena District (1134)", + "1050036": "1050036 Statistical Directorate of Tropoja District (1836)", + "1050037": "1050037 Statistical Directorate of Vlora District (3737)", + "1055001": "1055001 School of Magistrates (3535)", + "1056001": "1056001 Albanian Development Fund (3535)", + "1057001": "1057001 National Center of Cinematography (3535)", + "1059001": "1059001 Institute of Former Political Prisoners (3535)", + "1063001": "1063001 High Council of Justice (3535)", + "1066001": "1066001 People\u2019s Advocate (3535)", + "1067001": "1067001 Commissioner for Civil Service Supervision (3535)", + "1073001": "1073001 Central Election Commission (3535)", + "1076001": "1076001 High Inspectorate for the Declaration and Audit of Assets (3535)", + "1077001": "1077001 Competition Authority (3535)", + "1078001": "1078001 Ministry of Integration (3535)", + "1080001": "1080001 (T) Non-budgetary Tax Agents (3535)", + "1080002": "1080002 Regional Directorate of Road Transport Services(0821)", + "1080003": "1080003 Regional Directorate of Road Transport Services(0202)", + "1080004": "1080004 Regional Directorate of Road Transport Services(0603)", + "1080005": "1080005 Regional Directorate of Road Transport Services(0707)", + "1080006": "1080006 Albanian Post, Branch of (0808)", + "1080007": "1080007 Regional Directorate of Road Transport Services(0810)", + "1080008": "1080008 Regional Directorate of Road Transport Services(1812)", + "1080009": "1080009 Regional Directorate of Road Transport Services(3513)", + "1080010": "1080010 Regional Directorate of Road Transport Services(0217)", + "1080011": "1080011 Albanian Post, Branch of (0217)", + "1080012": "1080012 Regional Directorate of Road Transport Services(1818)", + "1080013": "1080013 Regional Directorate of Road Transport Services(3323)", + "1080014": "1080014 Regional Directorate of Road Transport Services(0924)", + "1080015": "1080015 Regional Directorate of Road Transport Services(1836)", + "1080016": "1080016 Regional Directorate of Road Transport Services(3737)", + "1080017": "1080017 Regional Directorate of Road Transport Services(0232)", + "1080018": "1080018 Regional Directorate of Road Transport Services(0625)", + "1080019": "1080019 Regional Directorate of Road Transport Services(0827)", + "1080020": "1080020 Regional Directorate of Road Transport Services(0909)", + "1080021": "1080021 Regional Directorate of Road Transport Services(1111)", + "1080022": "1080022 Regional Directorate of Road Transport Services(1128)", + "1080023": "1080023 Regional Directorate of Road Transport Services(1505)", + "1080024": "1080024 Regional Directorate of Road Transport Services(1514)", + "1080025": "1080025 Regional Directorate of Road Transport Services(1529)", + "1080026": "1080026 Regional Directorate of Road Transport Services(3535)", + "1080027": "1080027 Regional Directorate of Road Transport Services(3704)", + "1080028": "1080028 Regional Directorate of Road Transport Services(0606)", + "1080029": "1080029 Albanian Post, Branch of (1128)", + "1080031": "1080031 Regional Directorate of Road Transport Services(3731)", + "1080032": "1080032 Regional Directorate of Road Transport Services(3333)", + "1080033": "1080033 Regional Directorate of Road Transport Services(1134)", + "1080038": "1080038 Regional Directorate of Road Transport Services(0808)", + "1080040": "1080040 Regional Directorate of Road Transport Services(0716)", + "1080041": "1080041 Regional Directorate of Road Transport Services(2019)", + "1080042": "1080042 Regional Directorate of Road Transport Services(2020)", + "1080044": "1080044 Regional Directorate of Road Transport Services(2026)", + "1080045": "1080045 Regional Directorate of Road Transport Services(3330)", + "1080046": "1080046 Albanian Post Branch (3731)", + "1080047": "1080047 Regional Directorate of Road Transport Services(1515)", + "1080048": "1080048 Regional Directorate of Road Transport Services(0922)", + "1080052": "1080052 Albanian Post, Gjirokastra Branch (1111)", + "1080053": "1080053 Albanian Post, Fier Branch (0909)", + "1080054": "1080054 Albanian Post, Shkodra Branch (3333)", + "1080058": "1080058 Albanian Post, Durres Branch (0707)", + "1080065": "1080065 Albanian Post, Korca Branch (1515)", + "1080068": "1080068 Albanian Post, Berati Branch (0202)", + "1080069": "1080069 Albanian Post, Vlora Branch (3737)", + "1080070": "1080070 Albanian Post, Lezha Branch (2020)", + "1080071": "1080071 Albanian Post, Kavaja Branch (3513)", + "1080074": "1080074 Albanian Post, Kukes Branch (1818)", + "1080075": "1080075 Posta Shqiptare sh.a. (3535)", + "1080078": "1080078 Albanian Post, Lushnja Branch (0922)", + "1080079": "1080079 Authority of Electronic and Postal Communcations (3535)", + "1080082": "1080082 Albanian Post, Gramsh Branch (0810)", + "1082001": "1082001 National Accounting Council (3535)", + "1086001": "1086001 Public Procurement Advocate (3535)", + "1087001": "1087001 Public Procurement Agency (3535)", + "1087002": "1087002 Directorate of Governmental Services (3535)", + "1087004": "1087004 Classified Information Security Directorate (3535)", + "1087005": "1087005 Committee on Minorities Rights (3535)", + "1087006": "1087006 National Agency for Informations Society (3535)", + "1087007": "1087007 National Authority for Electronic Certification (3535)", + "1087008": "1087008 Agency for Research, Technolofy and Innovation (AKTI) (3535)", + "1087009": "1087009 National Nuclear Agency (AKB) (3535)", + "1087010": "1087010 Public Procurement Commission (3535)", + "1087011": "1087011 Central Inspectorate (3535)", + "1087012": "1087012 National Agency for Computer Security (3535)", + "1087013": "1087013 State Authority for Geospatial Information (ASIG) (3535)", + "1087014": "1087014 Albanian School of Public Administration (3535)", + "1087015": "1087015 Department of Public Administration (3535)", + "1087016": "1087016 Technical Secretariat of National Water Council (3535)", + "1087017": "1087017 Agency for Delivery of Integrated Public Services (ADISA) (3535)", + "1088001": "1088001 Agency for the Support of Civil Society (3535)", + "1089001": "1089001 Commissioner for Personal Data Protection (3535)", + "1091001": "1091001 Commissioner for Protection from Discrimination (3535)", + "1092001": "1092001 Institute for Studies of Communist Crimes (3535)", + "1093001": "1093001 Ministry of Energy and Industry (3535)", + "1093002": "1093002 National Agency of Natural Resources (3535) (0000)", + "1093003": "1093003 Albanian Secretariat of Extractive Industries Transparency Initiative (3535)", + "1093004": "1093004 National Nuclear Agency (3535)", + "1093005": "1093005 Albanian Geological Survey (3535)", + "1093006": "1093006 Mining Inspection and Rescue Unit (3535)", + "1093007": "1093007 Alb Chrome (3535)", + "1093008": "1093008 Alb Copper (3535)", + "1093009": "1093009 NFIM Elbasan (0808)", + "1093010": "1093010 Alb Miniera (3535)", + "1093011": "1093011 Central Technical Inspectorate (3535)", + "1094001": "1094001 Ministry of Urban Development and Tourism (3535)", + "1094002": "1094002 ALUIZNI \u2013 General Directorate + Tirana (3) (3535)", + "1094003": "1094003 ALUIZNI - Directorates of Tirana (1), Tirana (2) + Kavaje (3535)", + "1094004": "1094004 ALUIZNI - Directorates of Durres + Kruje (0707)", + "1094005": "1094005 ALUIZNI - Directorates of Elbasan (1) + Elbasan (2) (0808)", + "1094006": "1094006 ALUIZNI - Directorates of Korca + Pogradec (1515)", + "1094007": "1094007 ALUIZNI \u2013 Directorate of Shkodra (3333)", + "1094008": "1094008 ALUIZNI - Directorate of Lezha (2020)", + "1094009": "1094009 ALUIZNI - Directorates of Vlore (1), Vlore (2) + Sarande (3737)", + "1094010": "1094010 ALUIZNI - Directorates of Fier (1), Fier (2) + Lushnje (0909)", + "1094011": "1094011 ALUIZNI - Directorate of Kukes (1818)", + "1094012": "1094012 ALUIZNI - Directorate of Gjirokaster (1111)", + "1094013": "1094013 ALUIZNI - Directorate of Berat (0202)", + "1094014": "1094014 ALUIZNI - Directorate of Diber (0606)", + "1094015": "1094015 National Housing Agency (3535)", + "1094016": "1094016 National Agency of Territory Planning (3535)", + "1094017": "1094017 National Urban Construction Inspectorate (3535)", + "1094018": "1094018 National Agency of Tourism (3535)", + "1094019": "1094019 Tourism Service Office (3535)", + "1094020": "1094020 Coastal Zone Management and Clean-up Project (3535) (0000)", + "1094023": "1094023 \u201cSocial Housing\u201d Project Implementation Unit, Tirane (3535) (0000)", + "1094024": "1094024 \u201cSocial Housing\u201d Project Implementation Unit, Durres (0707) (0000)", + "1094025": "1094025 Korca Regional Waste Management Association (1515)", + "1094026": "1094026 Central Technical Archive of Construction (3535)", + "1094027": "1094027 ALUIZNI-Tirana (2)", + "1094028": "1094028 ALUIZNI-Tirana (3)", + "1094029": "1094029 National Coastal Agency (3535)", + "1094030": "1094030 Directorate of ALUIZNI, Tirane 4 (touristic area)", + "2011001": "2011001 Gjirokastra Region(1111)", + "2011019": "2011019 Rural Roads Enterprise (1111)", + "2012006": "2012006 Rural Road Maintenance Project (1812)", + "2014011": "2014011 Rural Roads Enterprise (1514)", + "2015001": "2015001 Kor\u00e7a Region (1515)", + "2015013": "2015013 Rural Road Maintenance Project (1515)", + "2016001": "2016001 Durresi-Kruja Region (0716)", + "2018001": "2018001 Kukes Region (1818)", + "2018022": "2018022 Rural Roads Enterprise (1818)", + "2020001": "2020001 Lezha Region (2020)", + "2024006": "2024006 Water Supply Enterprise (0924)", + "2025020": "2025020 Rural Roads Enterprise (0625)", + "2026023": "2026023 Rural Roads Enterprise (2026)", + "2028026": "2028026 Rural Road Maintenance Project (1128)", + "2029008": "2029008 Rural Roads Enterprise (1529)", + "2032012": "2032012 Rural Roads Enterprise (0232)", + "2033001": "2033001 Shkodra Region (3333)", + "2033007": "2033007 Rural Road Maintenance Project (3333)", + "2033036": "2033036 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Shkodra Villages (3333)", + "2034012": "2034012 Rural Roads Enterprise (1134)", + "2035001": "2035001 Tirana Region (3535)", + "2035014": "2035014 Rural Roads Enterprise (3535)", + "2036025": "2036025 Rural Roads Enterprise (1836)", + "2037001": "2037001 Vlora Region (3737)", + "2037024": "2037024 Rural Roads Enterprise (3737)", + "2042001": "2042001 Berat Region (0202)", + "2042011": "2042011 Rural Roads Enterprise (0202)", + "2043012": "2043012 Rural Roads Enterprise (0603)", + "2044007": "2044007 Rural Road Maintenance Project (3704)", + "2045013": "2045013 Rural Road Maintenance Project (1505)", + "2046001": "2046001 Dibra Region (0606)", + "2046012": "2046012 Rural Roads Enterprise (0606)", + "2047001": "2047001 Durresi Region (0707)", + "2047015": "2047015 Rural Roads Enterprise (0707)", + "2048001": "2048001 Region Elbasan (0808)", + "2048019": "2048019 Rural Roads Enterprise (0808)", + "2048020": "2048020 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Elbasan Villages (0808)", + "2049001": "2049001 Fieri Region (0909)", + "2049015": "2049015 Rural Roads Enterprise (0909)", + "2101001": "2101001 Municipality of Tirana (3535)", + "2101016": "2101016 Tirana Football Club (3535)", + "2101017": "2101017 Tirana Sports Club (3535)", + "2101028": "2101028 Funeral Service Enterprise (3535)", + "2101049": "2101049 Open Market Enterprise (3535)", + "2101054": "2101054 Nurseries and Kindergartens Administration (3535)", + "2101113": "2101113 Directorate of Dormitories (3535)", + "2101134": "2101134 Mini Municipality 4 (3535)", + "2101135": "2101135 Mini Municipality 10 (3535)", + "2101136": "2101136 Mini Municipality 2 (3535)", + "2101137": "2101137 Mini Municipality 8 (3535)", + "2101138": "2101138 Mini Municipality 11 (3535)", + "2101139": "2101139 Mini Municipality 3 (3535)", + "2101140": "2101140 Mini Municipality 6 (3535)", + "2101141": "2101141 Mini Municipality 1 (3535)", + "2101143": "2101143 Mini Municipality 9 (3535)", + "2101144": "2101144 Mini Municipality 7 (3535)", + "2101145": "2101145 Mini Municipality 5 (3535)", + "2101146": "2101146 Workers Enterprise No.1 (3535)", + "2101151": "2101151 Tirana Cultural Center (3535)", + "2101152": "2101152 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation) Tirane (3535)", + "2101153": "2101153 Development Center in Tirana (3535)", + "2101154": "2101154 Multi-disciplinary Centre (3535)", + "2101155": "2101155 Workers Enterprise no. 2 (3535)", + "2101156": "2101156 Workers Enterprise no. 3 (3535)", + "2101157": "2101157 Project Implementation Unit, Municipality of Tirana (3535)", + "2101158": "2101158 Social Center \u201cLet\u2019s Stay Together\u201d (3535)", + "2101160": "2101160 Community Center for Elderly People (3535)", + "2101161": "2101161 Consumer Protection Agency (3535)", + "2101162": "2101162 Common Home (3535)", + "2101163": "2101163 Multi-disciplinary Social Centre (3535)", + "2101165": "2101165 Shkoza Community Center (3535)", + "2101814": "2101814 Luigj Gurakuqi School (3535)", + "2102001": "2102001 Municipality of Berat (0202)", + "2102003": "2102003 Cleaning-Greenery Enterprise (0202)", + "2102004": "2102004 Municipal Enterprise of Housing (0202)", + "2102005": "2102005 Economic Center of Education (0202)", + "2102006": "2102006 Economic Center of Culture (0202)", + "2102012": "2102012 Football Club (0202)", + "2102013": "2102013 Other Federations (0202)", + "2102016": "2102016 Library (0202)", + "2102017": "2102017 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation) Berat (0202)", + "2102018": "2102018 Gallery of Arts, Berat (0202)", + "2102019": "2102019 Berati Development Center (0202)", + "2102020": "2102020 Lira Center (0202)", + "2103001": "2103001 Municipality of Bulqiza (0603)", + "2103003": "2103003 Cleaning-Greenery Enterprise (0603)", + "2103007": "2103007 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation) Bulqize (0603)", + "2104001": "2104001 Municipality of Delvina (3704)", + "2104004": "2104004 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation) Delvine (3704)", + "2105001": "2105001 Municipality of Bilisht (1505)", + "2105002": "2105002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation) Devoll (1505)", + "2106001": "2106001 Municipality of Peshkopi (0606)", + "2106008": "2106008 Economic Center of Culture (0606)", + "2106011": "2106011 Football Federation (0606)", + "2106012": "2106012 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation) Diber (0606)", + "2106013": "2106013 Multi-disciplinary Sports Federation (0606)", + "2107001": "2107001 Municipality of Durres (0707)", + "2107007": "2107007 Cultural Center A.Moisiu (0707)", + "2107008": "2107008 Economic Center of Education (0707)", + "2107009": "2107009 Multi-disciplinary Sports Club (0707)", + "2107010": "2107010 Teuta Football Club (0707)", + "2107013": "2107013 Municipal Enterprise (0707)", + "2107014": "2107014 Road Enterprise (0707)", + "2107015": "2107015 Municipal Enterprise- Beach (0707)", + "2107016": "2107016 Urban Park (0707)", + "2107017": "2107017 Daily Center for Elderly People (0707)", + "2107018": "2107018 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Durres (0707)", + "2107019": "2107019 Durres Baby Orphanage (0707)", + "2107021": "2107021 Durresi Library (0707)", + "2107022": "2107022 Children\u2019s Cultural Center (0707)", + "2107023": "2107023 \u201cSocial Housing\u201d Project Implementation Unit, Municipality of Durres (0707)", + "2108001": "2108001 Municipality of Shijak (0707)", + "2109001": "2109001 Municipality of Elbasan (0808)", + "2109008": "2109008 Nurseries and Kindergartens Administration (0808)", + "2109010": "2109010 Skampa Theater (0808)", + "2109012": "2109012 Sports Club (0808)", + "2109014": "2109014 Road Maintenance Enterprise (0808)", + "2109015": "2109015 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Elbasan City (Elber) (0808)", + "2109017": "2109017 Balash Social Center, Elbasan (0808)", + "2109019": "2109019 Sports Facility Maintenance (0808)", + "2109020": "2109020 Cultural Heritage Centre - Municipality of Elbasan (0808)", + "2109021": "2109021 Social Housing Administration Unit (0808)", + "2110001": "2110001 Municipality of Cerrik (0808)", + "2111001": "2111001 Municipality of Fier (0909)", + "2111004": "2111004 Economic Center of Culture (0909)", + "2111006": "2111006 Public Utilities Enterprise, Fier (0909)", + "2111008": "2111008 Cleaning-Greenery Enterprise (0909)", + "2111013": "2111013 Fier Football Club (0909)", + "2111018": "2111018 Economic Center of Education (0909)", + "2111019": "2111019 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Fier (0909)", + "2111020": "2111020 Home of elderly People, Fier (0909)", + "2112001": "2112001 Municipality of Patos (0909)", + "2112002": "2112002 Territory Planning Enterprise (0909)", + "2112005": "2112005 Patos Football Club (0909)", + "2112006": "2112006 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Patos (0909)", + "2112007": "2112007 Patos Cleaning Enterprise (0909)", + "2113001": "2113001 Municipality of Roskovec (0909)", + "2114001": "2114001 Municipality of Gramsh (0810)", + "2114008": "2114008 Municipal Enteprise of Housing (0810)", + "2114009": "2114009 Economic Center of Culture -Museum (0810)", + "2114013": "2114013 Football Federation (0810)", + "2114015": "2114015 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation),Gramsh (0810)", + "2115001": "2115001 Municipality of Gjirokastra (1111)", + "2115003": "2115003 Economic Center of Education (1111)", + "2115005": "2115005 Economic Center of Culture -Museum (1111)", + "2115008": "2115008 Municipal Enteprise of Housing (1111)", + "2115010": "2115010 Football Federation (1111)", + "2115017": "2115017 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Gjirokaster Qytet (1111)", + "2115018": "2115018 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Gjirokaster Fshat (1111)", + "2115019": "2115019 Home of elderly People, Gjirokaster (1111)", + "2116001": "2116001 Municipality of Libohove (1111)", + "2116005": "2116005 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Libohove (1111)", + "2117001": "2117001 Municipality of Krume (1812)", + "2117002": "2117002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Has (1812)", + "2118001": "2118001 Municipality of Kavaja (3513)", + "2118009": "2118009 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Kavaje (3513)", + "2118010": "2118010 Home of elderly People, Kavaje (3513)", + "2119001": "2119001 Municipality of Rogozhine (3513)", + "2119004": "2119004 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Rrogozhine (3513)", + "2120001": "2120001 Municipality of Erseke (1514)", + "2120003": "2120003 Sports Club (1514)", + "2120004": "2120004 Economic Center of Culture (1514)", + "2120005": "2120005 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Erseke (1514)", + "2121001": "2121001 Municipality of Leskovik (1514)", + "2122001": "2122001 Municipality of Korce (1515)", + "2122006": "2122006 Cleaning-Greenery Enterprise (1515)", + "2122007": "2122007 Economic Center of Culture (1515)", + "2122008": "2122008 Football Club (1515)", + "2122009": "2122009 Skenderbeu Football Club (1515)", + "2122013": "2122013 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Korca City (1515)", + "2122014": "2122014 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Korca Villages (1515)", + "2122015": "2122015 Korca Baby Orphanage (1515)", + "2122017": "2122017 Education Support Directorate, Korca Municipality (1515)", + "2122018": "2122018 Korca Development Center (1515)", + "2122019": "2122019 Project Implementation Unit - Municipality of Korce (1515)", + "2122020": "2122020 Korca Development Center no.2 (1515)", + "2122021": "2122021 Social Housing Administration Unit (1515)", + "2123001": "2123001 Municipality of Kruja (0716)", + "2123002": "2123002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Kruje (0716)", + "2123003": "2123003 Kastrioti Sports Club, Kruje (0716)", + "2124001": "2124001 Municipality of Kucova (0217)", + "2124004": "2124004 Municipal Enterprise of Housing (0217)", + "2124009": "2124009 Economic Center of Education (0217)", + "2124010": "2124010 Culture and Sport (0217)", + "2124011": "2124011 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Kucove (0217)", + "2125001": "2125001 Municipality of Kukes (1818)", + "2125017": "2125017 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Kukes (1818)", + "2126001": "2126001 Municipality of Lac (2019)", + "2126002": "2126002 Economic Center of Culture (2019)", + "2126003": "2126003 Football Federation (2019)", + "2126004": "2126004 Other Federations (2019)", + "2126006": "2126006 Roads-Sanitation Enterprise (2019)", + "2126007": "2126007 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Kurbin (2019)", + "2127001": "2127001 Municipality of Lezha (2020)", + "2127005": "2127005 Football Federation (2020)", + "2127009": "2127009 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Lezhe (2020)", + "2127010": "2127010 Daily Development Center in Lezha (2020)", + "2127011": "2127011 QR Municipality of Lezha (2020)", + "2128001": "2128001 Municipality of Librazhd (0821)", + "2128002": "2128002 Municipal Enterprise of Housing (0821)", + "2128005": "2128005 Sports Club (0821)", + "2128006": "2128006 Economic Center of Culture (0821)", + "2128007": "2128007 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Librazhd (0821)", + "2129001": "2129001 Municipality of Lushnja (0922)", + "2129008": "2129008 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Lushnje Qytet (0922)", + "2129009": "2129009 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Lushnje Fshat (0922)", + "2129010": "2129010 Public Properties Enterprise, Lushnje (0922)", + "2129011": "2129011 Lushnja Cultural Center and Sports Club (0922)", + "2130001": "2130001 Municipality of Koplik (3323)", + "2130009": "2130009 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Malesi e Madhe (3323)", + "2131001": "2131001 Municipality of Ballsh (0924)", + "2131007": "2131007 Economic Center of Culture (0924)", + "2131009": "2131009 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Mallakaster (0924)", + "2131010": "2131010 Public Utilities, Ballsh (0924)", + "2132001": "2132001 Municipality of Burrel (0625)", + "2132005": "2132005 Municipal Enterprise of Housing (0625)", + "2133001": "2133001 Municipality of Rreshen (2026)", + "2133005": "2133005 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Rreshen (2026)", + "2134001": "2134001 Municipality of Peqin (0827)", + "2134002": "2134002 Municipal Enterprise of Housing (0827)", + "2134003": "2134003 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Peqin (0827)", + "2134004": "2134004 Economic Center of Culture (0827)", + "2134005": "2134005 Football Federation (0827)", + "2135001": "2135001 Municipality of Permet (1128)", + "2135002": "2135002 Cleaning-Greenery Enterprise (1128)", + "2135007": "2135007 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Permet (1128)", + "2136001": "2136001 Municipality of Pogradec (1529)", + "2136005": "2136005 Municipal Enterprise of Housing (1529)", + "2136011": "2136011 Economic Center of Culture (1529)", + "2136013": "2136013 Other Federations (1529)", + "2136018": "2136018 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Pogradec (1529)", + "2136019": "2136019 QR Municipality of Pogradec (1529)", + "2137001": "2137001 Municipality of Puke (3330)", + "2137020": "2137020 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Puka city (3330)", + "2137021": "2137021 Sh.a Ujesjelles-Kanalizime (Water Supply and Sanitation), Puka villages (3330)", + "2138001": "2138001 Municipality of Saranda (3731)", + "2138002": "2138002 Economic Center of Culture (3731)", + "2138003": "2138003 Sports Club (3731)", + "2138007": "2138007 Economic Section -Municipality (3731)", + "2138008": "2138008 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Sarande (3731)", + "2138009": "2138009 Saranda Polyvalent Center (3731)", + "2138010": "2138010 School-age Orphanage in Saranda (3731)", + "2138011": "2138011 Public Utilities Enterprise (3731)", + "2139001": "2139001 Municipality of Corovode (0232)", + "2139008": "2139008 Public Utilities Enterprise (0232)", + "2139010": "2139010 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Skrapar (0232)", + "2140001": "2140001 Municipality of Polican (0232)", + "2140002": "2140002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Polican (0232)", + "2141001": "2141001 Municipality of Shkoder (3333)", + "2141010": "2141010 Nurseries and Kindergartens Administration (3333)", + "2141013": "2141013 Economic Center of Culture (3333)", + "2141016": "2141016 Football Club (3333)", + "2141017": "2141017 Theater (3333)", + "2141028": "2141028 Other Federations (3333)", + "2141031": "2141031 Directorate of Nurseries (3333)", + "2141032": "2141032 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Shkoder Qytet (3333)", + "2141034": "2141034 Home of elderly People, Shkoder (3333)", + "2141035": "2141035 Shkodra Baby Orphanage (3333)", + "2141037": "2141037 Shkodra Development Center (3333)", + "2141038": "2141038 School-age Orphanage in Shkodra (3333)", + "2141041": "2141041 Project Coordination and International Relations Directorate (3333)", + "2142001": "2142001 Municipality of Tepelena (1134)", + "2142002": "2142002 Municipal Enterprise of Housing (1134)", + "2142006": "2142006 Football Federation (1134)", + "2142008": "2142008 Economic Center of Culture (1134)", + "2142009": "2142009 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Tepelene (1134)", + "2143001": "2143001 Municipality of Memaliaj (1134)", + "2145001": "2145001 Municipality of Bajram Curri (1836)", + "2145010": "2145010 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation),Tropoje (1836)", + "2146001": "2146001 Municipality of Vlora (3737)", + "2146014": "2146014 Economic Center of Education (3737)", + "2146015": "2146015 Economic Center of Culture (3737)", + "2146017": "2146017 Municipal Enterprise of Housing (3737)", + "2146024": "2146024 Football Club (3737)", + "2146025": "2146025 Other Federations (3737)", + "2146029": "2146029 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Vlore (3737)", + "2146030": "2146030 Vlora Baby Orphanage (3737)", + "2146031": "2146031 Vlora Development Center (3737)", + "2147001": "2147001 Municipality of Divjaka (0922)", + "2147002": "2147002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Divjake (0922)", + "2147003": "2147003 Municipal Enterprise, Divjake (0922)", + "2150001": "2150001 Municipality of Manez (0707)", + "2151001": "2151001 Municipality of Sukth (0707)", + "2152001": "2152001 Municipality of Belsh (0808)", + "2153001": "2153001 Municipality of Prenjas (0821)", + "2154001": "2154001 Municipality of Kelcyre (1128)", + "2154002": "2154002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Kelcyre (1128)", + "2155001": "2155001 Municipality of Fushe-Arrez (3330)", + "2155003": "2155003 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Fushe-Arrez (3330)", + "2156001": "2156001 Municipality of Konispol (3731)", + "2157001": "2157001 Municipality of Vau Dejes (3333)", + "2157002": "2157002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Vau i Dejes (3333)", + "2158001": "2158001 Municipality of Orikum (3737)", + "2158002": "2158002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Orikum (3737)", + "2159001": "2159001 Municipality of Selenica (3737)", + "2159002": "2159002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Selenice (3737)", + "2160001": "2160001 Municipality of Himara (3737)", + "2162001": "2162001 Municipality of Mamuras (2019)", + "2162002": "2162002 Adriatiku Football Club, Mamurras (2019)", + "2163001": "2163001 Municipality of Fushe Kruja (0716)", + "2163002": "2163002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Fushe Kruje (0716)", + "2164001": "2164001 Municipality of Rubik (2026)", + "2164003": "2164003 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Rubik (2026)", + "2165001": "2165001 Municipality of Vora (3535)", + "2166001": "2166001 Municipality of Kamza (3535)", + "2166002": "2166002 Daily Center of Kamza (3535)", + "2166003": "2166003 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Kamez (3535)", + "2167001": "2167001 Municipality of Ura Vajgurore (0202)", + "2167002": "2167002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Ura-Vajgurore (0202)", + "2168001": "2168001 Municipality of Maliq (1515)", + "2302001": "2302001 Commune of Poshnje (0202)", + "2303001": "2303001 Commune of Kutalli (0202)", + "2304001": "2304001 Commune of Otllak (0202)", + "2305001": "2305001 Commune of Lumas (0202)", + "2306001": "2306001 Commune of Sinje (0202)", + "2307001": "2307001 Commune of Terpan (0202)", + "2308001": "2308001 Commune of Velabisht (0202)", + "2309001": "2309001 Commune of Vertop (0202)", + "2310001": "2310001 Commune of Roshnik (0202)", + "2311001": "2311001 Commune of Cukalat (0202)", + "2315001": "2315001 Commune of Fushe Bulqize (0603)", + "2316001": "2316001 Commune of Klenje (0603)", + "2317001": "2317001 Commune of Ostren (0603)", + "2318001": "2318001 Commune of Shupenze (0603)", + "2319001": "2319001 Commune of Gjorice (0603)", + "2320001": "2320001 Commune of Zerqan (0603)", + "2321001": "2321001 Commune of Martanesh (0603)", + "2321002": "2321002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Kraste (0603)", + "2325001": "2325001 Commune of Vergo (3704)", + "2326001": "2326001 Commune of Finiq (3704)", + "2328001": "2328001 Commune of Mesopotam (3704)", + "2335001": "2335001 Commune of Miras (1505)", + "2336001": "2336001 Commune of Bilisht (1505)", + "2337001": "2337001 Commune of Morave (1505)", + "2338001": "2338001 Commune of Proger (1505)", + "2345001": "2345001 Commune of Qender (0606)", + "2346001": "2346001 Commune of Melan (0606)", + "2347001": "2347001 Commune of Kastriot (0606)", + "2348001": "2348001 Commune of Lure (0606)", + "2349001": "2349001 Commune of Maqellare (0606)", + "2350001": "2350001 Commune of Fushe Murre (0606)", + "2351001": "2351001 Commune of Selisht (0606)", + "2352001": "2352001 Commune of Sllove (0606)", + "2353001": "2353001 Commune of Kala E Dodes (0606)", + "2354001": "2354001 Commune of Zall Dardhe (0606)", + "2355001": "2355001 Commune of Zall Rec (0606)", + "2356001": "2356001 Commune of Fushe Cidhen (0606)", + "2357001": "2357001 Commune of Arras (0606)", + "2358001": "2358001 Commune of Luzni (0606)", + "2365001": "2365001 Commune of Rashbull (0707)", + "2366001": "2366001 Commune of Xhafzotaj (0707)", + "2367001": "2367001 Commune of Gjepalaj (0707)", + "2368001": "2368001 Commune of Katundi I Ri (0707)", + "2370001": "2370001 Commune of Maminas (0707)", + "2372001": "2372001 Commune of Ishem (0707)", + "2381001": "2381001 Commune of Bradashesh (0808)", + "2382001": "2382001 Commune of Funar (0808)", + "2383001": "2383001 Commune of Gostime (0808)", + "2384001": "2384001 Commune of Gracen (0808)", + "2385001": "2385001 Commune of Grekan (0808)", + "2386001": "2386001 Commune of Gjinar (0808)", + "2387001": "2387001 Commune of Gjergjan (0808)", + "2388001": "2388001 Commune of Kajan (0808)", + "2389001": "2389001 Commune of Fierze (0808)", + "2390001": "2390001 Commune of Klos (0808)", + "2391001": "2391001 Commune of Labinot Mal (0808)", + "2392001": "2392001 Commune of Labinot Fushe (0808)", + "2393001": "2393001 Commune of Mollas (0808)", + "2394001": "2394001 Commune of Paper (0808)", + "2395001": "2395001 Commune of Rrase (0808)", + "2396001": "2396001 Commune of Shales (0808)", + "2397001": "2397001 Commune of Shirgjan (0808)", + "2398001": "2398001 Commune of Shushice (0808)", + "2399001": "2399001 Commune of Tregan (0808)", + "2400001": "2400001 Commune of Zavaline (0808)", + "2410001": "2410001 Commune of Mbrostare (0909)", + "2411001": "2411001 Commune of Libofsh (0909)", + "2412001": "2412001 Commune of Dermenas (0909)", + "2413001": "2413001 Commune of Topoje (0909)", + "2414001": "2414001 Commune of Levan (0909)", + "2415001": "2415001 Commune of Frakull (0909)", + "2416001": "2416001 Commune of Portez (0909)", + "2417001": "2417001 Commune of Qender (0909)", + "2418001": "2418001 Commune of Ruzhdie (0909)", + "2419001": "2419001 Commune of Zharres (0909)", + "2420001": "2420001 Commune of Kurjan (0909)", + "2421001": "2421001 Commune of Kuman (0909)", + "2422001": "2422001 Commune of Strume (0909)", + "2423001": "2423001 Commune of Cakran (0909)", + "2430001": "2430001 Commune of Pishaj (0810)", + "2431001": "2431001 Commune of Kodovjak (0810)", + "2432001": "2432001 Commune of Kukur (0810)", + "2433001": "2433001 Commune of Skenderbeg (0810)", + "2434001": "2434001 Commune of Porocan (0810)", + "2435001": "2435001 Commune of Lenie (0810)", + "2436001": "2436001 Commune of Tunje (0810)", + "2437001": "2437001 Commune of Sult (0810)", + "2438001": "2438001 Commune of Kushove (0810)", + "2445001": "2445001 Commune of Qender (1111)", + "2446001": "2446001 Commune of Odrie (1111)", + "2447001": "2447001 Commune of Lunxheri (1111)", + "2448001": "2448001 Commune of Antigone (1111)", + "2449001": "2449001 Commune of Lazarat (1111)", + "2450001": "2450001 Commune of Cepo (1111)", + "2451001": "2451001 Commune of Picar (1111)", + "2452001": "2452001 Commune of Dropull I Poshtem (1111)", + "2453001": "2453001 Commune of Dropull I Siperm (1111)", + "2454001": "2454001 Commune of Pogon (1111)", + "2455001": "2455001 Commune of Zagorie (1111)", + "2460001": "2460001 Commune of Golaj (1812)", + "2461001": "2461001 Commune of Fajze (1812)", + "2462001": "2462001 Commune of Gjinaj (1812)", + "2470001": "2470001 Commune of Lekaj (3513)", + "2471001": "2471001 Commune of Luz I Vogel (3513)", + "2472001": "2472001 Commune of Helmes (3513)", + "2473001": "2473001 Commune of Kryevidh (3513)", + "2474001": "2474001 Commune of Synej (3513)", + "2475001": "2475001 Commune of Golem (3513)", + "2476001": "2476001 Commune of Sinoballaj (3513)", + "2477001": "2477001 Commune of Gose (3513)", + "2485001": "2485001 Commune of Qender (1514)", + "2486001": "2486001 Commune of Mollas (1514)", + "2487001": "2487001 Commune of Clirim (1514)", + "2488001": "2488001 Commune of Barmash (1514)", + "2489001": "2489001 Commune of Piskal-Novosel (1514)", + "2490001": "2490001 Commune of Leskovik (1514)", + "2496001": "2496001 Commune of Voskopoje (1515)", + "2497001": "2497001 Commune of Lekas (1515)", + "2498001": "2498001 Commune of Vithkuq (1515)", + "2499001": "2499001 Commune of Pustec (1515)", + "2500001": "2500001 Commune of Pojan (1515)", + "2501001": "2501001 Commune of Vreshtas (1515)", + "2502001": "2502001 Commune of Libonik (1515)", + "2503001": "2503001 Commune of Prig (1515)", + "2504001": "2504001 Commune of Gore (1515)", + "2505001": "2505001 Commune of Moglice (1515)", + "2506001": "2506001 Commune of Voskop (1515)", + "2507001": "2507001 Commune of Drenove (1515)", + "2508001": "2508001 Commune of Mollaj (1515)", + "2509001": "2509001 Commune of Qender (1515)", + "2521001": "2521001 Commune of Nikel (0716)", + "2522001": "2522001 Commune of Bubq (0716)", + "2523001": "2523001 Commune of Koder Thumane (0716)", + "2524001": "2524001 Commune of Cudhi (0716)", + "2530001": "2530001 Commune of Perondi (0217)", + "2531001": "2531001 Commune of Kozare (0217)", + "2540001": "2540001 Commune of Malzi (1818)", + "2541001": "2541001 Commune of Bicaj (1818)", + "2542001": "2542001 Commune of Ujemisht (1818)", + "2543001": "2543001 Commune of Terthore (1818)", + "2544001": "2544001 Commune of Shtiqen (1818)", + "2545001": "2545001 Commune of Orgjost (1818)", + "2546001": "2546001 Commune of Shishtavec (1818)", + "2547001": "2547001 Commune of Topojan (1818)", + "2548001": "2548001 Commune of Bushtrice (1818)", + "2549001": "2549001 Commune of Surroj (1818)", + "2550001": "2550001 Commune of Arren (1818)", + "2551001": "2551001 Commune of Kolsh (1818)", + "2552001": "2552001 Commune of Kalis (1818)", + "2553001": "2553001 Commune of Gryka E Cajes (1818)", + "2560001": "2560001 Commune of Milot (2019)", + "2562001": "2562001 Commune of Fushe Kuqe (2019)", + "2570001": "2570001 Commune of Zejmen (2020)", + "2571001": "2571001 Commune of Shenkoll (2020)", + "2572001": "2572001 Commune of Shengjin (2020)", + "2573001": "2573001 Commune of Kolsh (2020)", + "2574001": "2574001 Commune of Balldren I Ri (2020)", + "2575001": "2575001 Commune of Kallmet I Madh (2020)", + "2576001": "2576001 Commune of Ungrej (2020)", + "2577001": "2577001 Commune of Dajc (2020)", + "2578001": "2578001 Commune of Blinisht (2020)", + "2586001": "2586001 Commune of Qukes (0821)", + "2587001": "2587001 Commune of Stravaj (0821)", + "2588001": "2588001 Commune of Hotolisht (0821)", + "2589001": "2589001 Commune of Polis (0821)", + "2590001": "2590001 Commune of Qender (0821)", + "2591001": "2591001 Commune of Lunik (0821)", + "2592001": "2592001 Commune of Orenje (0821)", + "2593001": "2593001 Commune of Sterbleve (0821)", + "2594001": "2594001 Commune of Rajce (0821)", + "2600001": "2600001 Commune of Ballagat (0922)", + "2601001": "2601001 Commune of Hysgjokaj (0922)", + "2602001": "2602001 Commune of Golem (0922)", + "2603001": "2603001 Commune of Fier-Shegan (0922)", + "2604001": "2604001 Commune of Karbunare (0922)", + "2605001": "2605001 Commune of Allkaj (0922)", + "2606001": "2606001 Commune of Krutje (0922)", + "2607001": "2607001 Commune of Bubullime (0922)", + "2608001": "2608001 Commune of Kolonje (0922)", + "2609001": "2609001 Commune of Gradisht (0922)", + "2610001": "2610001 Commune of Remas (0922)", + "2612001": "2612001 Commune of Grabian (0922)", + "2613001": "2613001 Commune of Terbuf (0922)", + "2614001": "2614001 Commune of Dushk (0922)", + "2625001": "2625001 Commune of Qender (3323)", + "2626001": "2626001 Commune of Kelmend (3323)", + "2627001": "2627001 Commune of Kastrat (3323)", + "2628001": "2628001 Commune of Shkrel (3323)", + "2629001": "2629001 Commune of Gruemire (3323)", + "2635001": "2635001 Commune of Fshat Ballsh (0924)", + "2636001": "2636001 Commune of Hekal (0924)", + "2637001": "2637001 Commune of Aranitas (0924)", + "2638001": "2638001 Commune of Fratar (0924)", + "2639001": "2639001 Commune of Kute (0924)", + "2640001": "2640001 Commune of Kapaj (0924)", + "2641001": "2641001 Commune of Ngracan (0924)", + "2642001": "2642001 Commune of Greshice (0924)", + "2645001": "2645001 Commune of Komsi (0625)", + "2646001": "2646001 Commune of Ulez (0625)", + "2647001": "2647001 Commune of Baz (0625)", + "2648001": "2648001 Commune of Rukaj (0625)", + "2649001": "2649001 Commune of Derjan (0625)", + "2650001": "2650001 Commune of Macukull (0625)", + "2651001": "2651001 Commune of Lis (0625)", + "2652001": "2652001 Commune of Suc (0625)", + "2653001": "2653001 Commune of Gurre (0625)", + "2654001": "2654001 Commune of Klos (0625)", + "2655001": "2655001 Commune of Xiber (0625)", + "2666001": "2666001 Commune of Kacinar (2026)", + "2667001": "2667001 Commune of Orosh (2026)", + "2668001": "2668001 Commune of Fan (2026)", + "2669001": "2669001 Commune of Kthelle (2026)", + "2670001": "2670001 Commune of Selite (2026)", + "2680001": "2680001 Commune of Gjocaj (0827)", + "2681001": "2681001 Commune of Karine (0827)", + "2682001": "2682001 Commune of Pajove (0827)", + "2683001": "2683001 Commune of Perparim (0827)", + "2684001": "2684001 Commune of Sheze (0827)", + "2690001": "2690001 Commune of Carcove (1128)", + "2691001": "2691001 Commune of Qender (1128)", + "2693001": "2693001 Commune of Suke (1128)", + "2694001": "2694001 Commune of Ballaban (1128)", + "2695001": "2695001 Commune of Frasher (1128)", + "2696001": "2696001 Commune of Dishnice (1128)", + "2697001": "2697001 Commune of Petran (1128)", + "2700001": "2700001 Commune of Bucimas (1529)", + "2701001": "2701001 Commune of Hundenisht (1529)", + "2702001": "2702001 Commune of Proptisht (1529)", + "2703001": "2703001 Commune of Velcan (1529)", + "2704001": "2704001 Commune of Trebinje (1529)", + "2705001": "2705001 Commune of Dardhas (1529)", + "2706001": "2706001 Commune of Cerrave (1529)", + "2715001": "2715001 Commune of Qerret (3330)", + "2716001": "2716001 Commune of Qelez (3330)", + "2718001": "2718001 Commune of Gjegjan (3330)", + "2719001": "2719001 Commune of Fierze (3330)", + "2720001": "2720001 Commune of Iballe (3330)", + "2721001": "2721001 Commune of Blerim (3330)", + "2722001": "2722001 Commune of Qafe-Mali (3330)", + "2723001": "2723001 Commune of Rrape (3330)", + "2730001": "2730001 Commune of Lukove (3731)", + "2731001": "2731001 Commune of Dhiver (3731)", + "2732001": "2732001 Commune of Livadhja (3731)", + "2734001": "2734001 Commune of Xarre (3731)", + "2735001": "2735001 Commune of Markat (3731)", + "2736001": "2736001 Commune of Ksamil (3731)", + "2737001": "2737001 Commune of Aliko (3731)", + "2740001": "2740001 Commune of Qender (0232)", + "2741001": "2741001 Commune of Potom (0232)", + "2742001": "2742001 Commune of Leshnje (0232)", + "2743001": "2743001 Commune of Cepan (0232)", + "2744001": "2744001 Commune of Vendreshe (0232)", + "2745001": "2745001 Commune of Bogove (0232)", + "2746001": "2746001 Commune of Zhepe (0232)", + "2747001": "2747001 Commune of Gjerbez (0232)", + "2755001": "2755001 Commune of Postribe (3333)", + "2756001": "2756001 Commune of Pult (3333)", + "2757001": "2757001 Commune of Shosh (3333)", + "2758001": "2758001 Commune of Shale (3333)", + "2759001": "2759001 Commune of Shllak (3333)", + "2760001": "2760001 Commune of Guri I Zi (3333)", + "2761001": "2761001 Commune of Vig Mnelle (3333)", + "2762001": "2762001 Commune of Hajmel (3333)", + "2764001": "2764001 Commune of Bushat (3333)", + "2765001": "2765001 Commune of Berdice (3333)", + "2766001": "2766001 Commune of Velipoje (3333)", + "2767001": "2767001 Commune of Dajc-Bregbune (3333)", + "2768001": "2768001 Commune of Ana Malit (3333)", + "2769001": "2769001 Commune of Rrethinat E Shkodres (3333)", + "2770001": "2770001 Commune of Temal (3333)", + "2780001": "2780001 Commune of Qender (1134)", + "2781001": "2781001 Commune of Fshat Memaliaj (1134)", + "2782001": "2782001 Commune of Krahes (1134)", + "2783001": "2783001 Commune of Qesarat (1134)", + "2784001": "2784001 Commune of Luftinje (1134)", + "2785001": "2785001 Commune of Buz (1134)", + "2786001": "2786001 Commune of Kurvelesh (1134)", + "2787001": "2787001 Commune of Lopez (1134)", + "2795001": "2795001 Commune of Petrele (3535)", + "2796001": "2796001 Commune of Berzhide (3535)", + "2797001": "2797001 Commune of Baldushk (3535)", + "2798001": "2798001 Commune of Zall Bastar (3535)", + "2799001": "2799001 Commune of Shengjergj (3535)", + "2800001": "2800001 Commune of Dajt (3535)", + "2801001": "2801001 Commune of Vaqarr (3535)", + "2802001": "2802001 Commune of Peze (3535)", + "2803001": "2803001 Commune of Ndroq (3535)", + "2804001": "2804001 Commune of Preze (3535)", + "2805001": "2805001 Commune of Zall Here (3535)", + "2807001": "2807001 Commune of Paskuqan (3535)", + "2808001": "2808001 Commune of Berxull (3535)", + "2809001": "2809001 Commune of Kashar (3535)", + "2811001": "2811001 Commune of Sauk (3535)", + "2812001": "2812001 Commune of Krrabe (3535)", + "2820001": "2820001 Commune of Tropoje (1836)", + "2821001": "2821001 Commune of Bytyc (1836)", + "2822001": "2822001 Commune of Lekbibaj (1836)", + "2823001": "2823001 Commune of Fierze (1836)", + "2824001": "2824001 Commune of Margegaj (1836)", + "2825001": "2825001 Commune of Bujan (1836)", + "2826001": "2826001 Commune of Llugaj (1836)", + "2835001": "2835001 Commune of Qender (3737)", + "2836001": "2836001 Commune of Novosele (3737)", + "2836002": "2836002 Sh.A. Ujesjelles-Kanalizime (Water Supply and Sanitation), Novosele (3737)", + "2837001": "2837001 Commune of Brataj (3737)", + "2838001": "2838001 Commune of Vranisht (3737)", + "2841001": "2841001 Commune of Shushice (3737)", + "2843001": "2843001 Commune of Vllahine (3737)", + "2844001": "2844001 Commune of Kote (3737)", + "2845001": "2845001 Commune of Sevaster (3737)", + "2846001": "2846001 Commune of Armen (3737)", + "1004903": "1004903 Support to SMEs PMU (3535) (0000)", + "1006904": "1006904 Durres Water Supply PIU (3535) (0000)", + "1006906": "1006906 Korca Water Supply PIU (1515) (0000)", + "1006908": "1006908 Pogradec Water Supply PIU (1529)", + "1025066": "1025066 Development Centre, Durres (0707)", + "1025077": "1025077 Elderly House, Tirane (3535)", + "1025082": "1025082 Pre-School Orphanage, Shkoder (3333)", + "1025901": "1025901 Social Service Distribution PIU (3535) (0000)", + "1046001": "1046001 (T) Debt Service (3535)", + "1078901": "1078901 Cross-Border Cooperation Programme Management and Implementation Unit (3535)", + "2764002": "2764002 IPA-Adriatic 2007-2013: Building Waste Sustainability", + "1003004": "1003004 Public Procurement Agency (3535)", + "1003006": "1003006 Directorate of Patents and Trademarks (3535)", + "1003008": "1003008 Directorate of Governmental Services (3535)", + "1003013": "1003013 National Agency of Information Society (3535)", + "1004007": "1004007 Albanian Power Corporation (3535)", + "1004047": "1004047 Machinery Manufacturing Enterprise (3535)", + "1004070": "1004070 Railway Station (3333)", + "1004072": "1004072 Knitwear Factory (1515)", + "1004075": "1004075 LUX Disco Bar Sh.P.K (3535)", + "1004080": "1004080 Commercial Centre for Development (3535)", + "1004085": "1004085 Coca Cola Bottling Albania (3535)", + "1004086": "1004086 Register of Shipping, Durres (3535)", + "1004089": "1004089 Port of Shengjin (sh.a) (3535)", + "1004091": "1004091 Port of Vlore (3535)", + "1004096": "1004096 Port of Saranda (3535)", + "1004098": "1004098 ANTA sh.p.k. (Ltd) (3535)", + "1004099": "1004099 QR, Tirana Municipality (3535)", + "1004100": "1004100 RC, Durres Municipality (0707)", + "1004110": "1004110 Durres Port Authority (3535)", + "1004112": "1004112 Student Treatment Enterprise, Shkoder (3535)", + "1004113": "1004113 Student Treatment Enterprise, Elbasan (3535)", + "1004114": "1004114 Regional Directorate of Road Transport Service, Tirane (3535)", + "1004115": "1004115 INSIG sh.a. (3535)", + "1004116": "1004116 Albpetrol sh.a. (3535)", + "1004118": "1004118 AMC (3535)", + "1004120": "1004120 Transmission System Operator sh.a (3535)", + "1004123": "1004123 Share Registration Centre (for dividend payment) (3535)", + "1004125": "1004125 Trans-Albania shpk (for dividend payment) (3535)", + "1004126": "1004126 Albanian Post s.a. (3535)", + "1004127": "1004127 Foralb Alabaster (3535)", + "1004128": "1004128 Energy Regulator Authority (3535)", + "1004133": "1004133 Fufarma sha (for dividend payment) (3535)", + "1004134": "1004134 Alba Film Studio (for dividend payment) (3535)", + "1005028": "1005028 Agriculture Directorate, Permet (1128)", + "1006072": "1006072 Road Authority, Pogradec (1529)", + "1006116": "1006116 National Housing Entity (1128)", + "1006117": "1006117 Institute of Technical Studies/Construction (3535)", + "1010043": "1010043 Regional Tax Office of Diber - Tax Office Bulqize (0603)", + "1010044": "1010044 Regional Tax Office of Vlore - Tax Office Delvine (3704)", + "1010052": "1010052 Regional Tax Office of Kukes - Agjencia e Tatim-Taksave Has (1812)", + "1010054": "1010054 Regional Tax Office of Korce - Agjencia e Tatim-Taksave Kolonje (1514)", + "1010061": "1010061 Regional Tax Office of Elbasan - Tax Office Librazhd (0821)", + "1010063": "1010063 Regional Tax Office of Shkoder - Tax Office M.Madhe (3323)", + "1010064": "1010064 Regional Tax Office of Fier - Tax Office Mallakaster (0924)", + "1010067": "1010067 Regional Tax Office of Elbasan - Tax Office Peqin (0827)", + "1010068": "1010068 Regional Tax Office of Gjirokaster - Tax Office Permet (1128)", + "1010070": "1010070 Regional Tax Office of Shkoder - Tax Office Puke (3330)", + "1010074": "1010074 Regional Tax Office of Gjirokaster- Tax Office Tepelene (1134)", + "1010075": "1010075 Regional Tax Office of Kukes - Tax Office Tropoje (1836)", + "1010078": "1010078 Regional Directorate of Tirane (3535)", + "1010101": "1010101 Supervision Unit of the Games of Chance (3535)", + "1010104": "1010104 Capital legalization and amnesty 2011 (0202)", + "1010105": "1010105 Capital legalization and amnesty 2011 (0217)", + "1010106": "1010106 Capital legalization and amnesty 2011 (0232)", + "1010110": "1010110 Capital legalization and amnesty 2011 (0707)", + "1010111": "1010111 Capital legalization and amnesty 2011 (0716)", + "1010112": "1010112 Capital legalization and amnesty 2011 (0808)", + "1010114": "1010114 Capital legalization and amnesty 2011 (0821)", + "1010116": "1010116 Capital legalization and amnesty 2011 (0909)", + "1010117": "1010117 Capital legalization and amnesty 2011 (0922)", + "1010118": "1010118 Capital legalization and amnesty 2011 (0924)", + "1010119": "1010119 Capital legalization and amnesty 2011 (1111)", + "1010123": "1010123 Capital legalization and amnesty 2011 (1514)", + "1010124": "1010124 Capital legalization and amnesty 2011 (1515)", + "1010134": "1010134 Capital legalization and amnesty 2011 (3333)", + "1010136": "1010136 Capital legalization and amnesty 2011 (3535)", + "1010139": "1010139 Capital legalization and amnesty 2011 (3737)", + "1011043": "1011043 University of Elbasan (0808)", + "1011146": "1011146 Polytechnic University, Faculty of Electrical Engineering (3535)", + "1011147": "1011147 Polytechnic University, Faculty of Construction Engineering (3535)", + "1011149": "1011149 Polytechnic University, Faculty of Geology and Mining (3535)", + "1011163": "1011163 University of Agriculture \u2013 Faculty of Bio-technology and Food (3535)", + "1011166": "1011166 Polytechnic University Faculty of Electrical Engineering (3535)", + "1011167": "1011167 Polytechnic University Faculty of Mechanical Engineering (3535)", + "1011168": "1011168 Polytechnic University Faculty of Construction Engineering (3535)", + "1011169": "1011169 Polytechnic University Faculty of Geology and Mining (3535)", + "1011170": "1011170 Polytechnic University Faculty of Information Technology (3535)", + "1011171": "1011171 Polytechnic University Faculty of Mathematical & Physics Engineering 3535)", + "1011173": "1011173 Polytechnic University Institute of Geo-sciences and Energy, Water and Environment (3535)", + "1012079": "1012079 Scientific Research Centre of Sports (3535)", + "1013090": "1013090 Health Insurance Institute (0707)", + "1013091": "1013091 Health Insurance Institute (0808)", + "1013092": "1013092 Health Insurance Institute (0909)", + "1013093": "1013093 Health Insurance Institute (1111)", + "1013095": "1013095 Health Insurance Institute (1818)", + "1013096": "1013096 Health Insurance Institute (3330)", + "1013097": "1013097 Health Insurance Institute (3333)", + "1013099": "1013099 Health Insurance Institute (3535)", + "1013100": "1013100 Health Insurance Institute (2020)", + "1013105": "1013105 State Health Inspectorate", + "1014034": "1014034 Bailiff Office, Permet (1128)", + "1016039": "1016039 Police Station, Kruje (0716)", + "1016041": "1016041 Police Station, Kurbin (2019)", + "1016042": "1016042 Police Station, Librazhd (0821)", + "1016044": "1016044 Police Station, Mallakaster (0924)", + "1016049": "1016049 Police Station, Permet (1128)", + "1016053": "1016053 Police Station, Skrapar (0232)", + "1016080": "1016080 Police Station No.1 Tirane (3535)", + "1016081": "1016081 Police Station No.2 Tirane (3535)", + "1016085": "1016085 Police Station No.6 Tirane (3535)", + "1016114": "1016114 Regional Unit of Traffic Police, Shkoder (3333)", + "1016115": "1016115 Regional Unit of Traffic Police, Kukes (1818)", + "1016116": "1016116 Regional Unit of Traffic Police, Lezhe (2020)", + "1016117": "1016117 Regional Unit of Traffic Police, Diber (0606)", + "1016118": "1016118 Regional Unit of Traffic Police, Durres (0707)", + "1016119": "1016119 Regional Unit of Traffic Police, Fier (0909)", + "1016120": "1016120 Regional Unit of Traffic Police, Elbasan (0808)", + "1016121": "1016121 Regional Unit of Traffic Police, Korce (1515)", + "1016122": "1016122 Regional Unit of Traffic Police, Berat (0202)", + "1016123": "1016123 Regional Unit of Traffic Police, Gjirokaster (1111)", + "1016124": "1016124 Regional Unit of Traffic Police, Vlore (3737)", + "1016125": "1016125 Fire Protection and Rescue Police, (Fier 0909)", + "1017021": "1017021 Military Base No.4501 Tirane (3535)", + "1017099": "1017099 Military Base No.1301/1 Tirane (3535)", + "1017112": "1017112 Military Base No.1104 Tirane (3535)", + "1017123": "1017123 Military Base no.3001/4 Tirane (3535)", + "1025101": "1025101 National Service of Labour (3535)", + "1053001": "1053001 Albanian Financial Supervisory Authority (3535)", + "1059005": "1059005 Durres Prefecture (0707)", + "1064001": "1064001 National Council of Radio and Television (3535)", + "1080064": "1080064 AHII Korce (1515)", + "1080088": "1080088 Non-tax agent, Private Bailiff Office Mat (0625)", + "1080095": "1080095 Non-tax agent, Private Bailiff Office Fier (0909)", + "1080115": "1080115 Non-tax agent, Private Bailiff Office Tirane (3535)", + "2101036": "2101036 Municipal Housing Enterprise (3535)", + "2107002": "2107002 School of Physical Education (0707)", + "2107020": "2107020 RC, Durres Municipality (0707)", + "2114014": "2114014 Primary Healthcare Directorate (0810)", + "2125002": "2125002 Economic Centre of Culture (1818)", + "2129007": "2129007 Football Club (0922)", + "1006083": "1006083 Pergj.e Department of Roads (Emergency) (3535)", + "1011177": "1011177 Vocational school Havzi Nela Kukes (1818)", + "1011178": "1011178 Vocational school Hysen Cela Durres (0707)", + "1011179": "1011179 Vocational school Mihal Shahini Elbasan (0808)", + "1011180": "1011180 Vocational school Sali Ceka Elbasan (0808)", + "1011181": "1011181 Vocational school Petro Sota Fier (0909)", + "1011182": "1011182 Vocational school Mekanike Bujqesore Lushnje (0922)", + "1011184": "1011184 Vocational school Ndertim Korce (1515)", + "1011185": "1011185 Vocational school Isuf Gjata Korce (1515)", + "1011186": "1011186 Vocational school Fan Noli Korce (1515)", + "1011188": "1011188 Vocational school Qemal Bazelli Cerrave, Pogradec (1530)", + "1011190": "1011190 Vocational school Kole Idromeno Shkoder (3333)", + "1011191": "1011191 Vocational school Zija Buliqi Shkoder (3333)", + "1011192": "1011192 Vocational school Hamdi Bushati Shkoder (3333)", + "1012095": "1012095 Device Approval Project for Tourism (3535)", + "1025117": "1025117 Agency. Nation. Education. Prof. Qualifications (3535)", + "1025902": "1025902 PIU Project Modernization of Social Assistance (3535) (0000)", + "1040001": "1040001 Political party Politike (3535)", + "1040051": "1040051 Political party Toleranca e Ree Shqiperise (3535)", + "1040061": "1040061 Political party Rruga e Lirise (3535)", + "1049001": "1049001 (T) Reserve Fund (3535)", + "1070001": "1070001 (T) Contingency Fund (3535)", + "1070002": "1070002 Arrears (3535)", + "1081001": "1081001 (T) Reserve for salary increases (3535)", + "1081002": "1081002 (T) Reserve for pension increases (3535)", + "1081003": "1081003 (T) Special Fund Payroll (3535)", + "1094021": "1094021 Njesia e Zbatimit te Projektit Banesa me Qellim Social Fier (0909) (0000)", + "1099003": "1099003 Transfer for expropriation (3535)", + "2132006": "2132006 JSC Water Supply and Sewerage Mat (0625)", + "1004193": "1004193 National Tourism Agency (3535)", + "1004194": "1004194 Tourism State Offices (3535)", + "1010901": "1010901 Ministry of Finance - Priorities Implementation Project, funded by the Kuwait Grant (3535)", + "1011231": "1011231 Albanian Rafting Federation", + "1011232": "1011232 Albanian Development Fund at the Ministry of Education (3535)", + "1011233": "1011233 Albanian Aeronautics Federation", + "1011234": "1011234 Confucius Institute at the University of Tirana (3535)", + "1013108": "1013108 Regional SHI, Durres (0707)", + "1013109": "1013109 Regional SHI, Elbasan (0808)", + "1013110": "1013110 Regional SHI, Diber(0606)", + "1013111": "1013111 Regional SHI, Berat (0202)", + "1013112": "1013112 Regional SHI, Fier (0909)", + "1013113": "1013113 Regional SHI, Kukes (1818)", + "1013114": "1013114 Regional SHI, Gjirokastra (1111)", + "1013115": "1013115 Regional SHI, Korce (1515)", + "1013116": "1013116 Regional SHI, Lezha (2020)", + "1013117": "1013117 Regional SHI, Shkoder (3333)", + "1005144": "1005144 National Veterinary and Plant Protection Authority (3535)", + "1006184": "1006184 Institute of Construction (3535)", + "1006187": "1006187 State Expropriation Agency (3535)", + "1006188": "1006188 Fier Regional Water and Sewerage Company SA (0909)", + "1006189": "1006189 Elbasan Regional Water and Sewerage Company SA (0808)", + "1006190": "1006190 Durres Regional Water and Sewerage Society (0707)", + "1006191": "1006191 Regional Water and Sewerage Company Dib\u00ebr SA (0606)", + "1006192": "1006192 Pogradec Regional Water and Sewer Company SA (1529)", + "1006193": "1006193 Regional Water Supply and Sewerage Company Kor\u00e7\u00eb JSC (1515)", + "1006194": "1006194 Regional Water and Sewerage Company Gjirokast\u00ebr SH (1111)", + "1006195": "1006195 Regional Water Supply and Sewerage Company Lushnj\u00eb JSC (0922)", + "1006197": "1006197 Sarand\u00eb Regional Water and Sewerage Company SA (3731)", + "1006199": "1006199 Lezh\u00eb Regional Water and Sewerage Company JSC (2020)", + "1006200": "1006200 Central East Region Directorate (Kor\u00e7\u00eb) (1515)", + "1006201": "1006201 Shkod\u00ebr Regional Water and Sewerage Company (3333)", + "1006202": "1006202 Regional Water and Sewerage Company Vlora JSC (3737)", + "1006947": "1006947 PIU Investment Program for Electricity Distribution I", + "1010312": "1010312 Kukes Airport (1818)", + "1010315": "1010315 Elbasan Vocational School (0808)", + "1010316": "1010316 Professional School of Services (Kor\u00e7a)", + "1010317": "1010317 Technical Vocational School (Kor\u00e7a)", + "1011245": "1011245 Albanian Federation of Beach Watchers and Water Rescue (3535)", + "1011272": "1011272 Local Pre-University Education Office Poli\u00e7an (0232)", + "1011273": "1011273 Albanian Federation of Amateur Radio (3535)", + "1011274": "1011274 Albanian Federation of Aeronautics (3535)", + "1011275": "1011275 Publications Center for the Tirana Diaspora (3535)", + "1011276": "1011276 National Higher Education Funding Agency (3535)", + "1011277": "1011277 Tirana Teqball Albanian Federation", + "1011278": "1011278 Tirana Albanian Padel Federation", + "1013153": "1013153 Social Service for Child Accommodation (0707)", + "1013155": "1013155 Healthcare Quality Assurance Agency (3535)", + "1014130": "1014130 Juvenile and Youth Crime Prevention Center (3535)", + "1014131": "1014131 The Institution for the Execution of Criminal Decisions Poiska (IEVP Poiska) (1529)", + "1015003": "1015003 National Diaspora Agency (3535)", + "1015004": "1015004 Arbereshet Studies and Publications Center (3535)", + "1016135": "1016135 Seized and Confiscated Assets Administration Agency (3535)", + "1016136": "1016136 Coordination Center Against Violent Extremism (QKEDH) (3535)", + "1016137": "1016137 Scientific Police Institute (3535)", + "1017142": "1017142 National Civil Defense Agency (3535)", + "1017145": "1017145 College of Defense and Security (3535)", + "1018018": "1018018 Regional Directorate no. 4 (0909)", + "1026091": "1026091 Lezh\u00eb Regional Coastal Agency (2020)", + "1026092": "1026092 Regional Agency of the Durr\u00ebs Coast (0707)", + "1026093": "1026093 Vlora Coastal Regional Agency (3737)", + "1026094": "1026094 Sarand\u00eb Coastal Regional Agency (3731)", + "1026095": "1026095 National Forestry Agency (3535)", + "1029050": "1029050 Information technology center (3535)", + "1029051": "1029051 Administrative Court of First Instance Lushnje (0922)", + "1040106": "1040106 Association of Paraplegic and Tetraplegic Invalids of Albania with Spinal Trauma (3535)", + "1040107": "1040107 Nisma Thurje party", + "1040108": "1040108 Agrarian Environmentalist Party of Albania", + "1041002": "1041002 National Bureau of Investigation (3535)", + "1087039": "1087039 National Youth Agency (3535)", + "1087040": "1087040 Agency for Media and Information (3535)", + "1087041": "1087041 State Agency for Strategic Programming and Aid Coordination (3535)", + "1087042": "1087042 Agency for the Support of Local Self-Government (3535)", + "2101076": "2101076 Creative Industry Agency Tirana (3535)", + "2101169": "2101169 Community Center For Persons with Disabilities (3535)", + "2101827": "2101827 Terrain Community Center (3535)", + "2101828": "2101828 Local Museum Studio Agolli House (3535)", + "2101829": "2101829 Tirana Art Gallery (3535)", + "2101830": "2101830 TEN Youth Center (3535)", + "2101831": "2101831 Inspectorate of Territory Protection (3535)", + "2109026": "2109026 Forestry, Agriculture and Environment Agency (0808)", + "2110002": "2110002 Cerrik Water and Sewerage Co., Ltd. (0808)", + "2111027": "2111027 Company for Greening, Hygiene and Maintenance of Fier Public Cemetery (0909)", + "2112009": "2112009 Public Services Agency (0909)", + "2136023": "2136023 Parks and Recreation Corporation (1529)", + "2143003": "2143003 Memaliaj Water Supply and Sewerage (1134)", + "2152002": "2152002 Ujesjelles Sewer Belsh (0808)", + "2156002": "2156002 Konispol Water and Sewer Co., Ltd. (3731)", + "2165003": "2165003 Vora Water Supply and Sewerage - Anonymous Society (3535)", + "2166007": "2166007 Kamez Public Services Enterprise (3535)", + "2166008": "2166008 Green Cleaning Company and Treg Kam\u00ebz (3535)", + "1005132": "1005132 Fuqizimi i Agjensise se Pagesave Shqiptare AZHBR (3535)", + "1006171": "1006171 Superfosfat sha Kurbin (2019)", + "1006183": "1006183 Autoriteti i Aviacionit Civil(3535)", + "1010287": "1010287 Qendra Tregtare per Zhvillim (3535)", + "1010288": "1010288 Trans-Albania shpk (3535)", + "1010298": "1010298 OST (Operatori i Sistemit te Transmetimit)(3535)", + "1010299": "1010299 Drejtoria e P\u00ebrgjithshme e Pron\u00ebsis\u00eb Industriale(3535)", + "1010300": "1010300 ALBAFILM (3535)", + "1010307": "1010307 Regjistri Detar Durres (3535)", + "1010308": "1010308 Qendra e Rregjistrimit te Aksioneve (per derdhje dividenti) (3535)", + "1010311": "1010311 Albcontrol SH.A (3535)", + "1080120": "1080120 Drejtoria Vendore e ASHK-se Tirana Veri", + "1080131": "1080131 Zyra Vendore e ASHK-se Gramsh", + "1080133": "1080133 Drejtoria Vendore e ASHK-se Vlore", + "1080137": "1080137 Drejtoria Vendore e ASHK-se Shkoder", + "1080138": "1080138 Zyra Vendore ASHK-se Malesi e Madhe", + "1080139": "1080139 Zyra Vendore ASHK-se Puke", + "1080141": "1080141 Zyra Vendore ASHK-se Kolonje", + "1080142": "1080142 Zyra Vendore ASHK-se Devoll", + "1080161": "1080161 Zyra Vendore ASHK-se Tropoje", + "2032004": "2032004 Qendra Ekonomike Arsimit (0232)", + "2118004": "2118004 Qendra Ekonomike Kultures (3513)", + "1040085": "1040085 Partia Aleanca e Maqedonasve per Integrim Europian (3535)", + "1040090": "1040090 Partia per mbrojtjen e te drejtave te punetoreve te shqiperise", + "1040097": "1040097 Partia SocialPunetore shqipetare", + "1040102": "1040102 Partia per Liri Demokraci dhe Etike", + "1040103": "1040103 Partia Bindja Demokratike (3535)", + "1040078": "1040078 Partia Minoriteti Etnik Grek per te Ardhmen (3535)", + "2133002": "2133002 Nd-ja Komunale Banesa (2026)", + "1011161": "1011161 Universiteti Bujqesor - Fakulteti i Ekonomise dhe Agrobiznesit (3535)", + "1011162": "1011162 Universiteti Bujqesor - Fakulteti i Bujqesise dhe Mjedisit (3535)", + "1011164": "1011164 Universiteti Bujqesor - Fakulteti i Shkencave Pyjore (3535)", + "1011165": "1011165 Universiteti Bujqesor - Fakulteti i Mjekesise Veterinare (3535)", + "1011247": "1011247 Organizata Kombetare Antidoping (3535)", + "1011248": "1011248 Zyra Vendore Arsimore, Ura Vajgurore (0202)", + "1011249": "1011249 Zyra Vendore Arsimore, Klos (0625)", + "1011250": "1011250 Drejtoria Rajonale Arsimore, Durr\u00ebs (0707)", + "1011251": "1011251 Zyra Vendore Arsimore, Shijak (0707)", + "1011252": "1011252 Zyra Vendore Arsimore, C\u00ebrrik (0808)", + "1011253": "1011253 Zyra Vendore Arsimore , Belsh (0808)", + "1011254": "1011254 Zyra Vendore Arsimore, Prenjas (0821)", + "1011255": "1011255 Drejtoria Rajonale Arsimore, Fier (0909)", + "1011256": "1011256 Zyra Vendore Arsimore, Patos (0909)", + "1011257": "1011257 Zyra Vendore Arsimore, Roskovec (0909)", + "1011258": "1011258 Zyra Vendore Arsimore, Divjak\u00eb (0922)", + "1011259": "1011259 Drejtoria Rajonale Arsimore, Kor\u00e7\u00eb (1515)", + "1011260": "1011260 Zyra Vendore Arsimore, Maliq (1515)", + "1011261": "1011261 Drejtoria Rajonale Arsimore, Lezhe (2020)", + "1011262": "1011262 Zyra Vendore Arsimore, Vau i Dej\u00ebs (3333)", + "1011263": "1011263 Zyra Vendore Arsimore, Rrogozhin\u00eb (3513)", + "1011264": "1011264 Agjencis\u00eb s\u00eb Sigurimit t\u00eb Cil\u00ebsis\u00eb s\u00eb Arsimit Parauniversitar (ASCAP), Tiran\u00eb (3535)", + "1011265": "1011265 Drejtoria e P\u00ebrgjithshme e Arsimit Parauniversitar (DPAP), Tiran\u00eb (3535)", + "1011266": "1011266 Zyra Vendore Arsimore, Vor\u00eb (3535)", + "1011267": "1011267 Zyra Vendore Arsimore, Selenic\u00eb (3737)", + "1012100": "1012100 Qendra Kombetare e Librit dhe Leximit(3535)", + "1012101": "1012101 Instituti Kombetar i Trashegimise Kulturore Tirane (3535)", + "1012102": "1012102 Qendra Muzeore Durres (0707)", + "1012103": "1012103 Drejtoria Rajonale e Trashegimise Kulturore Tirane (3535)", + "1012104": "1012104 Zyra e Administrimit dhe Koordinimit te Parqeve Arkeologjike Apoloni dhe Bylis (0909)", + "1013147": "1013147 Drejtoria Qendrore e Operatorit t\u00eb Sh\u00ebrbimeve t\u00eb Kujdesit Sh\u00ebndet\u00ebsor (3535)", + "1013148": "1013148 Drejtoria Rajonale Kujdesit Shendetesor Tiran\u00eb (3535)", + "1013149": "1013149 Drejtoria Rajonale Kujdesit Shendetesor Elbasan (0808)", + "1013150": "1013150 Drejtoria Rajonale Kujdesit Shendetesor Shkoder (3333)", + "1013151": "1013151 Drejtoria Rajonale Kujdesit Shendetesor Vlore (3737)", + "1035001": "1035001 Aparati Keshilli i Larte i Prokurorise (3535)", + "1040022": "1040022 Partia Demokrate per Integrim e Prosperitet (3535)", + "1040104": "1040104 Partia Kombetare Konservatore Albania (3535)", + "1041001": "1041001 Prokuroria e Posa\u00e7me Kund\u00ebr Korrupsionit dhe Krimit t\u00eb Organizuar (3535)", + "1087032": "1087032 Qendra Botimeve per Diasporen (3535)", + "1087033": "1087033 Sherbimi i Avokatures se Shtetit (3535)", + "1087034": "1087034 Agjencia Kombetare e Planifikimit te Territorit (3535)", + "1087035": "1087035 Fondi Shqiptar p\u00ebr Zhvillimin e Diaspor\u00ebs (3535)", + "1087036": "1087036 Sekretariati Teknik i Keshillit Ekonomik Kombetar (3535)", + "1087037": "1087037 Qendra e Studimeve dhe Publikimeve p\u00ebr Arb\u00ebresh\u00ebt (3535)", + "1087038": "1087038 Nj\u00ebsia Speciale Antikorrupsion dhe Antievazion (3535)", + "2101820": "2101820 Klubi shumesportesh Partizani (3535)", + "2101821": "2101821 Klubi Sportiv Studenti,Tirane (3535)", + "2101822": "2101822 Muzeu Vendor Shtepia Studio Kadare (3535)", + "2101823": "2101823 Qendra e Restaurimit dhe Realizimit te Veprave te Artit Tirana (3535)", + "2101824": "2101824 Agjencia e Rinise (3535)", + "2106014": "2106014 Ndermarrja Balneare Peshkopi (0606)", + "2111024": "2111024 Nderrmarrja e Sherbimeve Rurale (0909)", + "2113002": "2113002 Ndermarja e Sherbimeve te Mirmbajtes (Rruge ,Dekor, Ndricim,Shkolla,Mirembaktje dhe Investime Publike)(0909)", + "2113003": "2113003 Nd\u00ebrmarja e Pastrim, Gjelb\u00ebrim dhe Mir\u00ebmbajtja Varreza (0909)", + "2131012": "2131012 Ndermarrja e Sherbimeve Publike, Mallakaster (0924)", + "2143002": "2143002 Drejtoria e Sherbimit (1134)", + "2146032": "2146032 Ndermarja Publike Bashkiake per Menaxhimin e Mbetjeve Urbane (3737)", + "2452002": "2452002 Shoqeria Ujesjelles Kanalizime Dropull Sh.A (1111)", + "1005139": "1005139 Agjencia Rajonale e Ekstensionit Bujqesor Tirane (3535)", + "1005140": "1005140 Agjencia Rajonale e Ekstensionit Bujqesor Shkoder (3333)", + "1006164": "1006164 Agjencia e Eficences se Energjise (AEE) (3535)", + "1006167": "1006167 Albminiera (3535)", + "1006172": "1006172 Prodhim Mobilje sh.a Tirane (3535)", + "1006173": "1006173 Prodhim kabllo Shkoder (3333)", + "1006176": "1006176 Kombinati energjetik Elbasan (0808)", + "1006180": "1006180 KESH sh.a (3535)", + "1006936": "1006936 Siguria e Digave, IDA (3535)(0000)", + "1006937": "1006937 Projekti per Rimekembjen e Energjise , Komponenti 4(3535) (0000)", + "1006938": "1006938 Projekti I Rimekembjes se Energjise Huaja IBRD 8429 AL Komponenti 1(3535) (0000)", + "1006939": "1006939 Dam Safety Project (projekti I sigurise se digave) (3535 (0000))", + "1006940": "1006940 Projekti I Rimekembjes se Energjise,komp.2 (3535) (0000)", + "1006941": "1006941 Linja unazore 110 Kv e Shqiperise se Jugut 09/10 kfe", + "1006942": "1006942 Linja 400 Kv Shqiperi-Kosove (09/09 KFW)", + "1006943": "1006943 Linja unazore 110 Kv e Shqiperise se Jugut 09/11 KFW", + "1006944": "1006944 Powre recovery Project komponeti 3", + "1006945": "1006945 Siguria e Digave , EBRD (3535)", + "1006946": "1006946 Linja unazore 110 Kv e Shqiperise se Jugut 09/12 KFW OST (3535)", + "1010903": "1010903 Fondi kombetar (3535)", + "1013146": "1013146 Sht\u00ebpia e f\u00ebmij\u00ebve p\u00ebr grupmoshat 16-18 vje\u00e7 (3333)", + "1016132": "1016132 Agjencia e Blerjeve t\u00eb P\u00ebrq\u00ebndruara (3535)", + "1087030": "1087030 Agjensia per Diasporen dhe Migracionin(3535)", + "1087031": "1087031 Qendra e Koordinimit kunder Ekstremizmit te Dhunshem (QEKDH) (3535)", + "2101818": "2101818 Qendra Komunitare Gonxhe Bojaxhi (3535)", + "2101819": "2101819 Qendra Sociale Streh\u00ebza Tiran\u00eb (3535)", + "1005135": "1005135 Agjencia Rajonale e Sherbimit Veterinar dhe Mbrojtjes se Bimeve Tirane (3535)", + "1005136": "1005136 Agjencia Rajonale e Sherbimit Veterinar dhe Mbrojtjes se Bimeve Elbasan (0808)", + "1005137": "1005137 Agjencia Rajonale e Sherbimit Veterinar dhe Mbrojtjes se Bimeve Shkoder (3333)", + "1005138": "1005138 Agjencia Rajonale e Sherbimit Veterinar dhe Mbrojtjes se Bimeve Vlore (3737)", + "1005141": "1005141 Agjencia Rajonale e Ekstensionit Bujqesor Lushnje (0922)", + "1005142": "1005142 Agjencia Rajonale e Ekstensionit Bujqesor Korce (1515)", + "1006177": "1006177", + "1010290": "1010290 Porti Detar Sarande (3535)", + "1010291": "1010291 Regjistri Detar Durres (3535", + "1010292": "1010292 Posta Shqiptare sh.a. (3535)", + "1010293": "1010293 Porti Detar Vlore (3535)", + "1010294": "1010294 Shtypshkronja e Letrave me Vlere (3535)", + "1010295": "1010295 Fabrika e pijeve freskuese Coca Cola (3535)", + "1011246": "1011246 Federata e Sportit Universitar", + "1013103": "1013103", + "1014129": "1014129 Institucioni i Ekzekutimit t\u00eb Vendimeve Penale Shkod\u00ebr (3333)", + "1016077": "1016077", + "1017050": "1017050", + "1017136": "1017136 Reparti Ushtarak 4030 (3535)", + "1017139": "1017139 Drejtoria e P\u00ebrgjithshme e Emergjencave Civile/Rezervat e Shtetit (3535)", + "1080104": "1080104 Agjent jo-tatimor Zyra Permbarimore Private Progradec (1529)", + "1090001": "1090001 Komisioni i Prokurimit Publik (3535)", + "1005914": "1005914 Improve public protection and combating zoonotic diseases PIU (3535)", + "1004195": "1004195 Agjensia Kombetare e Bregdetit (3535)", + "1013118": "1013118 Regional SHI, Vlore (3737)", + "1013119": "1013119 National Emergency Service (3535)", + "1013120": "1013120 Order of dentist (3535)", + "1013907": "1013907 Njesia e Koordinimit te Projektit Permiresimi i Sistemit te Shendetesise HSIP(3535)", + "1014105": "1014105 Institution of Execution of Penal Decisions (0909)", + "1016129": "1016129 Directorate of Anti-Terror", + "1016130": "1016130 INUK (3535)", + "1017131": "1017131 Military Unit No.6604, Materials Management Centre and Central Laboratory of AF", + "1025120": "1025120 National Youth Service (3535)", + "1025121": "1025121 National Emergency Center (3535)", + "1025122": "1025122 National Agency for Vocational Education and Training and Qualifications (3535)", + "1025123": "1025123 School,Kristo Isak, Myrteza Kepi Berat (0202)", + "1025124": "1025124 Vocational School,Stiliano Bandilli and Poli\u00e7an School Berat (0202)", + "1025125": "1025125 School,Nazmi Rushiti Diber (0606)", + "1025126": "1025126 School, Beqir \u00c7ela Durres (0707)", + "1025127": "1025127 School, Hysen \u00c7ela Durres (0707)", + "1025128": "1025128 Vocational School, Ali Myftiu and Halit Berzheshta Elbasan (0808)", + "1025129": "1025129 Vocational School, Sali Ceka Elbasan (0808)", + "1025130": "1025130 Vocational School, Mihal Shahini Elbasan (0808)", + "1025131": "1025131 Vocational School, Petro Sota Fier (0909)", + "1025132": "1025132 Vocational School, Rakip Kryeziu Fier (0909)", + "1025133": "1025133 Vocational School, Mekanike Lushnje (0922)", + "1025134": "1025134 Vocational School, Thoma Papano Gjirokaster (1111)", + "1025135": "1025135 Vocational School, Fan Noli Kor\u00e7e (1515)", + "1025136": "1025136 Vocational School, Isuf Gjata Kor\u00e7e (1515)", + "1025137": "1025137 Vocational Construction School, Kor\u00e7e (1515)", + "1025138": "1025138 Vocational School, Demir Progri, Kor\u00e7e (1515)", + "1025139": "1025139 Vocational School, Irakli Terova Kor\u00e7e (1515)", + "1025140": "1025140 Vocational School, Enver Qiraxhi and Qemal Bazelli Pogradec(1529)", + "1025141": "1025141 Vocational School, Hafzi Nela Kukes(1818)", + "1025142": "1025142 Vocational School, Kolin Gjoka Lezhe(2020)", + "1025143": "1025143 Vocational Industrial School. Rubik(2026)", + "1025144": "1025144 Vocational School,Arben Broci e Kole Idromeno Shkode(3333)r", + "1025145": "1025145 Vocational Forestry School, Kol Margjini Shkoder(3333)", + "1025146": "1025146 Vocational School,Hamdi Bushati Shkoder (3333)", + "1025147": "1025147 Vocational School,Ndre Mjeda, Zija Buliqi, Trush Shkoder(3333)", + "1025148": "1025148 Hoteling and Tourism School, Tirane(3535)", + "1025149": "1025149 Vocational School, Technical and Economic Studies, Tirane(3535)", + "1025150": "1025150 Vocational School, Karl Gega, Tirane(3535)", + "1025151": "1025151 Electrician School, Gjergj Canco, Herman G, Tirane (3535)", + "1025152": "1025152 Vocational School, Kamez (3535)", + "1025153": "1025153 Vocational School,26 Marsi Kavaje(3513)", + "1025154": "1025154 Vocational School,Agrobiznes Kavaje(3513)", + "1025155": "1025155 Vocational School,Pavarsia Vlore(3737)", + "1025156": "1025156 Vocational Commercial School, Vlore(3737)", + "1025157": "1025157 Vocational School, Antoni Athanasi Sarande(3731)", + "1025158": "1025158 Elderly House of Shkoder (3333)", + "1026087": "1026087 Agjencia Komb\u00ebtare e Zonave t\u00eb Mbrojtura(3535))", + "1040006": "1040006 Democratic Alliance Party (3535)", + "1040010": "1040010 Agrarian Environmentalist Party (3535)", + "1040018": "1040018 Partia Levizja e Legalitetit (3535)", + "1040031": "1040031 Albanian Communist Party (3535)", + "1040032": "1040032 Democratic National Front Party (3535)", + "1040033": "1040033 Democratic Albanian Union Party (3535)", + "1040036": "1040036 Liberal Right Thinking Party (3535)", + "1040041": "1040041 National Unity Party (3535)", + "1040054": "1040054 Albania People's Christian Democratic Party (3535)", + "1040057": "1040057 Law and Justice Party (3535)", + "1040058": "1040058 True Socialist Party 91 (3535)", + "1040059": "1040059 Albanian Homeland Party (3535)", + "1040062": "1040062 National Arbers Alliance Party (3535)", + "1040063": "1040063 Alliance for European Equality and Justice Party (3535)", + "1040065": "1040065 Albanian Affairs Party (3535)", + "1040071": "1040071 Christian Democratic Alliance of Albania Party (3535)", + "1040075": "1040075 Alliance for Democracy and Solidarity Party (3535)", + "1040088": "1040088 Liberal Democrat Union Party", + "1040089": "1040089 Albanian Christian Democratic League Party", + "1087018": "1087018 Agency for Implementation of the Territorial Reform", + "1093012": "1093012 Rubber factory Durres", + "1093013": "1093013 Berateks sh.a, Berat", + "1093014": "1093014 Superfosfati sh.a., Kurbin", + "1093015": "1093015 Furniture Manufacturing (Prodhim Mobilje) sh.a, Tirane", + "1093016": "1093016 Cables production, Shkoder", + "1093017": "1093017 Steel Manufacturing Enterprise, Elbasan", + "1093018": "1093018 Nitrogen Fertilizer Plant, Fier", + "1093019": "1093019 Uz 12 NI CO, winding (0808)", + "1093020": "1093020 Power Plant (0808)", + "1093021": "1093021 NPV sh.a (0707)", + "1093901": "1093901 Management Unit of Energy Recovery Project (3535)", + "1094031": "1094031 Regional Directorate of NHA, Vlore", + "1094034": "1094034 National Territorial Planning Agency (NTPA) (3535)", + "1094035": "1094035 ALUIZNI-Tirana 5 Kamez + Vore (3535)", + "1094036": "1094036 ALUIZNI- Directorate of Lushnje (0922)", + "1094037": "1094037 ALUIZNI- Directorate of Sarande (3731)", + "2033006": "2033006 Land Commission Ana Malet (3333)", + "2101815": "2101815 Parks and Recreation Agency (3535)", + "2101816": "2101816 Tirana Parking (3535)", + "2136020": "2136020 Pogradec Greenery Enterprise (1529)", + "2166005": "2166005 Kamez Water Supply Enterprise (3535)", + "1016032": "1016032 Police Station, Bulqize (0603)", + "1016034": "1016034 Police Station, Devoll (1505)", + "1016037": "1016037 Police Station, Has (1812)", + "1041036": "1041036 Tax Office Branch, Tepelene District (1134)", + "1080117": "1080117 Non Tax-Agent, Private Bailiff Office of Sarande (3731)", + "2101013": "2101013 Estrada (3535)", + "2101061": "2101061 Education Directorate, City (3535)", + "2166004": "2166004 Kamez Cleaning Enterprise", + "1003016": "1003016 Agjencia Kombetare e Shoqerise se Informacionit (AKSHI) (3535)", + "1003017": "1003017 Autoriteti Kombetar per Certifikimin Elektronik (AKCE) (3535)", + "1003018": "1003018 Agjencia Kombetare per Sigurine Kompjuterike (ALCIRT) (3535)", + "1003019": "1003019 Autoriteti Shteteror per Informacionin Gjeohapesinor (ASIG) (3535)", + "1003020": "1003020 Departamenti I Administrates Publike (DAP) (3535)", + "1003021": "1003021 Shkolla Shqiptare e Administrates Publike (ASPA) (3535)", + "1003022": "1003022 Qendra e Ofrimit te Sherbimeve Publike dhe te Integruara (ADISA) (3535)", + "1004196": "1004196 Qendra Kombtare e Biznesit (3535)", + "1004197": "1004197 Inspektoriati Shtetror i Tregut(3535)", + "1005917": "1005917 Projekti Protokolli Italian 2010-2012", + "1006137": "1006137 Porti Detar Vlore (3737)", + "1006933": "1006933 Njesia e Manaxhimit te projektit te ndertimit te segmentit rrugor Qukes Qafe Plloce, Lot 1 dhe Lot", + "1006934": "1006934 Njesia e Manaxhimit te projektit Ndertimi i Seksionit Rrugor Qukes-Qafe Plloce, Segmenti Nr.3", + "1011235": "1011235 Federata Shqiptare e Aeronautiks", + "1011236": "1011236 Federata Shqiptare e Ndeshjes se Lire (3535)", + "1011237": "1011237 Agjencia Kombetare e Kerkimit Shkencor dhe Inovacionit (3535)", + "1012097": "1012097 Muzeu Kombetar i Fotografise Marubi (3333)", + "1014106": "1014106 Arkivi Shteteror i Sistemit Gjyqesor (3535)", + "1017138": "1017138 Spitali Universitar i Traumes (3535)", + "1087019": "1087019 Agjencia e Menaxhimit te Qendrave per Hapje dhe Dialog (AMQHD) (3535)", + "1087020": "1087020 Agjencia Kombetare per Zhvillimin Rajonal (3535)", + "1087021": "1087021 Agjencia e Zhvillimit Ekonomik Rajonal (3535)", + "1087022": "1087022 Agjencia e Zhvillimit Rajonal nr.1 Shkoder (3333)", + "1087023": "1087023 Agjencia e Zhvillimit Rajonal nr.2 Tirane(3535)", + "1087024": "1087024 Agjencia e Zhvillimit Rajonal nr.3 Korce (1515)", + "1087025": "1087025 Agjencia e Zhvillimit Rajonal nr.4 Vlore (3737)", + "1093902": "1093902 Sigurimi i Digave, IDA (3535)", + "1093903": "1093903 Fuqizimi i Sistemit Elektrik ne Shqiperi (3535)", + "1093904": "1093904 Linja 400 Kv Shqiperi-Kosove (3535)", + "1093905": "1093905 Linja unazore 110 Kv e Shqiperise se Jugut (donatori 09/10 KFE)", + "1093906": "1093906 Linja unazore 110 Kv e Shqiperise se Jugut (donatori 09/11 KFE)", + "1093907": "1093907 Siguria e Digave , EBRD (3535)", + "1093910": "1093910 Projekti per Rimekembjen e Energjise , Komponenti 4", + "1094038": "1094038 ALUIZNI- Drejtoria Tirane-Jug (3535)", + "1094039": "1094039 ALUIZNI- Drejtoria Kavaje (3513)", + "1094040": "1094040 ALUIZNI- Drejtoria Kruje (0716)", + "2102022": "2102022 Drejtoria e Bujqesise Administrimit te Pyjeve Ujrave dhe Sherbimit Veterinar (0202)", + "2111022": "2111022 Ndermarrja e Ujitjes dhe Kullimit Fier (0909)", + "2115021": "2115021 Drejtoria e Mbrojtjes nga Zjarri dhe Shpetimin (1111)", + "2115022": "2115022 Agjencia e Sherbimeve Bujqesore (1111)", + "2128008": "2128008 Mirembajtje e Rrugeve Librazhd (0821)", + "2129012": "2129012 Qendra e Arsimit Lushnje (0922)", + "2133006": "2133006 Agjencia e Puneve Publike dhe Mirembajtjes (2026)", + "2136021": "2136021 Qendra Arsimore Pogradec (1529)", + "2136022": "2136022 Ndermarrja e Infrastrukturave Rurale Pogradec (1529)", + "2141042": "2141042 Drejtoria e Emergjencave Civile, Mbrojtjes nga Zjarri dhe Shpetimit (3333)", + "2141043": "2141043 Drejtoria e Sherbimeve Bujqesore dhe Pyjore (3333)", + "1010141": "1010141 Immovable Property Revaluation (0202)", + "1010142": "1010142 Immovable Property Revaluation (0217)", + "1010143": "1010143 Immovable Property Revaluation (0232)", + "1010144": "1010144 Immovable Property Revaluation (0603)", + "1010145": "1010145 Immovable Property Revaluation (0625)", + "1010146": "1010146 Immovable Property Revaluation (0707)", + "1010147": "1010147 Immovable Property Revaluation (0707)", + "1010148": "1010148 Immovable Property Revaluation (0716)", + "1010149": "1010149 Immovable Property Revaluation (0808)", + "1010150": "1010150 Immovable Property Revaluation (0810)", + "1010151": "1010151 Immovable Property Revaluation (0821)", + "1010152": "1010152 Immovable Property Revaluation (0827)", + "1010153": "1010153 Immovable Property Revaluation (0909)", + "1010154": "1010154 Immovable Property Revaluation (0922)", + "1010155": "1010155 Immovable Property Revaluation (0924)", + "1010156": "1010156 Immovable Property Revaluation (1111)", + "1010157": "1010157 Immovable Property Revaluation (1128)", + "1010158": "1010158 Immovable Property Revaluation (1134)", + "1010159": "1010159 Immovable Property Revaluation (1505)", + "1010160": "1010160 Immovable Property Revaluation (1514)", + "1010161": "1010161 Immovable Property Revaluation (1515)", + "1010162": "1010162 Immovable Property Revaluation (1529)", + "1010163": "1010163 Immovable Property Revaluation (1812)", + "1010164": "1010164 Immovable Property Revaluation (1818)", + "1010165": "1010165 Immovable Property Revaluation (1836)", + "1010166": "1010166 Immovable Property Revaluation (2019)", + "1010167": "1010167 Immovable Property Revaluation (2020)", + "1010168": "1010168 Immovable Property Revaluation (2026)", + "1010169": "1010169 Immovable Property Revaluation (3323)", + "1010170": "1010170 Immovable Property Revaluation (3330)", + "1010171": "1010171 Immovable Property Revaluation (3333)", + "1010172": "1010172 Immovable Property Revaluation (3513)", + "1010173": "1010173 Immovable Property Revaluation (3535)", + "1010174": "1010174 Immovable Property Revaluation (3731)", + "1010175": "1010175 Immovable Property Revaluation (3737)", + "1003904": "1003904 Minist\u00ebr Shteti p\u00ebr Inovacionin dhe Administrat\u00ebn Publike (3535)", + "1006156": "1006156 Sherbimi Gjeologjik Shqiptar (SHGJSH) (3535)", + "1006157": "1006157 Inspektoriati Shteteror Teknik dhe Industrial (ISHTI) (3535)", + "1006158": "1006158 Autoriteti Komb\u00ebtar p\u00ebr Sigurin\u00eb dhe Emergjencat n\u00eb Miniera (AKSEM) (3535)", + "1006160": "1006160 Agjencia Kombetare e Planifikimit te Territorit (AKPT) (3535)", + "1006161": "1006161 Arkivi Qendror Teknik i Ndertimit (AQTN)(3535)", + "1006162": "1006162 Agjencia Kombetare e Burimeve Natyrore (AKBN) (3535)", + "1006931": "1006931 Enti Rregullator i Sektorit te Furnizmit me Uje dhe Largimit te Perpunimit te Ujerave te Ndotura (3535)", + "1010179": "1010179 Administrata Qendrore SHKP (3535)", + "1010186": "1010186 Zyra Punesimit Durres (0707)", + "1010188": "1010188 Zyra Punesimit Elbasan (0808)", + "1010192": "1010192 Zyra Punesimit Fier (0909)", + "1010195": "1010195 Zyra Punesimit Gjirokaster (1111)", + "1010198": "1010198 Zyra Punesimit Kor\u00e7e (1515)", + "1010201": "1010201 Zyra Punesimit Pogradec (1529)", + "1010205": "1010205 Zyra Punesimit Lezhe (2020)", + "1010214": "1010214 Zyra Punesimit Tirane (3535)", + "1010215": "1010215 Zyra Punesimit Kavaje (3513)", + "1010216": "1010216 Q.Form. Profes. Nr.1 Tirane (3535)", + "1010217": "1010217 Q.Form. Profes. Nr.4 Tirane (3535)", + "1010218": "1010218 Q.Form. Profes. Durres (0707)", + "1010219": "1010219 Q.Form. Profes. Korce (1515)", + "1010220": "1010220 Q.Form. Profes. Elbasan (0808)", + "1010221": "1010221 Q.Form. Profes. Gjirokaster (1111)", + "1010222": "1010222 Q.Form. Profes.Vlore (3737)", + "1010223": "1010223 Q.Form. Profes. Shkoder (3333)", + "1010224": "1010224 Q.Form. Profes. Fier (0909)", + "1010238": "1010238 Inspekt.Shtet. Punes Durres (0707)", + "1010277": "1010277 Agjencia e Trajtimit t\u00eb Koncesioneve (ATRAKO) (3535)", + "1010278": "1010278 Qendra Komb\u00ebtare e Biznesit (QKB) (3535)", + "1010279": "1010279 Drejtoria e P\u00ebrgjithshme e Akreditimit (DPA) (3535)", + "1010281": "1010281 Drejtoria e P\u00ebrgjithshme e Standardeve (DPS) (3535)", + "1010282": "1010282 Drejtoria e P\u00ebrgjithshme e Metrologjis\u00eb (DPM) (3535)", + "1012098": "1012098 Muzeu Komb\u00ebtar Gjethi (3535)", + "1013122": "1013122 Instituti i Integrimit te Perndjekurve Politike(3535)", + "1013137": "1013137 Sht\u00ebp. Foshnj\u00ebs Tiran\u00eb (3535)", + "1013138": "1013138 Sht\u00ebp.Moshuarve Tiran\u00eb (3535)", + "1013140": "1013140 Qendra pritese e Viktimave Linze (3535)", + "1013144": "1013144 Shtepia e te Moshuarve Shkoder (3333)", + "1014108": "1014108 ALUIZNI - Tirana Veri (ish - Tirana 1) (3535)", + "1014109": "1014109 ALUIZNI - Tirana 2 (3535)", + "1014110": "1014110 ALUIZNI - Tirana Rurale (Ish Tirana 3) (3535)", + "1014111": "1014111 ALUIZNI - Tirana 4 (3535)", + "1014112": "1014112 ALUIZNI - Tirana 5 (3535)", + "1014113": "1014113 ALUIZNI - Drejtoria Durres (0707)", + "1014114": "1014114 ALUIZNI - Drejtoria Elbasan (0808)", + "1014115": "1014115 ALUIZNI - Drejtoria Korce (1515)", + "1014116": "1014116 ALUIZNI - Drejtoria Shkoder (3333)", + "1014117": "1014117 ALUIZNI - Drejtoria Lezhe (2020)", + "1014118": "1014118 ALUIZNI - Drejtoria Vlore (3737)", + "1014119": "1014119 ALUIZNI - Drejtoria Fier (0909)", + "1014120": "1014120 ALUIZNI - Drejtoria Kukes (1818)", + "1014121": "1014121 ALUIZNI - Drejtoria Gjirokaster (1111)", + "1014122": "1014122 ALUIZNI - Drejtoria Berat (0202)", + "1014124": "1014124 ALUIZNI - Drejtoria Lushnje (0922)", + "1014125": "1014125 ALUIZNI - Drejtoria Sarande (3731)", + "1014126": "1014126 ALUIZNI - Drejtoria Tirana Jug (3535)", + "1014127": "1014127 ALUIZNI - Drejtoria Kavaje (3513)", + "1014128": "1014128 ALUIZNI - Drejtoria Kruje (0716)", + "1080114": "1080114 Agjent jo-tatimor Zyra Permbarimore Private Kavaje (3513)", + "1093025": "1093025 ALBPETROL SHA (3535)", + "2010001": "2010001 Qarku Elbasan-Gramsh (0810)", + "2049017": "2049017 Drejtoria Arsimore (0909)", + "2140003": "2140003 Qendra Polivalente Poli\u00e7an (0232)", + "1003023": "1003023 Autoriteti Komb\u00ebtar p\u00ebr \u00c7ertifikimin Elektronik dhe Sigurin\u00eb Kibernetike (3535)", + "1006155": "1006155 Agjencia Kombetare Berthamore (AKOB) (3535)", + "1006159": "1006159 Qendra e Grumbullimit dhe Trajtimit te Kimikateve te Rrezikshme (QGTK) (0808)", + "1006163": "1006163 Sekretariati i nismes per Transparence ne Industrine Nxjerrese (EITI) (3535)", + "1006165": "1006165 Albbaker (3535)", + "1006166": "1006166 Albkrom (3535)", + "1006168": "1006168 Uzina e Plehrave Azotike (0909)", + "1006174": "1006174 Ndermarrja e prodhim Celiqeve Elbasan (0808)", + "1006935": "1006935 Njesia e Menaxhimit te Projektit (NJMP) (3535)", + "1010180": "1010180 Zyra Punesimit Berat (0202)", + "1010181": "1010181 Zyra Punesimit Ku\u00e7ove (0217)", + "1010182": "1010182 Zyra Punesimit Skrapar (0232)", + "1010183": "1010183 Zyra Punesimit Diber (0606)", + "1010184": "1010184 Zyra Punesimit Bulqize (0603)", + "1010185": "1010185 Zyra Punesimit Mat (0625)", + "1010187": "1010187 Zyra Punesimit Kruje (0716)", + "1010189": "1010189 Zyra Punesimit Gramsh (0810)", + "1010190": "1010190 Zyra Punesimit Librazhd (0821)", + "1010191": "1010191 Zyra Punesimit Peqin (0827)", + "1010193": "1010193 Zyra Punesimit Lushnje (0922)", + "1010194": "1010194 Zyra Punesimit Mallakaster (0924", + "1010196": "1010196 Zyra Punesimit Permet (1128)", + "1010197": "1010197 Zyra Punesimit Tepelene (1134)", + "1010199": "1010199 Zyra Punesimit Devoll (1505)", + "1010200": "1010200 Zyra Punesimit Kolonje (1514)", + "1010202": "1010202 Zyra Punesimit Kukes (1818)", + "1010203": "1010203 Zyra Punesimit Has (1812)", + "1010204": "1010204 Zyra Punesimit Tropoje (1836)", + "1010206": "1010206 Zyra Punesimit La\u00e7 (2019)", + "1010207": "1010207 Zyra Punesimit Mirdite (2026)", + "1010208": "1010208 Zyra Punesimit Shkoder (3333)", + "1010209": "1010209 Zyra Punesimit M.Madhe (3323)", + "1010210": "1010210 Zyra Punesimit Puke (3330)", + "1010211": "1010211 Zyra Punesimit Vlore (3737)", + "1010212": "1010212 Zyra Punesimit Delvine (3704)", + "1010213": "1010213 Zyra Punesimit Sarande (3731)", + "1010225": "1010225 Q.Form. Profes. Levizshme (3535)", + "1010226": "1010226 Instituti i Sigurimeve Shoqerore (3535)", + "1010227": "1010227 Admin Qendrore e ISHP (3535)", + "1010228": "1010228 Inspekt.Shtet. Punes Tirane (3535)", + "1010229": "1010229 Inspekt.Shtet. Punes Berat (0202)", + "1010230": "1010230 Inspekt.Shtet. Punes Diber (0606)", + "1010231": "1010231 Inspekt.Shtet. Punes Gjirokaster (1111)", + "1010232": "1010232 Inspekt.Shtet. Punes Lezhe (2020)", + "1010233": "1010233 Inspekt.Shtet. Punes Kukes (1818)", + "1010234": "1010234 Inspekt.Shtet. Punes Vlore (3737)", + "1010235": "1010235 Insp.Shtet. Punes Elbasan (0808)", + "1010236": "1010236 Inspekt.Shtet. Punes Fier (0909)", + "1010237": "1010237 Inspekt.Shtet. Punes Kor\u00e7e (1515)", + "1010239": "1010239 Insp.Shtet. Punes Shkoder (3333)", + "1010240": "1010240 Agjens.Komb.Arsim.Prof.Kualifikim (3535)", + "1010241": "1010241 Shkolla Kristo Isak Berat (0202)", + "1010242": "1010242 Shk. Pr Stiliano Bandilli Berat (0202)", + "1010243": "1010243 Shkolla Nazmi Rushiti Diber (0606)", + "1010244": "1010244 Shkolla Beqir \u00c7ela Durres (0707)", + "1010245": "1010245 Shkolla Hysen \u00c7ela Durres (0707)", + "1010246": "1010246 Shk. Pr Ali Myftiu Elbasan (0808)", + "1010247": "1010247 Shk. Prof. Sali Ceka Elbasan (0808)", + "1010248": "1010248 Shk. Prof. Mihal Shahini Elbasan (0808)", + "1010249": "1010249 Shk.Prof. Petro Sota Fier (0909)", + "1010250": "1010250 Shk.Prof. Rakip Kryeziu Fier (0909)", + "1010251": "1010251 Shk.Profesion. Mekanike Lushnje (0922)", + "1010252": "1010252 Shk. Prof. Thoma Papano Gjirokaster (1111)", + "1010253": "1010253 Shk. Prof. Fan Noli Kor\u00e7e (1515)", + "1010254": "1010254 Shk. Prof. Isuf Gjata Kor\u00e7e (1515)", + "1010255": "1010255 Shkolla Profes. Ndertimi Kor\u00e7e (1515)", + "1010256": "1010256 Shkolla Profesion Demir Progri Kor\u00e7e (1515)", + "1010257": "1010257 Shkolla Profes Irakli Terova Kor\u00e7e (1515)", + "1010258": "1010258 Shk Pr Enver Qiraxhi Pogradec (1519)", + "1010259": "1010259 Shkolla Profes Hafzi Nela Kukes (1818)", + "1010260": "1010260 Shkolla Profes Kolin Gjoka Lezhe (2020)", + "1010261": "1010261 Shkolla Profes. Industriale Rubik (2026)", + "1010262": "1010262 Shk Prof. Arben Broci Shkoder (3333)", + "1010263": "1010263 Shk Prof. pyjore Kol Margjini Shkoder (3333)", + "1010264": "1010264 Shk Profesion. Hamdi Bushati Shkoder (3333)", + "1010265": "1010265 Shk Pr. Ndre Mjeda Shkoder (3333)", + "1010266": "1010266 Shkolla Hoteleri Turizem, Tirane (3535)", + "1010267": "1010267 Shkolla Prof. Tekniko Ekonomike, Tirane (3535)", + "1010268": "1010268 Shkolla Prof. Karl Gega , Tirane (3535)", + "1010269": "1010269 Shk. Elektrike. Gjergj Canco , Tirane (3535)", + "1010270": "1010270 Shkolla Profesionale Kamez (3535)", + "1010271": "1010271 Shk. Profes. 26 Marsi Kavaje (3513)", + "1010272": "1010272 Shk. Profes. Agrobiznes Kavaje (3513)", + "1010273": "1010273 Shkoll. Prof. Pavarsia Vlore (3737)", + "1010274": "1010274 Shkoll. Prof. Tregtare Vlore (3737)", + "1010275": "1010275 Shkoll. Prof Antoni Athanasi Sarande (3731)", + "1010276": "1010276 Agjencia Shqiptare e Zhvillimit t\u00eb Investimeve (AIDA) (3535)", + "1010280": "1010280 Drejtoria e P\u00ebrgjithshme e Pron\u00ebsis\u00eb Industriale(DPPI) (3535)", + "1010283": "1010283 Inspektoriati Shteteror i Mbikqyrjes s\u00eb Tregut (ISHMT) (3535)", + "1010284": "1010284 Enti Komb\u00ebtar i Banesave (3535)", + "1010285": "1010285 Njesia e Zbatimit te Projektit Banesa me Qellim Social (0707)", + "1010902": "1010902 PMU Mbeshtetje per SME", + "1011238": "1011238 Federata Shqiptare e Motociklizmit (3535)", + "1011239": "1011239 Federata Shqiptare e Skive (3535)", + "1011240": "1011240 Federata Shqiptare e Sportit Shkollor (3535)", + "1011241": "1011241 Federata Shqiptare e Snookerit (3535)", + "1011242": "1011242 Federata Shqiptare e Handbollit (3535)", + "1011243": "1011243 Sherbimi Kombetar i Rinise (3535)", + "1013121": "1013121 Agjensia Shteterore per Mbrojtjen e te Drejtave te Femijeve (3535)", + "1013123": "1013123 Drejtori Rajonale Kujd.Social Tiran\u00eb (3535)", + "1013124": "1013124 Drejtori Rajonale e Kujd. Social Berat (0202)", + "1013125": "1013125 Drejtori Rajonale e Kujd.Social Dib\u00ebr (0606)", + "1013126": "1013126 Drejtori Rajonale e Kujd.Social Durr\u00ebs (0707)", + "1013127": "1013127 Drejtori Rajonale Kujd.Social Elbasan (0808)", + "1013128": "1013128 Drejtori Rajonale Kujd.Social Fier (0909)", + "1013129": "1013129 Drejtori.Rajonale.Kujd.Soc. Gjirokast\u00ebr (1111)", + "1013130": "1013130 Drejtori Rajonale Kujd.Social Kor\u00e7\u00eb (1515)", + "1013131": "1013131 Drejtori Rajonale Kujd.Social Kuk\u00ebs(1818)", + "1013132": "1013132 Drejtori Rajonale Kujd.Social Lezh\u00eb (2020)", + "1013133": "1013133 Drejtori Rajonale Kujd.Social Shkod\u00ebr (3333)", + "1013134": "1013134 Drejtori Rajonale Kujd.Social Vlor\u00eb (3737)", + "1013135": "1013135 Sht\u00ebp.F\u00ebm.Shkoll. Tiran\u00eb (3535)", + "1013136": "1013136 Qend. Zhvillimit Durr\u00ebs (0707)", + "1013139": "1013139 Sht\u00ebp.F\u00ebm.Parashk. Shkod\u00ebr (3333)", + "1013141": "1013141 Administrata Qendrore SHSSH (3535)", + "1013142": "1013142 Qendra Kombetare e Trajtimit te Viktimave te Dhunes ne Familje (3535)", + "1013143": "1013143 Qendra Kombetare e Emergjences (3535)", + "1013145": "1013145 Qendra Komunitare e Moshes se Trete Palase (3737)", + "1014107": "1014107 ALUIZNI - Drejtoria e Pergjithshme (3535)", + "1014123": "1014123 ALUIZNI - Drejtoria Diber (0606)", + "1016131": "1016131 Agjencia e Zbatimit t\u00eb Reform\u00ebs Territoriale (3535)", + "1025159": "1025159 Qendra Komunitare e Moshes se Trete Palase (3737)", + "1026088": "1026088 Agjensia Kombetare e Turizmit (3535)", + "1026090": "1026090 Agjensia Kombetare e Bregdetit (3535)", + "1040099": "1040099 Partia Aleanca Popullore per Drejtesi", + "1040100": "1040100 Lista e Barabarte (3535)", + "1063002": "1063002 Komisioni i pavarur i Kualifikimit (3535)", + "1063003": "1063003 Kolegji i Posacem i Apelimit (3535)", + "1063004": "1063004 Komisioneret Publik (3535)", + "1087026": "1087026 Agjencia e Auditimit t\u00eb Programeve t\u00eb Asistenc\u00ebs (AAPAABE) (3535)", + "1087027": "1087027 Autoriteti Komb\u00ebtar p\u00ebr \u00c7ertifikimin Elektronik dhe Sigurin\u00eb Kibernetike (3535)", + "1087028": "1087028 Agjencia e Zhvillimit te Territorit", + "1087029": "1087029 Komiteti Shteteror i Kulteve", + "1093913": "1093913 Power Recovery Project-Komponenti i 3-te", + "1093914": "1093914 Projekti I Rimekembjes se Energjise Huaja Komponenti 1", + "1095001": "1095001 Autoriteti per informim mbi dokumentet e ish Sigurimit te Shtetit (3535)", + "2101817": "2101817 Agjencia e Administrimit t\u00eb Tregjeve (3535)", + "2112008": "2112008 Nd\u00ebrrmarrja e Gjelb\u00ebrimit Patos (0909)", + "2139011": "2139011 Nd\u00ebrmarrja e Sh\u00ebrbimit Pyjor Skrapar (0232)", + "2157003": "2157003 Ujesjelles Kanalizime Vau i Dejes (3333)", + "2168002": "2168002 Ujesjelles Kanalizime Maliq (1515)", + "2499002": "2499002 Uj\u00ebsjell\u00ebs Kanalizime Pustec(1515)", + "1004198": "1004198 Shtypshkronja e Letrave me Vlere (3535)" + }, + "admin5": { + "0000": "0000 Unspecified", + "0202": "0202 Berat - Berat", + "0217": "0217 Berat - Ku\u00e7ove", + "0232": "0232 Berat - Skrapar", + "0603": "0603 Diber - Bulqize", + "0606": "0606 Diber - Diber", + "0625": "0625 Diber - Mat", + "0707": "0707 Durres - Durres", + "0716": "0716 Durres - Kruje", + "0808": "0808 Elbasan - Elbasan", + "0810": "0810 Elbasan - Gramsh", + "0821": "0821 Elbasan - Librazhd", + "0827": "0827 Elbasan - Peqin", + "0909": "0909 Fier - Fier", + "0922": "0922 Fier - Lushnje", + "0924": "0924 Fier - Mallakaster", + "1111": "1111 Gjirokaster - Gjirokaster", + "1128": "1128 Gjirokaster - Permet", + "1134": "1134 Gjirokaster - Tepelene", + "1505": "1505 Korce - Devoll", + "1514": "1514 Korce - Kolonje", + "1515": "1515 Korce - Kor\u00e7e", + "1529": "1529 Korce - Pogradec", + "1812": "1812 Kukes - Has", + "1818": "1818 Kukes - Kukes", + "1836": "1836 Kukes - Tropoje", + "2019": "2019 Lezhe - La\u00e7", + "2020": "2020 Lezhe - Lezhe", + "2026": "2026 Lezhe - Mirdite", + "3323": "3323 Shkoder - M.Madhe", + "3330": "3330 Shkoder - Puke", + "3333": "3333 Shkoder - Shkoder", + "3513": "3513 Tirane - Kavaje", + "3535": "3535 Tirane - Tirane", + "3704": "3704 Vlore - Delvine", + "3731": "3731 Vlore - Sarande", + "3737": "3737 Vlore - Vlore" + }, + "econ1": { + "2": "2 Fixed assets", + "6": "6 Expenses by nature", + "7": "7 Revenues", + "1": "1 Own funds", + "4": "4 Third-party accounts" + }, + "econ2": { + "20": "20 Intangble assets", + "21": "21 Tangible assets", + "23": "23 Expenditure for acquisition of fixed asssets", + "24": "24 Damaged tangible assets", + "25": "25 Lending and sublending", + "26": "26 Participation in equity", + "28": "28 Appointments", + "60": "60 Current expenditures", + "63": "63 Changes in inventories", + "64": "64 Expenses in kind", + "65": "65 Interest on domestic loans", + "66": "66 Interest on foreign loans", + "67": "67 Extraordinary expenses", + "10": "10 Own funds", + "70": "70 Taxes and mandatory contributions", + "71": "71 Non-tax revenues", + "72": "72 Grants", + "76": "76 Financial revenue", + "75": "75 Social and health insurance contributions", + "77": "77 Extraordinary revenue", + "78": "78 Return to investments and reversal of anticipated amounts", + "43": "43 State, social insurance and other social organizations", + "46": "46 Miscellaneous debtors and creditors" + }, + "econ3": { + "202": "202 Research and studies", + "203": "203 Patents, licences nad trademarks", + "209": "209 Assets amortization", + "210": "210 Land and buildings", + "211": "211 Forests, pastures ad plantations", + "212": "212 Construction", + "213": "213 Street and water network works", + "214": "214 Equipment, instruments and tools", + "215": "215 Transport vehicules", + "216": "216 State reserve", + "217": "217 Work animals production", + "218": "218 Inventory", + "219": "219 Amortization", + "230": "230 Intangible assets expenses", + "231": "231 Tangible fixed assets expenses", + "232": "232 Capital transfers", + "255": "255 Expenditures on loans under domestic lending", + "600": "600 Wages, salaries, bonuses and other personnel expenses", + "601": "601 Social contributions", + "602": "602 Goods and services", + "603": "603 Subsidies", + "604": "604 Current domestic transfers", + "605": "605 Current transfers abroad", + "606": "606 Transfers to families and individuals", + "608": "608 Special fund", + "609": "609 Reserve Fund", + "630": "630 Change in inventories", + "640": "640 In-kind expenses", + "650": "650 Interest on domestic borrowing: Treasury and direct loans", + "651": "651 Interest on other domestic borrowing", + "652": "652 Interest on government securities", + "656": "656 Foreign Exchange expenses", + "660": "660 Interest on foreign debt", + "661": "661 Interest on loans from international institutions", + "662": "662 Interest on other external borrowings", + "678": "678 Other extraordinary expenses", + "106": "106 Foreign grants", + "434": "434 Other operations with the State", + "435": "435 Social insurance", + "437": "437 Other social organizations", + "466": "466 Credits for assets on deposit", + "700": "700 Tax on personal income, profit and capital gains", + "702": "702 Property tax", + "703": "703 Taxation on goods and services within the country", + "704": "704 Tax on international trade and transactions", + "705": "705 Tax on durres-kukes road", + "708": "708 Other national tax", + "709": "709 Late payment fees", + "710": "710 Revenues from enterprises and ownership", + "711": "711 Revenue from administrative services and secondary revenue", + "719": "719 Other non-tax revenues", + "720": "720 Total current domestic grants", + "721": "721 Total current foreign grants", + "750": "750 Employees contributions", + "751": "751 Budgetary sector employers", + "752": "752 Self-employed contributions", + "753": "753 Farmers contributions", + "754": "754 Voluntary insurance", + "755": "755 Budget contributions to social insurance", + "756": "756 Budget contributions to health insurance", + "760": "760 Interest revenue from domestic lending", + "761": "761 Revenues from interests of foreign lending transactions", + "765": "765 Interest revenues from deposits", + "766": "766 Revenues from foreign exchange", + "767": "767 Revenues from revaluation of assets", + "773": "773 Revenues from discontinued activities and other policy changes", + "777": "777 Gains from allowed errors in previous years", + "778": "778 Corrections from previos years", + "779": "779 Other extraordinary revenues" + }, + "econ4": { + "2301": "2301 Expenses to increase Fixed Assets \u2013 emission premiums or loan reimbursement", + "2302": "2302 Expenses to increase Fixed Assets - studies or research", + "2303": "2303 Expenses to increase Fixed Assets - concessions, patents, licenses, trademarks, other rights", + "2309": "2309 Migration - Expenses to increase Intangible Fixed Assets", + "2310": "2310 Expenses to increase Tangible Fixed Assets - land, plots and terrains", + "2311": "2311 Expenses for forests, pastures, plantations", + "2312": "2312 Expenses to increase Tangible Fixed Assets - buildings and constructions", + "2313": "2313 Expenses to increase Tangible Fixed Assets - roads, networks and water works", + "2314": "2314 Expenses to increase Tangible Fixed Assets - technical installations, equipment, instruments and work tools", + "2315": "2315 Expenses to increase Tangible Fixed Assets \u2013 transport vehicles", + "2316": "2316 Expenses to increase Tangible Fixed Assets - state reserves", + "2317": "2317 Expenses to increase Tangible Fixed Assets - working and production animals", + "2318": "2318 Expenses to increase Tangible Fixed Assets - economic inventory", + "2319": "2319 Migration - Expenses to increase Tangible Fixed Assets", + "2320": "2320 Capital transfers to other levels of central government", + "2321": "2321 Capital transfers to extra-budgetary funds", + "2322": "2322 Capital transfers to non-profit institutions", + "2323": "2323 Capital transfers to state-owned enterprises", + "2324": "2324 Capital transfers to financial institutions", + "2325": "2325 Capital transfers to private enterprises", + "2326": "2326 Capital transfers to individuals", + "2327": "2327 Capital transfers abroad", + "2329": "2329 Other capital transfers", + "2500": "2500 Revenue from the principal of direct long-term domestic lending transactions", + "2501": "2501 Revenue from the principal of short-term lending transaction agreements with state guarantees", + "2502": "2502 Revenue from the sub-lending principal of foreign loans", + "2510": "2510 Revenue, principal from transactions, foreign loans", + "2511": "2511 Revenue, principal from transactions, beneficiaries of foreign loans", + "2550": "2550 Expenses, direct long-term domestic lending", + "2551": "2551 Expenses, short-term lending for agreements with state guarantees", + "2552": "2552 Expenses, sub-lending from foreign loans", + "2560": "2560 Expenses, principal from transactions, foreign loans", + "2561": "2561 Expenses, principal from transactions, beneficiaries of foreign loans", + "6000": "6000 Wages and salaries", + "6001": "6001 Permanent staff salaries", + "6002": "6002 Temporary staff salaries", + "6003": "6003 Bonuses", + "6009": "6009 Other personnel expenses", + "6010": "6010 Social insurance contributions", + "6011": "6011 Health insurance contributions", + "6019": "6019 Migration - social and health insurance contributions", + "6020": "6020 Office and general supplies", + "6021": "6021 Special materials and services", + "6022": "6022 Services from third parties", + "6023": "6023 Transportation expenses", + "6024": "6024 Travel expenses", + "6025": "6025 Expenses for ordinary maintenance", + "6026": "6026 Rental expenses", + "6027": "6027 Expenses for legal liabilities and fees", + "6028": "6028 Borrowing related expenses", + "6029": "6029 Other operating expenses", + "6030": "6030 Subsidies for price differencial", + "6031": "6031 Subsidy to promote employment", + "6032": "6032 Subsidies to cover losses (revenue expenses)", + "6033": "6033 Subsidy for individual entrepreneurship and reimbursement of fiscal equipment", + "6039": "6039 Other subsidies", + "6040": "6040 Current transfers to other levels of government", + "6041": "6041 Current transfers to various government institutions", + "6042": "6042 Current transfers to Social and Health Insurance", + "6044": "6044 Transfers to non-profit organizations", + "6049": "6049 Migration - Current domestic transfers", + "6051": "6051 Current transfers to international organizations", + "6052": "6052 Current transfers to foreign governments", + "6053": "6053 Current transfers to foreign non-profit institutions", + "6059": "6059 Other current transfers abroad", + "6060": "6060 Family budgets and transfers to individuals paid by ISI and HII", + "6061": "6061 Transfers for households budgets and individuals paid by local government and institutions", + "6062": "6062 Transfers for other compensations", + "6063": "6063 Transfers for public interest expropriation of owners of immovable and movable properties", + "6069": "6069 Migration - transfers for households budgets and individuals", + "6080": "6080 Special Fund", + "6090": "6090 National reserve fund and contingencies", + "6091": "6091 Local government Reserve fund", + "6780": "6780 Other extraordinary expenses", + "6500": "6500 Interest on Treasury Bills with maturity of 3 monrhs", + "6501": "6501 Interest on Treasury Bills with maturity of 6 months", + "6502": "6502 Interest on Treasury Bills with maturity of 1 year", + "6503": "6503 Interest on direct loans from the Bank of Albania", + "6511": "6511 Interest on other long-term internal borrowing", + "6520": "6520 Interest on bonds issued on financial markets", + "6521": "6521 Interest on bonds issues in other third", + "6600": "6600 Interest on foreign loans", + "6601": "6601 Interest on long-term foreign loans", + "6610": "6610 Interest on short-term foreign loans", + "6611": "6611 Interest on borrowing from international organizations", + "6621": "6621 Interest on other external borrowing", + "1060": "1060 Grants from foreign governments", + "1061": "1061 Grants from international institutions", + "4371": "4371 Other social organizations, the following year", + "7000": "7000 Personal income tax", + "7001": "7001 Profit tax", + "7002": "7002 Small business tax", + "7009": "7009 Other taxes on personal income, profit and capital gains", + "7020": "7020 Tax on immovable property", + "7021": "7021 Tax on sale of immovable property", + "7029": "7029 Other taxes", + "7030": "7030 VAT", + "7031": "7031 Excise tax", + "7032": "7032 Taxes on specific services", + "7033": "7033 Taxes on use of goods or permission to perform activities", + "7035": "7035 Local units taxes on use of goods or permission to perform activities", + "7040": "7040 Customs duties on imported goods", + "7041": "7041 Customs duties on exported goods", + "7042": "7042 Customs service and parcels fee", + "7049": "7049 Other taxes on international trade and transactions", + "7050": "7050 Tax on durres-kukes road", + "7081": "7081 Other national tax", + "7090": "7090 Late payment fees of the taxation system", + "7094": "7094 Late payment fees of the customs system", + "7100": "7100 Revenue from non-financial public enterprises", + "7101": "7101 Revenue from financial public enterprises", + "7109": "7109 Other revenue from enterprises and ownership", + "7110": "7110 Administrative and regulatory fees", + "7111": "7111 Secondary revenue and services fees", + "7112": "7112 Court, legal (notary) and property registration office fees.", + "7113": "7113 Revenue from sale of goods and services", + "7114": "7114 Revenue from tickets", + "7115": "7115 Fines, late payment fees, seizures and redress", + "7190": "7190 Other non-tax revenues", + "7200": "7200 From the same governance level", + "7201": "7201 From other government levels", + "7202": "7202 From the state budget to the social insurance budget for special payment", + "7203": "7203 From the state budget to the social insurance budget to cover the deficit", + "7207": "7207 Sponsorships from third parties", + "7209": "7209 Other domestic grants", + "7210": "7210 Grants from foreign governments", + "7211": "7211 Grants from international organizations", + "7300": "7300 Change in the stock of inventories", + "7500": "7500 Employees of the budgetary sector", + "7501": "7501 Employees of non-budgetary sector", + "7502": "7502 Employees of the private sector", + "7510": "7510 Budgetary sector employers", + "7511": "7511 Employers of non-budgetary sector", + "7512": "7512 Private sector employers", + "7520": "7520 Self-employed contributions", + "7530": "7530 Farmers contributions", + "7540": "7540 Voluntary insurance", + "7550": "7550 Budget contributions to social insurance", + "7560": "7560 Budget contributions to health insurance", + "7600": "7600 Interest from long-term direct domestic lending", + "7601": "7601 The interests from short-term lending agreements with state guarantees", + "7602": "7602 Interests \u2013 sub(on)-lending of foreign loans", + "7610": "7610 Interests - foreign lending", + "7650": "7650 Interest revenues from deposits", + "7660": "7660 Revenues from foreign exchange", + "7670": "7670 Revenues from revaluation of assets", + "7730": "7730 Revenues from discontinued activities and other policy changes", + "7770": "7770 Gains from allowed errors in previous years", + "7780": "7780 Corrections from previos years", + "7790": "7790 Other extraordinary revenues", + "7116": "7116 Income from transfer of property and legalization of illegal buildings", + "7117": "7117 Transfer of unused balances from special accounts in BOA", + "1068": "1068 Grants in kind from foreign governments and international institutions", + "1063": "1063 Grants from other international institutions (Moza_2)", + "1062": "1062 Grants from other international institutions (Moza_1)", + "4665": "4665 Other deposits", + "4342": "4342 Other operations with the government (as a debtor)", + "4351": "4351 Social insurance for the current year", + "7603": "7603 Interest on issued bonds" + }, + "econ5": { + "6511310": "6511310 Long-term domestic borrowing interest", + "6521100": "6521100 Interest other third bonds with", + "6044008": "6044008 Transfer to the Institute e Measuring Tools", + "6062300": "6062300 Transfers for economic assistance to individuals", + "6062301": "6062301 Transfers for economic assistance to individuals", + "7009000": "7009000", + "7035042": "7035042 Local fee for photographing museum artifacts", + "7110999": "7110999 Administrative and other regulatory fees to be identified", + "2324100": "2324100 Property compensation", + "2301100": "2301100 Expenses to increase Fixed Assets \u2013 emission premiums or loan reimbursement", + "2302100": "2302100 Expenses to increase Fixed Assets - studies or research", + "2303100": "2303100 Expenses to increase Fixed Assets - concessions, patents, licenses, trademarks, other rights", + "2309991": "2309991 Migration - Expenses to increase Intangible Fixed Assets", + "2310100": "2310100 Expenses to increase Tangible Fixed Assets - plots", + "2310200": "2310200 Expenses to increase Tangible Fixed Assets \u2013 agricultural land", + "2310300": "2310300 Expenses to increase Tangible Fixed Assets \u2013 terrains of the soil layers", + "2310400": "2310400 Expenses to increase Tangible Fixed Assets \u2013 land systematization and adjustments", + "2310500": "2310500 Expenses to increase other Tangible Fixed Assets", + "2311100": "2311100 Expenses to Increase Tangible Fixed Assets - forests", + "2311200": "2311200 Expenses to Increase Tangible Fixed Assets - pastures", + "2311300": "2311300 Expenses to Increase Tangible Fixed Assets - plantations", + "2312101": "2312101 Expenses to Increase Tangible Fixed Assets - administrative building", + "2312102": "2312102 Expenses to Increase Tangible Fixed Assets - residential buildings", + "2312103": "2312103 Expenses to Increase Tangible Fixed Assets - school buildings", + "2312104": "2312104 Expenses to Increase Tangible Fixed Assets - socio-cultural buildings", + "2312105": "2312105 Expenses to Increase Tangible Fixed Assets - health buildings", + "2312106": "2312106 Expenses to Increase Tangible Fixed Assets - buildings of civil defence", + "2312107": "2312107 Expenses to Increase Tangible Fixed Assets - pupils and students dormitories", + "2312108": "2312108 Expenses to Increase Tangible Fixed Assets - construction of ports", + "2312109": "2312109 Expenses to Increase Tangible Fixed Assets - construction of airports", + "2312110": "2312110 Expenses to Increase Tangible Fixed Assets - objects with historical value", + "2312111": "2312111 Expenses to Increase Tangible Fixed Assets - art objects", + "2312112": "2312112 Expenses to Increase Tangible Fixed Assets - library stock", + "2312113": "2312113 Expenses to Increase Tangible Fixed Assets - gardens", + "2312114": "2312114 Expenses to Increase Tangible Fixed Assets - cemeteries", + "2312115": "2312115 Expenses to Increase Tangible Fixed Assets - protective dikes and likes", + "2312116": "2312116 Expenses to Increase Tangible Fixed Assets - construction of surrounding walls", + "2312117": "2312117 Expenses to Increase Tangible Fixed Assets \u2013 sports grounds", + "2312118": "2312118 Expenses to Increase Tangible Fixed Assets - other construction", + "2313100": "2313100 Expenses to Increase Tangible Fixed Assets - road constructions", + "2313200": "2313200 Expenses to Increase Tangible Fixed Assets - bridges constructions", + "2313300": "2313300 Expenses to Increase Tangible Fixed Assets - constructions of networks", + "2313400": "2313400 Expenses to Increase Tangible Fixed Assets - water works constructions", + "2313500": "2313500 Expenses to Increase Tangible Fixed Assets - computer network installation", + "2313600": "2313600 Expenses to Increase Tangible Fixed Assets - other for construction of roads, bridges, networks", + "2314110": "2314110 Expenses to Increase Tangible Fixed Assets - telecommunications equipment and installation costs", + "2314120": "2314120 Expenses to Increase Tangible Fixed Assets \u2013 canteen furnishings and accessories", + "2314130": "2314130 Expenses to Increase Tangible Fixed Assets - devices that produce electrical energy", + "2314140": "2314140 Expenses to Increase Tangible Fixed Assets - laboratory equipment and instruments", + "2314150": "2314150 Expenses to Increase Tangible Fixed Assets - medical and hospital equipment", + "2314160": "2314160 Expenses to Increase Tangible Fixed Assets - installation of computer systems", + "2314170": "2314170 Expenses to Increase Tangible Fixed Assets \u2013 air conditioners equipment and installation", + "2314180": "2314180 Expenses to Increase Tangible Fixed Assets - printing and graphic machinery", + "2314190": "2314190 Expenses to Increase Tangible Fixed Assets - equipment for traffic control", + "2314200": "2314200 Expenses to Increase Tangible Fixed Assets - port equipment and installations (for ports)", + "2314210": "2314210 Expenses to Increase Tangible Fixed Assets - agricultural equipment", + "2314220": "2314220 Expenses to Increase Tangible Fixed Assets - machinery and equipment for mining", + "2314230": "2314230 Expenses to Increase Tangible Fixed Assets - equipment and machinery for gardens", + "2314240": "2314240 Expenses to Increase Tangible Fixed Assets - equipment and machinery for constructions", + "2314250": "2314250 Expenses to Increase Tangible Fixed Assets - equipment for protection against fire", + "2314260": "2314260 Expenses to Increase Tangible Fixed Assets - cleaning equipment for roads", + "2314270": "2314270 Expenses to Increase Tangible Fixed Assets - equipment for police", + "2314280": "2314280 Expenses to Increase Tangible Fixed Assets - equipment for security system", + "2314290": "2314290 Expenses to Increase Tangible Fixed Assets - audio-visual equipment", + "2314300": "2314300 Expenses to Increase Tangible Fixed Assets - residential equipment", + "2314310": "2314310 Expenses to Increase Tangible Fixed Assets - lifts and cranes", + "2314320": "2314320 Expenses to Increase Tangible Fixed Assets - other technical tools and equipment", + "2315110": "2315110 Expenses to Increase Tangible Fixed Assets - motor bikes", + "2315120": "2315120 Expenses to Increase Tangible Fixed Assets - vehicles", + "2315130": "2315130 Expenses to Increase Tangible Fixed Assets - buses", + "2315140": "2315140 Expenses to Increase Tangible Fixed Assets - trucks and heavy transport vehicles", + "2315150": "2315150 Expenses to Increase Tangible Fixed Assets - ambulances", + "2315160": "2315160 Expenses to Increase Tangible Fixed Assets - fire fighting equipment", + "2315170": "2315170 Expenses to Increase Tangible Fixed Assets - police equipment", + "2315180": "2315180 Expenses to Increase Tangible Fixed Assets - special road transport", + "2315190": "2315190 Expenses to Increase Tangible Fixed Assets - purchase means shipping", + "2315200": "2315200 Expenses to Increase Tangible Fixed Assets - buying air vehicles", + "2315210": "2315210 Expenses to Increase Tangible Fixed Assets - Other vehicles", + "2316100": "2316100 Expenses to Increase Tangible Fixed Assets - sugar", + "2316300": "2316300 Expenses to Increase Tangible Fixed Assets - oil", + "2316900": "2316900 Expenses to Increase Tangible Fixed Assets - other reserves", + "2317100": "2317100 Expenses to Increase Tangible Fixed Assets - working animals", + "2317200": "2317200 Expenses to Increase Tangible Fixed Assets - production animals", + "2317300": "2317300 Expenses to Increase Tangible Fixed Assets - other animals", + "2318100": "2318100 Expenses to Increase Tangible Fixed Assets - office furniture", + "2318400": "2318400 Expenses to Increase Tangible Fixed Assets - photocopier", + "2318500": "2318500 Expenses to Increase Tangible Fixed Assets - fax machines", + "2318600": "2318600 Expenses to Increase Tangible Fixed Assets - computer equipment", + "2318700": "2318700 Expenses to Increase Tangible Fixed Assets - other office equipment", + "2319991": "2319991 Migration - Expenses to Increase Tangible Fixed Assets", + "2322100": "2322100 Capital transfers to non-profit institutions", + "2325100": "2325100 Capital transfers to private enterprises", + "2326100": "2326100 Capital Transfers to individuals", + "2550000": "2550000 (B) Expenses for domestic lending and sub-lending", + "2551100": "2551100 Expenses, for short-term lending agreements with state guarantees", + "6001001": "6001001 Basic salary", + "6001002": "6001002 Sick leave paid by the employer", + "6001003": "6001003 Seniority allowance (supplement)", + "6001004": "6001004 Allowance for difficult and hazardous jobs", + "6001005": "6001005 Job Position allowance", + "6001006": "6001006 Shift allowance", + "6001007": "6001007 Travel allowance (for working in long distance from the residence)", + "6001008": "6001008 Qualification allowance", + "6001009": "6001009 Military rank allowance", + "6001010": "6001010 Payment for released military under the reform", + "6001011": "6001011 Supplement for unemployed spouses of transferred military", + "6001012": "6001012 Salary allowance and immediate salary for high rank officials", + "6001013": "6001013 Overtime allowance", + "6001014": "6001014 Salary allowance for employees that are paid under specific acts", + "6001099": "6001099 Other salary allowances", + "6002100": "6002100 Contract salary for limited time", + "6002200": "6002200 Contract salary for seasonal work", + "6002900": "6002900 Other contract salaries", + "6003100": "6003100 Performance bonus", + "6003200": "6003200 Solidarity tax bonus", + "6003300": "6003300 The 13th salary for personnel", + "6003900": "6003900 Other personnel bonuses", + "6009100": "6009100 Other personnel expenses", + "6009991": "6009991 Migration - wages, bonuses and other personnel expenses", + "6010100": "6010100 Social insurance contributions", + "6011100": "6011100 Health insurance contributions", + "6020100": "6020100 Office supply", + "6020200": "6020200 Materials for cleaning, disinfecting, heating and lighting", + "6020300": "6020300 Materials for the operation of office equipment", + "6020400": "6020400 Materials for the operation of special equipment", + "6020500": "6020500 Purchase of documents", + "6020900": "6020900 Other office and general supplies and materials", + "6021001": "6021001 Uniforms and other special clothing", + "6021002": "6021002 Fertilizers, veterinary furniture, seeds, seedlings and other agricultural products", + "6021003": "6021003 Medicines and medical materials", + "6021004": "6021004 Food supplies and services for canteens", + "6021005": "6021005 Military equipment, materials and services", + "6021006": "6021006 Equipment for police use", + "6021007": "6021007 Professional books and publications", + "6021008": "6021008 Materials for the protection of soil, plants and animals from diseases", + "6021009": "6021009 Laboratory and public service materials and equipment", + "6021010": "6021010 Expenses for the production of specific documentation", + "6021099": "6021099 Other special materials and services", + "6022001": "6022001 Electricity", + "6022002": "6022002 Water", + "6022003": "6022003 Phone Services", + "6022004": "6022004 Post and courier service", + "6022005": "6022005 Heating service", + "6022006": "6022006 SII (ISSH) services provided to HIS (ISKSH)", + "6022007": "6022007 Banking Services", + "6022008": "6022008 Security and guarding services", + "6022009": "6022009 Cleaning and greenery services", + "6022010": "6022010 Printing and publishing services", + "6022011": "6022011 Cost of training and seminars", + "6022099": "6022099 Other Services", + "6023100": "6023100 Fuel and oil", + "6023200": "6023200 Spare parts, tires and batteries", + "6023300": "6023300 Expenses for insurance of transport vehicles", + "6023900": "6023900 Other transportation expenses", + "6024100": "6024100 Expenses for traveling within the country", + "6024200": "6024200 Expenses for traveling abroad", + "6025100": "6025100 Expenses for maintenance of lands and natural assets", + "6025200": "6025200 Expenses for maintenance of specific objects", + "6025300": "6025300 Expenses for maintenance of construction facilities", + "6025400": "6025400 Maintenance expenses for roads, water works, hydraulic, electricity, telephone networks, heating, etc.", + "6025500": "6025500 Expenses for the maintenance of appliances, technical equipment and working tools", + "6025600": "6025600 Expenses for the maintenance of transport vehicles", + "6025700": "6025700 Expenses for maintenance of state reserve", + "6025800": "6025800 Expenses for maintenance of office equipment", + "6026100": "6026100 Rent Expenses for premises", + "6026200": "6026200 Rent expenses for residential properties", + "6026300": "6026300 Rent expenses for appliances and technical equipment, machinery", + "6026400": "6026400 Rent expenses for transport vehicles", + "6026900": "6026900 Other rent expenses", + "6027100": "6027100 Compensation expenses for former politically persecuted people", + "6027200": "6027200 Compensation expenses for unjust imprisonment", + "6027300": "6027300 Compensation expenses for expropriation over past periods", + "6027400": "6027400 Expenses for execution of court decisions for dismissals", + "6027500": "6027500 Expenses for the execution of outstanding contractual obligations", + "6027900": "6027900 Expenses for other unpaid compensations", + "6028100": "6028100 Expenses for obligatory subscriptions", + "6028200": "6028200 Other borrowing related expenses", + "6029001": "6029001 Expenses for receptions", + "6029002": "6029002 Expenses for social activities for staff", + "6029003": "6029003 Court costs", + "6029004": "6029004 Expenses for insurance of buildings and other similar insurance cost", + "6029005": "6029005 Expenses for royalties", + "6029006": "6029006 Compensation costs for members of parliament and other elected officials", + "6029007": "6029007 Expenses for participation in conferences", + "6029008": "6029008 Expenses for taxes and fees paid by the institution", + "6029009": "6029009 Expenses for withdrawing the cash limit", + "6029099": "6029099 Expenses for other materials and operational services", + "6029100": "6029100 VAT Refund", + "6029991": "6029991 Migration - Other goods and services", + "6030001": "6030001 Subsidies for the textbooks prices", + "6030002": "6030002 Subsidies for the price of imported electricity", + "6030003": "6030003 Subsidies to cover the housing price (cost) differential", + "6030004": "6030004 Subsidies to cover the urban bus transport price differential", + "6030005": "6030005 Subsidies to cover rail transport price differential", + "6030006": "6030006 Subsidies to cover the drinking water price differential", + "6030099": "6030099 Subsidies to cover other and similar price differentials", + "6031100": "6031100 Subsidies to promote employment", + "6031200": "6031200 Subsidies to promote employment (Social Security and Health)", + "6031300": "6031300 Subsidy to promote employment (current expenditures)", + "6032001": "6032001 Subsidies to cover losses for irrigation water supply", + "6032002": "6032002 Subsidies to cover losses of enterprises providing student treatment services", + "6032099": "6032099 Other subsidies to cover losses according to the beneficiaries", + "6033100": "6033100 Subsidy for individual enterprises", + "6033200": "6033200 Refund to small business enterprises for the price of fiscal equipment", + "6039100": "6039100 Other subsidies", + "6039991": "6039991 Migration - Subsidies", + "6040001": "6040001 Current transfers to local government bodies", + "6040002": "6040002 Current transfers to the regional councils", + "6040005": "6040005 Current transfers between central government institutions", + "6040006": "6040006 Current transfers from local institutions (municipalities and communes) to national institutions", + "6040007": "6040007 Current transfers from regional councils to national institutions", + "6040009": "6040009 Other current transfers", + "6041100": "6041100 Current transfers to various government institutions", + "6042001": "6042001 Transfer compensation to retirees for the price differencials", + "6042002": "6042002 Transfer for special state pensions", + "6042003": "6042003 Transfer for supplementary compensation of formerly persecuted people", + "6042004": "6042004 Transfer for supplementary compensation of war veterans", + "6042005": "6042005 Transfer for supplementary compensation of occupationally disabled", + "6042008": "6042008 Transfer to cover the increase in insurance beneficiaries", + "6042009": "6042009 Transfers to cover the deficit of the social insurance fund", + "6042010": "6042010 Transfer for supplementary insurance of military", + "6042011": "6042011 Transfer for state supplementary pensions", + "6042012": "6042012 Transfer for early payments for miners", + "6042020": "6042020 Special transfers to HII (ISKSH)", + "6042030": "6042030 Transfers for soldiers", + "6042031": "6042031 Budget transfers for the unemployed", + "6042032": "6042032 Transfers for military in reform and early retirement pensions", + "6042033": "6042033 Transfers for providing former officials with transitional payment", + "6042034": "6042034 Transfer for the difference in farmers contributions", + "6044001": "6044001 Transfers to associations for orphans", + "6044002": "6044002 Transfers to associations for the blind", + "6044003": "6044003 Transfers to associations of war invalids", + "6044004": "6044004 Transfers to associations of work invalids", + "6044005": "6044005 Transfers to Albafilm", + "6044006": "6044006 Transfers to clubs and sports associations", + "6044007": "6044007 Transfer to Public Radio-Television", + "6044009": "6044009 Transfers to political parties", + "6044010": "6044010 Grants to the Securities Commission", + "6044099": "6044099 Other transfers to non-profit institutions", + "6049991": "6049991 Migration - Current domestic transfers", + "6051001": "6051001 Current transfers - United Nations", + "6051002": "6051002 Current transfers - World Bank", + "6051099": "6051099 Other international organizations", + "6052100": "6052100 Current transfers to foreign governments", + "6053100": "6053100 Current transfers to foreign non-profit organizations", + "6059100": "6059100 Other current transfers to foreign destinations", + "6059991": "6059991 Migration - current transfers to foreign destinations", + "6060000": "6060000 (B) transfers to households and individual budgets", + "6060001": "6060001 Compensation for temporary disability due to illness", + "6060002": "6060002 Compensation for temporary disability due to injury at work", + "6060003": "6060003 Compensation for maternity leave", + "6060004": "6060004 Grant for new-borns", + "6060005": "6060005 Old age pension", + "6060006": "6060006 Disabilities Pension", + "6060007": "6060007 Survivor pension", + "6060008": "6060008 Supplementary compensation to retirees for inflation", + "6060009": "6060009 Special state pensions", + "6060010": "6060010 Supplementary compensation for the former politically persecuted people", + "6060011": "6060011 Compensation for war veterans", + "6060012": "6060012 Supplementary compensation for occupationally disabled", + "6060013": "6060013 Bonus for ex-military", + "6060014": "6060014 Payment for martyrs", + "6060015": "6060015 Payment to pilots", + "6060016": "6060016 Payment for Military Industry", + "6060017": "6060017 Supplementary state insurance for former state officials", + "6060018": "6060018 Advance payments to miners", + "6060019": "6060019 Compensation for politically persecuted people", + "6060021": "6060021 Payment for medical and dental services", + "6060022": "6060022 Payment for pharmaceutical products", + "6060099": "6060099 Other transfers to individuals", + "6061001": "6061001 Grants to families for funeral expenses", + "6061002": "6061002 Unemployment compensation for insured people", + "6061003": "6061003 Economic assistance", + "6061004": "6061004 Disability payment", + "6061005": "6061005 Other special allowances", + "6061006": "6061006 Transfer to cover the bank interest rates", + "6061021": "6061021 Scholarships", + "6061031": "6061031 Grants to artists, film producers and writers", + "6061041": "6061041 Expenses for difficult situations and adversities", + "6061099": "6061099 Other transfers to individuals", + "6062100": "6062100 Transfers to ALUIZNI for property compensation", + "6062200": "6062200 Transfers for compensation of small business tax for reimbursement of fiscal equipment", + "6063100": "6063100 Transfers for public interest expropriation of owners immovable properties", + "6069991": "6069991 Migration - Transfers to household and individual budgets", + "6090200": "6090200 Contingencies", + "6091100": "6091100 Reserve fund of local government", + "6780100": "6780100 Other extraordinary expenses", + "6500100": "6500100 Interest on Treasury Bills with 3-month maturity issued in financial markets", + "6500200": "6500200 Interest on Treasury Bills with 3-month maturity issued by state or private enities", + "6500300": "6500300 Interest on Treasury Bills with 3-month maturity issued by individuals", + "6501100": "6501100 Interest on Treasury Bills with 6-month maturity issued in financial markets", + "6501200": "6501200 Interest on Treasury Bills with 6-month maturity issued by state or private enities", + "6501300": "6501300 Interest on Treasury Bills with 6-month maturity issued by individuals", + "6502100": "6502100 Interest on Treasury Bills with one year maturity issued in financial markets", + "6502200": "6502200 Interest on Treasury Bills with one year maturity issued by state or private enities", + "6502300": "6502300 Interest on Treasury Bills with one year maturity issued by individuals", + "6503100": "6503100 Interest on indirect loans from the Bank of Albania", + "6511100": "6511100 Interest on long-term borrowing for the same level of government", + "6511300": "6511300 Interest on long-term borrowing from other levels of government", + "6520100": "6520100 Interest on bonds with maturity from 1 to 5 years", + "6520200": "6520200 Interest on bonds with maturity from 6 to 10 years", + "6521200": "6521200 Interest on bonds with maturity over 10 years", + "6600100": "6600100 Interest on short-term borrowing from foreign governments", + "6601100": "6601100 Interest on long-term borrowing from foreign governments", + "6610100": "6610100 Interest on short-term borrowing from international organizations", + "6611100": "6611100 Interest on long-term borrowing from international organizations", + "6621100": "6621100 Interest on other external borrowing", + "2319999": "2319999 Migration type expenses", + "6027401": "6027401 Expenses for execution of court decisions on dismissal other", + "6027901": "6027901 Expenses for other unpaid allowances", + "2329100": "2329100 Other capital transfers", + "6001016": "6001016 Salary allowances for special work / working conditions", + "6001017": "6001017 Salary allowances for danger and hardships", + "6001020": "6001020 Salary allowances for the differences in underpaid salaries from the previous months", + "6001021": "6001021 Group salary", + "6024201": "6024201 Expenses for travel abroad", + "6024202": "6024202 Expenses on hotels", + "6040010": "6040010 Current transfers to the Special Property Compensation Fund", + "7000100": "7000100 Tax revenue from public services employees", + "7000200": "7000200 Tax revenue from non-public services employees", + "7000300": "7000300 Tax on interest income", + "7000400": "7000400 Tax on rental income", + "7000500": "7000500 Tax on gambling winnings", + "7000600": "7000600 Personal income tax on small business with a turnover of 2-8 millions", + "7000700": "7000700 Personal income tax from the Individual Annual Statement of Income", + "7000900": "7000900 Other income taxes withheld at source", + "7000901": "7000901 Withholding tax on the net amount of legalized income by individuals (3%)", + "7001100": "7001100 Profit tax on public sector companies", + "7001200": "7001200 Profit tax on private sector companies", + "7001300": "7001300 Profit tax on gambling entities", + "7002000": "7002000 (B) The fees and taxes on small business", + "7002100": "7002100 Local taxes on small business", + "7002200": "7002200 Simplified profit tax", + "7009100": "7009100 Taxes on income from dividends and shares", + "7009200": "7009200 Taxes on copyright and intellectual property", + "7009900": "7009900 Other taxes on personal income, profit and capital gain", + "7020100": "7020100 Tax on agricultural land", + "7020200": "7020200 Tax on buildings", + "7020300": "7020300 Revaluation of property taxes from the legal entities (3%)", + "7020400": "7020400 Revaluation of property taxes from the legal entities (5%)", + "7020500": "7020500 Revaluation of property tax from the individuals (1%)", + "7021100": "7021100 Tax on sale of immovable property", + "7021200": "7021200 Inheritance and gifts taxes", + "7029000": "7029000 (B) Other domestic grants", + "7029100": "7029100 Other taxes on the sale of immovable property.", + "7029200": "7029200 Taxes on the ownership transfer of immovable property", + "7030100": "7030100 Vat on goods and services within the country", + "7030200": "7030200 Vat on imported goods", + "7031100": "7031100 Cigarette excise tax", + "7031200": "7031200 Alcoholic beverages \u2013 prepaid excise tax", + "7031300": "7031300 Alcoholic beverages \u2013 excise tax collected by customs", + "7031400": "7031400 Excise tax on fuel produced in the country", + "7031500": "7031500 Excise tax on imported fuel", + "7031600": "7031600 Excise tax on coffee", + "7031700": "7031700 Excise tax on packed goods (plastic, glass, mixing)", + "7031900": "7031900 Excise tax- others (alcohol for manufacturing of beverages etc.)", + "7032100": "7032100 Tax on lotteries", + "7032200": "7032200 Tax on bingo and gaming", + "7032300": "7032300 Tax on gambling slot machines and billiards", + "7032400": "7032400 Tax on casinos", + "7032500": "7032500 Tax on sports games", + "7032900": "7032900 Other similar taxes on specific services", + "7033001": "7033001 Vehicle registration annual tax", + "7033002": "7033002 Vehicle tonnage annual tax per axle", + "7033003": "7033003 Tax on the circulation of foreign vehicles", + "7033004": "7033004 Tax on registration of gambling games, lotteries, etc.", + "7033005": "7033005 Annual broadcasting license fee.", + "7033006": "7033006 Annual fee for radio and tv usage", + "7033007": "7033007 Tax on radio-telecommunications services.", + "7033008": "7033008 Tax on telephones", + "7033009": "7033009 Fishing license fee", + "7033010": "7033010 Carbon tax on petrol, benzene, and diesel", + "7033011": "7033011 Tax on plastic packaging of packaged liquids (bottles, cans, etc.).", + "7033012": "7033012 National tax for royalties", + "7033013": "7033013 Land use tax - individuals", + "7033014": "7033014 Land use tax - corporates and state enterprises", + "7033015": "7033015 Land use tax - corporate entities", + "7033016": "7033016 Taxes on vehicles - used cars", + "7033017": "7033017 Packaging tax, plastics and glass", + "7033099": "7033099 Other national taxes on use of goods or permission to perform activities", + "7035000": "7035000 Local units taxes on use of goods or permission to perform activities", + "7035001": "7035001 Tax on business registration", + "7035002": "7035002 Tax on use of public space.", + "7035003": "7035003 Tax on infrastructure impact of new constructions", + "7035004": "7035004 Hunting tax.", + "7035005": "7035005 Hotel accommodation tax", + "7035006": "7035006 Hotels and restaurants turnover tax", + "7035007": "7035007 Tax on cattle slaughter", + "7035008": "7035008 Tax on advertising", + "7035009": "7035009 Tax on (advertising) boards", + "7035010": "7035010 Environmental tax (perimeter tax)", + "7035011": "7035011 Tax on timber usage", + "7035012": "7035012 Local temporary taxes", + "7035013": "7035013 Local Eco tax", + "7035014": "7035014 Local tax - purification", + "7035099": "7035099 Other unclassified local taxes and fees", + "7040000": "7040000 Customs duties on imported goods", + "7040100": "7040100 Customs duties on imported goods", + "7041000": "7041000 Customs duties on exported goods", + "7041100": "7041100 Customs duties on exported goods", + "7042000": "7042000 Customs service and parcels fee", + "7042100": "7042100 Customs service and parcels fee", + "7049100": "7049100 Tax on imports of used vehicle", + "7049200": "7049200 International customs transit tax.", + "7049900": "7049900 Other taxes", + "7050100": "7050100 Surcharge on taxable imports", + "7050200": "7050200 Tax on imported fuel consumption", + "7050300": "7050300 Tax on fuel consumption produced in the country", + "7050400": "7050400 The annual road tax for vat tax payers", + "7050500": "7050500 The annual road tax (other)", + "7081001": "7081001 The solidarity tax for order and protection", + "7081002": "7081002 Tax on border crossing of the republic of albania by plane", + "7081003": "7081003 Airport charges for aircraft landing, take-off and parking", + "7081004": "7081004 Tax on aircrafts flying over the territory of the rep. of albania.", + "7081005": "7081005 Port tax", + "7081006": "7081006 Tax of stamp and acts", + "7081099": "7081099 Other national taxes", + "7090000": "7090000 Late payment fees of the taxation system", + "7090100": "7090100 Late payment fees of the taxation system", + "7090101": "7090101 Late payment fees, social insurance", + "7090102": "7090102 Arrears on VAT", + "7090103": "7090103 Other tax arrears", + "7094100": "7094100 Late payment fees - from customs fines for imports", + "7094200": "7094200 Late payment fees - from customs fines for exports", + "7100100": "7100100 Revenue from state-owned enterprises", + "7100200": "7100200 Revenue from joint ventures", + "7100300": "7100300 Other revenues from non-financial public enterprises", + "7100400": "7100400 Revenue from equity participation - concessionary companies", + "7101100": "7101100 Revenue from bank of albania", + "7101200": "7101200 Revenue from commercial banks (second level)", + "7101300": "7101300 Revenue from insurance companies", + "7101900": "7101900 Other revenue from financial public enterprises", + "7109000": "7109000 Other revenue from enterprises and ownership", + "7109100": "7109100 Rent from agricultural land", + "7109200": "7109200 Rent from lands", + "7109300": "7109300 Revenue from mining or quarry royalty", + "7109400": "7109400 Revenue from exploitation of underground", + "7109500": "7109500 Revenue from state lotteries.", + "7109600": "7109600 Rent of buildings", + "7109700": "7109700 Rental of equipment", + "7109900": "7109900 Other revenue", + "7110000": "7110000 Administrative and regulatory fees", + "7110101": "7110101 Consular services fee", + "7110102": "7110102 Driving license fee", + "7110103": "7110103 Higher education enrollment fee", + "7110104": "7110104 Marine passport fee", + "7110105": "7110105 Fees for administrative acts", + "7110106": "7110106 Fees for transportation permit.", + "7110107": "7110107 Fee for the registration of insurance burden.", + "7110108": "7110108 Fees for professional and technical permits.", + "7110109": "7110109 Tuition fees", + "7110110": "7110110 Fees for contests", + "7110111": "7110111 License fees for games of chance", + "7110112": "7110112 Service fee banking-IPRO", + "7110113": "7110113 Service fee, initial registration-IPRO", + "7110114": "7110114 Service fee for landscaping alienation -PRCA", + "7110115": "7110115 Service fee for crossing the border with aircraft", + "7110116": "7110116 Service fee for radio and television licenses", + "7110117": "7110117 Service fee for radiocommunication services", + "7110118": "7110118 Service fee for the circulation of foreign vehicles", + "7110119": "7110119 Service fee for the use of television apparatus", + "7110120": "7110120 National administrative and regulatory fees", + "7110121": "7110121 Administrative authorization fees: coffee excise", + "7110122": "7110122 Administrative authorization fees: tobacco-cigarettes excise", + "7110123": "7110123 Administrative authorization fees: alcoholic beverages excise", + "7110124": "7110124 Administrative authorization fees: fuel-excise", + "7110127": "7110127 Fees for the authorization approval of the customs warehouse (Tobacco -Cigarettes)", + "7110128": "7110128 Fees for the authorization approval of the customs warehouse (Alcohol-alcoholic beverages)", + "7110129": "7110129 Fees for the authorization approval of the customs warehouse (fuel-oils)", + "7110130": "7110130 Fees for the authorization approval of the customs warehouse (other non-alcoholic drinks)", + "7110131": "7110131 Fees for registration of trademarks and patents for business purposes", + "7110132": "7110132 Fees for the issuance of Certificates of Insurance", + "7110199": "7110199 Other national administrative and regulatory fees", + "7110500": "7110500 Local administrative and regulatory fees", + "7110501": "7110501 Cleaning and sanitation fee", + "7110502": "7110502 Contribution from the public for road maintenance", + "7110503": "7110503 Luxury dogs fee.", + "7110504": "7110504 New residence registration fee.", + "7110505": "7110505 Fees for signal relay, reinforcement", + "7110506": "7110506 Service fee during the process of legalization", + "7110599": "7110599 Other local administrative and regulatory fees", + "7111000": "7111000 (B) Secondary income and payment services", + "7111001": "7111001 Revenue from kindergartens", + "7111002": "7111002 Revenue from kids nurseries", + "7111003": "7111003 Revenue from vocational training centers", + "7111004": "7111004 Revenue from medical and hospital service", + "7111005": "7111005 Revenue from chemical and biological analysis.", + "7111006": "7111006 Revenue from order police to guard the buildings.", + "7111007": "7111007 Revenue from parking.", + "7111008": "7111008 Revenue from photocopies.", + "7111009": "7111009 Revenue from transporation services for spam tools", + "7111020": "7111020 Commission revenues of sii (issh) for the collection of health contributions on behalf of hii (isksh)", + "7111021": "7111021 Revenue from license fees granted to private companies.", + "7111022": "7111022 Revenue from marriages to foreign citizens.", + "7111023": "7111023 Revenue from residence permits to foreigners.", + "7111024": "7111024 Revenue from maritime border police.", + "7111025": "7111025 Revenue from customs scales.", + "7111026": "7111026 Revenue from public order services for kesh.", + "7111027": "7111027 Revenue from fees for granting/giving up citizenship", + "7111028": "7111028 Revenue from licenses for the import of hunting guns and other hunting materials", + "7111029": "7111029 Revenue from fees for entry into albania of foreign citizens with hunting weapons for tourist hunting purpose.", + "7111030": "7111030 Revenue from authorization fees for citizens hunting weapons.", + "7111099": "7111099 Other revenues from secondary sources and services fees.", + "7112100": "7112100 Revenues from court fees", + "7112200": "7112200 Legal (notary) fees", + "7112300": "7112300 Property registration office fees", + "7112900": "7112900 Other fees for court services", + "7113001": "7113001 Sale of agricultural and forest products", + "7113002": "7113002 Sale of cultural and tourist products", + "7113003": "7113003 Revenue from canteens", + "7113004": "7113004 Selling products of elderly nursing homes", + "7113005": "7113005 Sale of cash registers from the tax directorate", + "7113006": "7113006 Sale of printings", + "7113007": "7113007 Sale of maps", + "7113008": "7113008 Revenue from the sale of passports", + "7113009": "7113009 Revenue from mnz project approval", + "7113010": "7113010 Revenue from professional licenses", + "7113011": "7113011 Revenue from mnz service", + "7113013": "7113013 Revenue from tenders.", + "7113014": "7113014 Revenue from the sale of the customs ball seals", + "7113015": "7113015 Revenue from the sale of the excise stamp to entities", + "7113016": "7113016 Revenue from the sale of the tax invoices.", + "7113017": "7113017 Revenue from the sale of transport tickets", + "7113099": "7113099 Other revenue from sales of goods and services", + "7114100": "7114100 Revenues from tickets - museums", + "7114200": "7114200 Revenues from tickets - cultural centers", + "7114300": "7114300 Revenues from tickets -stadiums", + "7114400": "7114400 Revenues from tickets - - historical center", + "7114900": "7114900 Other revenues from tickets", + "7115000": "7115000 Tax fines", + "7115001": "7115001 Tax fines", + "7115100": "7115100 Fines for breaches of social and health insurance obligations", + "7115101": "7115101 Fines for social and health insurance breaches from the employer", + "7115102": "7115102 Fines for social and health insurance breaches from the self-employed", + "7115103": "7115103 Fines for social and health insurance breaches from farmers", + "7115118": "7115118 Fines for health insurance breaches from employers", + "7115119": "7115119 Other tax fines", + "7115200": "7115200 Customs fines", + "7115210": "7115210 Customs fines for imports", + "7115220": "7115220 Customs fines for exports", + "7115400": "7115400 Other customs fines", + "7115401": "7115401 Court fines", + "7115402": "7115402 Traffic - contraband fines", + "7115403": "7115403 Forest police fines", + "7115404": "7115404 Sanitary inspectorate fines", + "7115405": "7115405 Electricity police fines", + "7115406": "7115406 Price and standards department fines", + "7115407": "7115407 Food control department fines", + "7115408": "7115408 Fines from the weighting control department", + "7115409": "7115409 Construction police fines", + "7115410": "7115410 Traffic police fines", + "7115411": "7115411 Public order police fines", + "7115412": "7115412 Border police fines", + "7115413": "7115413 Fines for illegal stay of foreigners.", + "7115414": "7115414 Fines for passport loss", + "7115415": "7115415 Tax police fines", + "7115416": "7115416 Immovable property registration system fines", + "7115417": "7115417 Fines from the process of legalization", + "7115418": "7115418 Fines from concessions", + "7115419": "7115419 Fines from legalized deposits transferred abroad", + "7115499": "7115499 Other fines", + "7115500": "7115500 Late payment fees", + "7115600": "7115600 Seizures and redress", + "7116100": "7116100 Income from transfer of property and legalization of illegal buildings", + "7117100": "7117100 Income from the transfer of unused prisones", + "7122100": "7122100 Court fees", + "7190101": "7190101 Compensations gained from the insurance institutes", + "7190201": "7190201 Revenue received from individuals for failure to perform military service", + "7190990": "7190990 Other non-tax revenues", + "7200101": "7200101 From the same governance level - from central government budget", + "7200102": "7200102 From the same governance level \u2013 from local government budget", + "7200103": "7200103 From the same governance level \u2013 from other authorities", + "7200105": "7200105 Intra-budgetary transfers - within the same level", + "7200106": "7200106 Transfers ofrom local institutions (municipalities and communes) to central government institutions", + "7200107": "7200107 Transfers from sub-national institutions to the central government institutions", + "7201101": "7201101 From other government levels - from central government budget", + "7201102": "7201102 From other government levels - from other local government budget", + "7201103": "7201103 From other government levels - from other authorities", + "7202001": "7202001 For compensation of pensioners for price increases", + "7202002": "7202002 For special state pensions", + "7202003": "7202003 For anticipated supplements for former political prisoners", + "7202004": "7202004 For anticipated supplements for veterans", + "7202005": "7202005 For anticipated supplements for the occupationally disabled", + "7202006": "7202006 For anticipated supplements for military pensions.", + "7202007": "7202007 For transitional payment and pensions to former officials.", + "7202008": "7202008 Grants to pay for allowances provided for martyrs", + "7202009": "7202009 Grants to pay for allowances provided for miners", + "7202010": "7202010 Grants to pay for allowances provided for pilots", + "7202011": "7202011 Grants to pay for allowances provided for the military industry", + "7203001": "7203001 Grants to cover the deficit of the social insurance fund", + "7203002": "7203002 To support additional expenditures from indexation.", + "7203003": "7203003 Grants to cover the deficit of hii (isksh)", + "7204000": "7204000 Participation of the institution in the national taxes and fees", + "7205000": "7205000 Additional funding from revenues generated within the system", + "7206000": "7206000 Expected funding from the budget", + "7207010": "7207010 Sponsorships from non-governmental organizations", + "7207011": "7207011 Sponsorships from state and private entities", + "7207012": "7207012 Sponsorships from individuals", + "7209000": "7209000 Other domestic grants", + "7209100": "7209100 Other internal grants", + "7210000": "7210000 Grants from foreign governments", + "7210100": "7210100 Grants from foreign governments", + "7211000": "7211000 Grants from international organizations", + "7211100": "7211100 Grants from international organizations", + "7300000": "7300000 Change in the stock of inventories", + "7400000": "7400000 In kind funding", + "7500100": "7500100 Social security, budgetary sector employees", + "7500200": "7500200 Health insurance, public sector employees", + "7501100": "7501100 Social security, non-budgetary sector employees", + "7501200": "7501200 Health insurance, non-budgetary sector employees", + "7502100": "7502100 Social security, private sector employees", + "7502200": "7502200 Health insurance, private sector employees", + "7502300": "7502300 Other contributions, private sector employees", + "7510100": "7510100 Social insurance, budgetary sector employers", + "7510200": "7510200 Health insurance, budgetary sector employers", + "7511100": "7511100 Social insurance, non-budgetary sector employers", + "7511200": "7511200 Health insurance, non-budgetary sector employers", + "7512100": "7512100 Social insurance private sector employers", + "7512200": "7512200 Health insurance, private sector employers", + "7512300": "7512300 Other contributions, private sector employers", + "7520100": "7520100 Social insurance, self-employed", + "7520200": "7520200 Health insurance, self-employed", + "7520300": "7520300 Other contributions, self-employed", + "7530100": "7530100 Social insurance, farmers", + "7530200": "7530200 Health insurance, farmers", + "7530300": "7530300 Other contributions, farmers", + "7540100": "7540100 Social insurance contributions of citizens residing abroad", + "7540200": "7540200 Social insurance of temporary non-contributors", + "7550100": "7550100 Budget contributions to social insurance for soldiers", + "7550200": "7550200 Budget contributions to social insurance for the unemployed", + "7550300": "7550300 Budget contributions to social insurance for the military in reform with early retirement", + "7550400": "7550400 Budget contributions to social insurance for former officials", + "7550500": "7550500 Budget contributions to social insurance for farmers", + "7550600": "7550600 Social security budget contributions for retired women", + "7550700": "7550700 Social security budget contributions for military", + "7560100": "7560100 Budget contributions for medical and dental services", + "7560200": "7560200 Budget contributions for pharmaceutical products", + "7560300": "7560300 Budget contributions for health treatment abroad", + "7560400": "7560400 Budget contributions for health treatment provided by private providers", + "7600100": "7600100 Interest from long-term direct domestic lending \u2013 to the same government level", + "7600200": "7600200 Interest from long-term direct domestic lending \u2013 to other government levels", + "7600300": "7600300 Interest from long-term direct domestic lending - to state owned enterprises", + "7601000": "7601000 Interests - lending with state guarantees", + "7601100": "7601100 Interests - lending with state guarantees", + "7602100": "7602100 Interests from sub-lending of foreign loans \u2013 to the same level of government", + "7602200": "7602200 Interests from sub-lending of foreign loans - to other levels of government", + "7602300": "7602300 Interests from sub-lending of foreign loans - to state-owned enterprises", + "7610000": "7610000 Interests - foreign lending", + "7610100": "7610100 Interest income - foreign lending", + "7650100": "7650100 Interest revenues from deposits", + "7660100": "7660100 Revenues from foreign exchange", + "7670100": "7670100 Revision of monetary value depending on the exchange rate (512 - Liquidities)", + "7670200": "7670200 Revision of monetary values depending on exchange rates (16 - Paper value)", + "7730100": "7730100 Revenues from discontinued activities and other policy changes", + "7770100": "7770100 Gains from allowed errors in previous years", + "7780100": "7780100 Corrections from previos years", + "7790100": "7790100 Other extraordinary revenues", + "7810000": "7810000 Works for investments in the economy", + "7820000": "7820000 Reversal of anticipated values of depreciation of current assets", + "7830000": "7830000 Reversal of anticipated values of depreciation of tangible and intangible fixed assets", + "7840000": "7840000 Revocation of anticipated expenditures for the next years", + "7850000": "7850000 Use of anticipated amounts for the next years expenditures", + "7870000": "7870000 Withdrawal from the investment section", + "7900000": "7900000 Technical accounts of application - creditor", + "4665501": "4665501 Temporary deposits from Advance Pricing Arrangement application fees", + "4665502": "4665502 Temporary deposits on Withholding Tax Returns", + "4665503": "4665503 Temporary deposits on Corporate Income Tax Returns", + "4665504": "4665504 Temporary deposits on Value Added Tax Returns", + "4665505": "4665505 Temporary deposits on National Tax Returns", + "4665506": "4665506 Temporary deposits on National Fees Returns", + "4665507": "4665507 Temporary deposits on Gaming Tax Returns", + "4665508": "4665508 Temporary deposits on Royalty Returns", + "4665509": "4665509 Temporary deposits on fines", + "4665510": "4665510 Temporary deposits on payroll taxes (social and healthcare insurance contributions and PIT)", + "4665511": "4665511 Temporary deposits on Simplified Profit Tax", + "4665512": "4665512 Temporary deposits on Fiscal Receipt Game", + "4665599": "4665599 Temporary deposits on unidentified payments", + "1061001": "1061001 Child Labor Survey and Child Labor Database development", + "1061002": "1061002 Grants from international institutions (blank)", + "7109601": "7109601 Revenues from social housing leases", + "4342399": "4342399 (T) SII/HCII claims on revenue collection - receipts to BoA Sp. Account after CG Transfer (GE 003 Credit)", + "4371299": "4371299 SII liability to HCII for transfers from TSA to the BoA Special Account (GE 003 Debit)", + "1068000": "1068000 (B)Grants in kind from foreign governments and international institutions", + "1068100": "1068100 Infrastructure upgrade in specific police regions", + "1068101": "1068101 Support for the Border Police and the Border Customs Administration", + "1068102": "1068102 Community Police Assistance Mission in Albania (PAMECA II)", + "1068103": "1068103 Renovation of Police Academy, second phase", + "1068104": "1068104 Witness Protection Capacity Building", + "1068105": "1068105 BMP Border Capacity Building", + "1068106": "1068106 Muriqan Joint Border Crossing Point", + "1068107": "1068107 Joint Border crossing Points in Albania II, III", + "1068200": "1068200 Electronic and computer equipment", + "1063001": "1063001 CENSUS United Nations Population Fund", + "1063002": "1063002 Time Use Survey", + "1061253": "1061253 Integrated Water & Ecosystem Management Project", + "1061272": "1061272 GEF-Natural Resource Development Project", + "1061278": "1061278 Integrated Coastal Zone Management and Clean-up Grant No. 056176", + "1061279": "1061279 Strengthening Aarhus Convent Implementation (Grant no. TF094711)", + "1061280": "1061280 Integrated Management of the Lake Shkodra", + "1061734": "1061734 Secondary and Local Roads Project - CEB, Grant", + "1061735": "1061735 Discharge of a new wastewater system of the tourist area in Shengjin, IPA 2007/Ndertimi i sistemit te ri te KUZ ne zonen turistike Golem, IPA 2007", + "1061736": "1061736 Establishing and Strengthening of Monitoring Control and Surveillance", + "1061748": "1061748 Program Implementation Support", + "1061749": "1061749 Qafe Bote Customs Compound", + "1061999": "1061999 Other grants", + "1062001": "1062001 Mountain-to-Market Grant", + "1062210": "1062210 Support for Integrated Planning System (IPS) Implementation", + "1062610": "1062610 Increasing Albanian National Responsibility for HIV/AIDS for Vulnerable Groups", + "1062809": "1062809 CENSUS 2011 Preparatory assistance", + "1060033": "1060033 Sustainable Development and GHG Emission Reduction", + "1060207": "1060207 Korca Water and Sanitation Project", + "1060210": "1060210 Lake Ohrid Protection (Pogradec Water and Sanitation)", + "1060212": "1060212 Rural water supply Program - KFW", + "1060213": "1060213 Shkodra Water Supply and Wastewater", + "1060340": "1060340 ICZMP co-financing (Japanese Grant)", + "1060360": "1060360 Health System Modernization", + "1060361": "1060361 LAMP B Component, Japan", + "1060370": "1060370 Avian Influenza Control Project", + "1060510": "1060510 Construction of Konispol - Saranda road section, Greece", + "1060610": "1060610 SIDA-Natural Resource Development Project", + "1060612": "1060612 LAMP B Component, Sweden", + "1060613": "1060613 LAMP A Component, SIDA", + "1060614": "1060614 LAMP C Component, SIDA", + "1060615": "1060615 SIDA- Registrations 2010-2012", + "1060720": "1060720 Porto Romano Hot Spot Recovery Project", + "1060721": "1060721 Capacity strengthening for Western Balkan Countries for hot points treating", + "1060722": "1060722 Vlora Water Infrastructure Rehabilitation", + "1060931": "1060931 Albania Social and Demographic Statistics Development", + "1060001": "1060001 Grants from foreign governments, identification of project and fund source", + "1060002": "1060002 Grants from foreign governments, identification of project and fund source", + "4351291": "4351291 Contributions collected by the Tax Authorities (Government) on behalf SII \u05a0central liabilities \u05a0revenues (GE 001 Credit)", + "4371499": "4371499 SII liability to HCII for commercial bank transfers to HCII account (GE 003 Debit)", + "7000999": "7000999 Personal income tax to identified", + "7001999": "7001999 Other profit tax to identified", + "7020600": "7020600 Land Taxes", + "7020700": "7020700 Taxes on the re-evaluation of the wealth of individuals (2%)", + "7030999": "7030999 Other VAT to be identified", + "7032999": "7032999 Tax on other specific services to be identified", + "7033999": "7033999 National tax on the use of goods or allowing other activities to be identified", + "7035015": "7035015 Local Provisional Fee for Educational Infrastructure", + "7049999": "7049999 Other taxes On Trade and International Transactions to be identified", + "1060999": "1060999 Grants", + "7660200": "7660200 Revenue from Foreign Exchange Rates - TSA Shit-Currency Purchase", + "7115650": "7115650 Fine for delayed disclosure fate games", + "7115651": "7115651 Fine for declining national fee", + "7115652": "7115652 Fine for late tax return", + "7115653": "7115653 Fine for late declaration National tax", + "7115654": "7115654 Fine for late declaration Social, Health Insurance and TAP", + "7113000": "7113000 Revenues from the sale of goods and services", + "7109800": "7109800 Current income from concessions", + "7109998": "7109998 Other Income from Enterprises and Property to be Identified", + "7109901": "7109901 Income generated from the payment of the estimated value of the land", + "7090104": "7090104 Interest rate on health insurance contributions", + "7090105": "7090105 Interest Rate From Taxation Games Fate", + "7090106": "7090106 Interest Rates from Profit Tax", + "7090108": "7090108 Interest Rate Taxes From National Taxes", + "7090111": "7090111 Interest Rate from the National Tariff", + "7090112": "7090112 Interest Rate Tax for Income Taxes", + "7090113": "7090113 Interest Rate from Tax on Rent", + "7090114": "7090114 Interest Rate Taxation Individual Declaration Declaration", + "7090115": "7090115 Interest Rate TAPBV", + "7090116": "7090116 Interest on personal income tax from employment", + "7033018": "7033018 Taksa mbi Primet e shkruara", + "7033019": "7033019 Taksa per regjistrimi fillestar per automjete luksoze", + "7033020": "7033020 Taksa e pervitshme per automjete luksoze", + "7035016": "7035016 Tarife per dhenie licence per tregetim karburanti e lende djegese", + "7035021": "7035021 Taks\u00eb p\u00ebr p\u00ebrdorimin e hap\u00ebsir\u00ebs publike p\u00ebr t\u00eb strehuar automjetet motorike dhe rimorkiot duke p\u00ebrjashtuar automjetet bujq\u00ebsore dhe makinerit\u00eb", + "7035023": "7035023 Tarif\u00eb vendore ndri\u00e7imi", + "7035024": "7035024 Tarif\u00eb vendore p\u00ebr dh\u00ebnie leje mjedisore", + "7035025": "7035025 Taks\u00eb vendore p\u00ebr truallin", + "7035026": "7035026 Taks\u00eb vendore p\u00ebr ujin", + "7035027": "7035027 Tarif\u00eb vendore p\u00ebr plazhe private", + "7035028": "7035028 Tarif\u00eb vendore p\u00ebr \u00e7ertifikat\u00ebn e p\u00ebrdorimit", + "7035029": "7035029 Tarif\u00eb vendore p\u00ebr urbanistik\u00ebn", + "7035030": "7035030 Tarif\u00eb vendore e regjistrimit p\u00ebr veprimtari t\u00eb ndryshme", + "7035031": "7035031 Tarif\u00eb vendore e sistemimeve t\u00eb jashtme p\u00ebr leje nd\u00ebrtimi", + "7035032": "7035032 Tarif\u00eb vendore p\u00ebr shqyrtim leje zhvillimi", + "7035033": "7035033 Tarif\u00eb vendore p\u00ebr l\u00ebshime v\u00ebrtetimi", + "7035034": "7035034 Tarif\u00eb vendore p\u00ebr shqyrtim ose nxjerrje dosje", + "7035035": "7035035 Tarif\u00eb vendore p\u00ebr ndotje", + "7035036": "7035036 Tarif\u00eb vendore sh\u00ebrbimi nga institucionet e kultur\u00ebs,sportit", + "7035037": "7035037 Tarif\u00eb vendore p\u00ebr kontrollin e zhvillimit t\u00eb territorit", + "7035038": "7035038 Tarif\u00eb vendore p\u00ebr konfirmime hartash", + "7035040": "7035040 Tarif\u00eb vendore p\u00ebr leje nd\u00ebrtimi", + "7035041": "7035041 Tarif\u00eb vendore p\u00ebr t\u00eb drejt\u00ebn televizive", + "7035043": "7035043 Tarif\u00eb vendore p\u00ebr piketim objekti", + "7035044": "7035044 Tarif\u00eb vendore pastrimi p\u00ebr leje nd\u00ebrtimi", + "7035045": "7035045 Tarif\u00eb vendore p\u00ebr varreza", + "7035046": "7035046 Taks\u00eb vendore e p\u00ebrkohshme p\u00ebr linjat ajrore e n\u00ebntok\u00ebsore", + "7035047": "7035047 Tarif\u00eb vendore p\u00ebr mjete korr\u00ebse", + "7035048": "7035048 Taks\u00eb vendore e p\u00ebrkohshme p\u00ebr mir\u00ebmbajtje rruge n\u00eb nj\u00ebsit\u00eb administrative e fshatra", + "7035049": "7035049 Taks\u00eb vendore e p\u00ebrkohshme p\u00ebr mir\u00ebmbajtje kanalesh kulluese e vadit\u00ebse", + "7035050": "7035050 Tarife vendore nga hidrocentrali ujor", + "7109101": "7109101 Te ardhura nga qera per pyjet dhe kullotat", + "7109902": "7109902 Te ardhura nga kalimi i pronesise se pasurive te paluajtshme e te truallit funksional te tyre", + "7109903": "7109903 T\u00eb ardhura nga privatizimi i banesave shtet\u00ebrore dhe objekteve t\u00eb kthyera n\u00eb banesa me fondet e shoq\u00ebrive shtet\u00ebrore", + "7110133": "7110133 Tarife nga peshkataret per sinjalin Blue-Box te satelitit per anijet", + "7110135": "7110135 Tarifa sherbimesh per skanimet gjate pro\u00e7esit doganor", + "7110507": "7110507 Tarifa te Agjencise se Sherbimeve Funerale", + "7110508": "7110508 Tarifa t\u00eb Agjencis\u00eb s\u00eb Administrimit t\u00eb Tregjeve", + "7110509": "7110509 Tarifa p\u00ebr furnizimin me uj\u00eb dhe kanalizimet", + "7110510": "7110510 Tarifa p\u00ebr ujitje dhe kullim", + "7110511": "7110511 Tarifa p\u00ebr regjistrimin e pron\u00ebs", + "7115420": "7115420 Gjoba te Policise Bashkiake", + "6001015": "6001015 Shtes\u00eb kualifikimi p\u00ebr punonj\u00ebsit m\u00ebsimor\u00eb t\u00eb arsimit para-universitar", + "6001018": "6001018 Salary allowances for overtime", + "6001019": "6001019 Salary allowances for carrying out guard, standby and emergency service", + "6062101": "6062101 Transfers for other compensations", + "7113018": "7113018 Te ardhura nga shitja e bazes materiale (matrikuj)", + "7601200": "7601200 Interesa - huadhenie afatgjate me garanci shteterore", + "7602201": "7602201 Interesa n\u00ebnhua nga huat\u00eb e huaja - nga qeverisje qendrore p\u00ebr qeverisjen vendore", + "7602301": "7602301 Interesa n\u00ebnhua nga huat\u00eb e huaja - p\u00ebr Uj\u00ebsjell\u00ebs-Kanalizime", + "7602302": "7602302 Interesa n\u00ebnhua nga huat\u00eb e huaja - p\u00ebr sektorin energjitik", + "7602400": "7602400 Interesa nenhua nga huate e huaja per subjektet jashte njesive te qeverisjes", + "7020110": "7020110", + "7035017": "7035017 Tax on the use of camping sites, the placement of tents or other objects for temporary use", + "7035018": "7035018 Tax on commercial notices located outside of business premises in premises and areas owned by the local government unit (streets, sidewalks, green areas, pillars, etc.)", + "7035022": "7035022 Tax on use of public space for holding construction materials", + "7035039": "7035039 Local Fuel License Fee", + "7035051": "7035051 Local tariff in forest and pasture sector", + "7115421": "7115421 Civil Fines", + "7116101": "7116101 Revenue from transfer of construction parcel to informal construction", + "7116102": "7116102 Revenue from transfer of construction parcel from stimulated persons to tourism priority areas", + "7117400": "7117400 Spending reimbursement between budgetary institutions", + "7603100": "7603100 Interest on issued bonds maturity 5 years" + }, + "func1": { + "01": "01 General public services", + "02": "02 Defense", + "03": "03 Public order, security and judicial work", + "04": "04 Economic relations", + "05": "05 Environmental protection", + "06": "06 House-building and public utilities", + "07": "07 Healthcare", + "08": "08 Recreation, culture and religion", + "09": "09 Education", + "10": "10 Social security", + "11": "11 Reserve funds not covered by main divisions", + "__default__": "01 General public services" + }, + "func2": { + "__default__": "016 General public services(unclassified)", + "106": "106 Social housing", + "107": "107 Economic aid", + "036": "036 Local administrative oversight", + "051": "051 Local waster management services", + "052": "052 Sanitary services", + "064": "064 Street lighting", + "011": "011 Executive and legislative organs, financial and fiscal affairs, external affairs", + "013": "013 General services", + "015": "015 R&D general services", + "016": "016 General public services(unclassified)", + "017": "017 Public debt transactions", + "018": "018 Transfers of a general character between different levels of government", + "021": "021 Military defense", + "022": "022 Military defense (other)", + "024": "024 R&D Defense", + "031": "031 Police services", + "032": "032 Fire protection services", + "033": "033 Law courts", + "034": "034 Prison system", + "035": "035 R&D public order and safety", + "041": "041 General economic, commercial, and labour affairs", + "042": "042 Agriculture, forestry, fishing and hunting", + "043": "043 Fuel and energy", + "044": "044 Mining, manufacturing, and construction", + "045": "045 Transport", + "047": "047 Other industries", + "048": "048 R&D economic affairs", + "049": "049 Economic affairs (unclassified)", + "053": "053 Pollution abatement", + "054": "054 Natural Resources Management and Biodiversity Protection", + "056": "056 Environmental Protection (unclassified)", + "061": "061 Housing development", + "062": "062 Community development", + "063": "063 Water supply", + "072": "072 Outpatient services", + "073": "073 Hospital services", + "074": "074 Public health Services", + "081": "081 Entertainment and sports services", + "082": "082 Cultural services", + "083": "083 Broadcasting and publishing services", + "084": "084 Religious and other community services", + "085": "085 R & D Recreation, culture and religious affairs", + "086": "086 Recreation, culture and religious affairs n.e.c.", + "091": "091 Pre-school and primary", + "092": "092 Secondary education", + "094": "094 Tertiary education", + "096": "096 Additional education services", + "097": "097 R & D Education", + "098": "098 Education (unclassfied)", + "101": "101 Illness and disability", + "102": "102 Old age", + "104": "104 Family and children", + "105": "105 unemployment", + "109": "109 Social Protection (unclassified)", + "36": "036 Local administrative oversight", + "51": "051 Local waster management services", + "52": "052 Sanitary services", + "64": "064 Street lighting", + "11": "011 Executive and legislative organs, financial and fiscal affairs, external affairs", + "13": "013 General services", + "15": "015 R&D general services", + "16": "016 General public services(unclassified)", + "17": "017 Public debt transactions", + "18": "018 Transfers of a general character between different levels of government", + "21": "021 Military defense", + "22": "022 Military defense (other)", + "24": "024 R&D Defense", + "31": "031 Police services", + "32": "032 Fire protection services", + "33": "033 Law courts", + "34": "034 Prison system", + "35": "035 R&D public order and safety", + "41": "041 General economic, commercial, and labour affairs", + "42": "042 Agriculture, forestry, fishing and hunting", + "43": "043 Fuel and energy", + "44": "044 Mining, manufacturing, and construction", + "45": "045 Transport", + "47": "047 Other industries", + "48": "048 R&D economic affairs", + "49": "049 Economic affairs (unclassified)", + "53": "053 Pollution abatement", + "54": "054 Natural Resources Management and Biodiversity Protection", + "56": "056 Environmental Protection (unclassified)", + "61": "061 Housing development", + "62": "062 Community development", + "63": "063 Water supply", + "72": "072 Outpatient services", + "73": "073 Hospital services", + "74": "074 Public health Services", + "81": "081 Entertainment and sports services", + "82": "082 Cultural services", + "83": "083 Broadcasting and publishing services", + "84": "084 Religious and other community services", + "85": "085 R & D Recreation, culture and religious affairs", + "86": "086 Recreation, culture and religious affairs n.e.c.", + "91": "091 Pre-school and primary", + "92": "092 Secondary education", + "94": "094 Tertiary education", + "96": "096 Additional education services", + "97": "097 R & D Education", + "98": "098 Education (unclassfied)" + }, + "program": { + "08610": "08610 08610 Recreation, culture and religious affairs n.e.c.", + "10660": "10660 10660 Housing", + "03390": "03390 03390 Activity of SPAK", + "03600": "03600 03600 Community Relations", + "05100": "05100 05100 Waste Management", + "05200": "05200 05200 Wastewater", + "10661": "10661 10661 Social housing", + "10770": "10770 10770 Economic aid", + "01311": "01311 01311 Territorial planning", + "01312": "01312 01312 Civil Status Service", + "01321": "01321 01321 Cemeteries and funerals", + "03601": "03601 03601 Local administrative oversight", + "04111": "04111 04111 Economic development plans", + "04221": "04221 04221 Cadastre", + "04222": "04222 04222 Agticultural Counseling", + "04223": "04223 04223 Veterinary", + "04521": "04521 04521 Road construction and maintenance", + "04740": "04740 04740 Development Projects", + "04741": "04741 04741 Flood protection", + "04742": "04742 04742 Recreation", + "04761": "04761 04761 Toursim development", + "05101": "05101 05101 Local waster management services", + "05201": "05201 05201 Sanitary services", + "05630": "05630 05630 Environmental Awareness", + "06331": "06331 06331 Drinking water supply", + "06440": "06440 06440 Street lighting", + "08120": "08120 08120 Parks", + "08131": "08131 08131 Sports and museums", + "08280": "08280 08280 Museums, theaters and cultural events", + "09121": "09121 09121 Construction and maintenance", + "09122": "09122 09122 Kindergarten teachers and support staff salaries", + "09231": "09231 09231 Construction and maintenance", + "09232": "09232 09232 Support staff salaries", + "00000": "00000 Unspecified", + "01110": "01110 Planning, management and administration", + "01120": "01120 Public expenditure management", + "01130": "01130 Payments execution", + "01140": "01140 Tax revenue management", + "01150": "01150 Customs revenue management", + "01160": "01160 Fight against non-legal finacial transactions", + "01170": "01170 General Public Services V", + "01180": "01180 Internal audit and public finances control", + "01190": "01190 General Public Services VII", + "01310": "01310 Statistical Services", + "01320": "01320 Other General Services", + "01330": "01330 Repoba Project (Population and Housing Census)", + "01510": "01510 Basic Research and Development", + "01520": "01520 Academic Activity", + "01610": "01610 Administration of Elections", + "01620": "01620 General and Local Elections", + "01710": "01710 Payments for domestically issued debt", + "01720": "01720 Payments for foreign debt", + "01810": "01810 Unconditional Transfer Reserve", + "01820": "01820 Independent Budget of LGUs", + "02120": "02120 Combat forces", + "02150": "02150 Combat Support", + "02160": "02160 Targeted Support", + "02280": "02280 Civil military cooperation", + "02460": "02460 Technical Support and Scientific Research", + "03140": "03140 State police", + "03150": "03150 Guard of Honor service", + "03280": "03280 Fire fighting and Rescue Police", + "03310": "03310 Judicial Budget", + "03320": "03320 Judicial Activity", + "03350": "03350 Judicial Bailiff Service", + "03440": "03440 General Directorate of Prisons", + "03490": "03490 Probation service", + "03520": "03520 State Intelligence Service", + "04110": "04110 Economic and Commercial Affairs", + "04120": "04120 Market Surveillance and Competition Protection", + "04130": "04130 Economic development's support", + "04140": "04140 Support to Financial Institutions", + "04160": "04160 Support for market surveillance, quality infrastructure and industrial properties", + "04170": "04170 Inspection of job conditions", + "04220": "04220 Food safety and consumer protection", + "04230": "04230 Support to Fishery", + "04240": "04240 Management of drainage and irrigation's infrastructure", + "04250": "04250 Rural development", + "04260": "04260 Forestry Administration", + "04280": "04280 Integrated Rural Development", + "04320": "04320 Power supply support", + "04430": "04430 Natural sources' support", + "04440": "04440 Mines and public entreprises' support", + "04520": "04520 National roads network", + "04530": "04530 Transport's management", + "04540": "04540 Harbours", + "04550": "04550 Railways", + "04560": "04560 Civil aviation", + "04570": "04570 Public Transport", + "04590": "04590 Support to Urban and Rural Infrastructure", + "04750": "04750 Tourism Programmes", + "04760": "04760 Tourism Development", + "04770": "04770 Regional development support", + "04790": "04790 Tourism Infrastructure", + "04860": "04860 Research and Extension", + "04910": "04910 The Reserve Fund of the Council of Ministers", + "04920": "04920 Contingency for investments", + "04930": "04930 Contingency for wage and pension increase", + "04940": "04940 Contingency for deficit protection", + "04950": "04950 Reserve for wage increase", + "04960": "04960 Between accounts in the centre", + "04970": "04970 Other economic services", + "04980": "04980 Other expenditures", + "04990": "04990 Errors and omissions", + "05320": "05320 Environment protection programs", + "05470": "05470 Rural land sustainable management", + "05640": "05640 Water Administration", + "06140": "06140 Housing and Local Urban Planning", + "06180": "06180 Housing and urban planning", + "06210": "06210 Software development", + "06220": "06220 Public services", + "06260": "06260 Local Public Services", + "06330": "06330 Local Water Supply and Sanitation", + "06370": "06370 Water Supply and Sanitation", + "07220": "07220 Primary health care services", + "07330": "07330 Secondary health care services", + "07340": "07340 Health services", + "07450": "07450 Public health services", + "07460": "07460 National emergency services", + "08130": "08130 Culture and Sport", + "08140": "08140 Sports development", + "08150": "08150 Culture and Sport", + "08170": "08170 Youth programmes", + "08210": "08210 Cinematography", + "08220": "08220 Cultural heritage and museums", + "08230": "08230 Art and culture", + "08250": "08250 Specific cultural and tourism programmes", + "08260": "08260 State Committee on Cults", + "08270": "08270 Strategy and Development", + "08310": "08310 Services for the Albanian's abroad", + "08320": "08320 Albanian Radio &Television Activity", + "08330": "08330 Filmic productions or national artistic activities", + "08340": "08340 RTSH and cinematographic simphonic orchestra", + "08480": "08480 Religious cults support", + "08520": "08520 Technical projects for introducing new technologies", + "09120": "09120 Basic education (pre-school included)", + "09230": "09230 Higher education (general)", + "09240": "09240 Higher education (vocational)", + "09420": "09420 Education and Science", + "09430": "09430 Military education", + "09450": "09450 University education", + "09660": "09660 Educational programmes and Teacher Training", + "09770": "09770 Funds for science and development", + "09820": "09820 Educational Activity of School of Magistrates", + "10140": "10140 Social Care Services", + "10220": "10220 Social insurance", + "10270": "10270 Social support to military forces", + "10430": "10430 Social protection", + "10460": "10460 Equal opportunities", + "10550": "10550 Reintegration in the labour market", + "10910": "10910 Civil emergencies", + "03330": "03330 Activity on the transitional revaluation of the magistrates", + "03340": "03340 Activity of appeal of transitional reassessment", + "03360": "03360 Activity of the Public Commissioner", + "06190": "06190 Housing", + "8610": "08610 08610 Recreation, culture and religious affairs n.e.c.", + "3390": "03390 03390 Activity of SPAK", + "3600": "03600 03600 Community Relations", + "5100": "05100 05100 Waste Management", + "5200": "05200 05200 Wastewater", + "1311": "01311 01311 Territorial planning", + "1312": "01312 01312 Civil Status Service", + "1321": "01321 01321 Cemeteries and funerals", + "3601": "03601 03601 Local administrative oversight", + "4111": "04111 04111 Economic development plans", + "4221": "04221 04221 Cadastre", + "4222": "04222 04222 Agticultural Counseling", + "4223": "04223 04223 Veterinary", + "4521": "04521 04521 Road construction and maintenance", + "4740": "04740 04740 Development Projects", + "4741": "04741 04741 Flood protection", + "4742": "04742 04742 Recreation", + "4761": "04761 04761 Toursim development", + "5101": "05101 05101 Local waster management services", + "5201": "05201 05201 Sanitary services", + "5630": "05630 05630 Environmental Awareness", + "6331": "06331 06331 Drinking water supply", + "6440": "06440 06440 Street lighting", + "8120": "08120 08120 Parks", + "8131": "08131 08131 Sports and museums", + "8280": "08280 08280 Museums, theaters and cultural events", + "9121": "09121 09121 Construction and maintenance", + "9122": "09122 09122 Kindergarten teachers and support staff salaries", + "9231": "09231 09231 Construction and maintenance", + "9232": "09232 09232 Support staff salaries", + "0000": "00000 Unspecified", + "1110": "01110 Planning, management and administration", + "1120": "01120 Public expenditure management", + "1130": "01130 Payments execution", + "1140": "01140 Tax revenue management", + "1150": "01150 Customs revenue management", + "1160": "01160 Fight against non-legal finacial transactions", + "1170": "01170 General Public Services V", + "1180": "01180 Internal audit and public finances control", + "1190": "01190 General Public Services VII", + "1310": "01310 Statistical Services", + "1320": "01320 Other General Services", + "1330": "01330 Repoba Project (Population and Housing Census)", + "1510": "01510 Basic Research and Development", + "1520": "01520 Academic Activity", + "1610": "01610 Administration of Elections", + "1620": "01620 General and Local Elections", + "1710": "01710 Payments for domestically issued debt", + "1720": "01720 Payments for foreign debt", + "1810": "01810 Unconditional Transfer Reserve", + "1820": "01820 Independent Budget of LGUs", + "2120": "02120 Combat forces", + "2150": "02150 Combat Support", + "2160": "02160 Targeted Support", + "2280": "02280 Civil military cooperation", + "2460": "02460 Technical Support and Scientific Research", + "3140": "03140 State police", + "3150": "03150 Guard of Honor service", + "3280": "03280 Fire fighting and Rescue Police", + "3310": "03310 Judicial Budget", + "3320": "03320 Judicial Activity", + "3350": "03350 Judicial Bailiff Service", + "3440": "03440 General Directorate of Prisons", + "3490": "03490 Probation service", + "3520": "03520 State Intelligence Service", + "4110": "04110 Economic and Commercial Affairs", + "4120": "04120 Market Surveillance and Competition Protection", + "4130": "04130 Economic development's support", + "4140": "04140 Support to Financial Institutions", + "4160": "04160 Support for market surveillance, quality infrastructure and industrial properties", + "4170": "04170 Inspection of job conditions", + "4220": "04220 Food safety and consumer protection", + "4230": "04230 Support to Fishery", + "4240": "04240 Management of drainage and irrigation's infrastructure", + "4250": "04250 Rural development", + "4260": "04260 Forestry Administration", + "4280": "04280 Integrated Rural Development", + "4320": "04320 Power supply support", + "4430": "04430 Natural sources' support", + "4440": "04440 Mines and public entreprises' support", + "4520": "04520 National roads network", + "4530": "04530 Transport's management", + "4540": "04540 Harbours", + "4550": "04550 Railways", + "4560": "04560 Civil aviation", + "4570": "04570 Public Transport", + "4590": "04590 Support to Urban and Rural Infrastructure", + "4750": "04750 Tourism Programmes", + "4760": "04760 Tourism Development", + "4770": "04770 Regional development support", + "4790": "04790 Tourism Infrastructure", + "4860": "04860 Research and Extension", + "4910": "04910 The Reserve Fund of the Council of Ministers", + "4920": "04920 Contingency for investments", + "4930": "04930 Contingency for wage and pension increase", + "4940": "04940 Contingency for deficit protection", + "4950": "04950 Reserve for wage increase", + "4960": "04960 Between accounts in the centre", + "4970": "04970 Other economic services", + "4980": "04980 Other expenditures", + "4990": "04990 Errors and omissions", + "5320": "05320 Environment protection programs", + "5470": "05470 Rural land sustainable management", + "5640": "05640 Water Administration", + "6140": "06140 Housing and Local Urban Planning", + "6180": "06180 Housing and urban planning", + "6210": "06210 Software development", + "6220": "06220 Public services", + "6260": "06260 Local Public Services", + "6330": "06330 Local Water Supply and Sanitation", + "6370": "06370 Water Supply and Sanitation", + "7220": "07220 Primary health care services", + "7330": "07330 Secondary health care services", + "7340": "07340 Health services", + "7450": "07450 Public health services", + "7460": "07460 National emergency services", + "8130": "08130 Culture and Sport", + "8140": "08140 Sports development", + "8150": "08150 Culture and Sport", + "8170": "08170 Youth programmes", + "8210": "08210 Cinematography", + "8220": "08220 Cultural heritage and museums", + "8230": "08230 Art and culture", + "8250": "08250 Specific cultural and tourism programmes", + "8260": "08260 State Committee on Cults", + "8270": "08270 Strategy and Development", + "8310": "08310 Services for the Albanian's abroad", + "8320": "08320 Albanian Radio &Television Activity", + "8330": "08330 Filmic productions or national artistic activities", + "8340": "08340 RTSH and cinematographic simphonic orchestra", + "8480": "08480 Religious cults support", + "8520": "08520 Technical projects for introducing new technologies", + "9120": "09120 Basic education (pre-school included)", + "9230": "09230 Higher education (general)", + "9240": "09240 Higher education (vocational)", + "9420": "09420 Education and Science", + "9430": "09430 Military education", + "9450": "09450 University education", + "9660": "09660 Educational programmes and Teacher Training", + "9770": "09770 Funds for science and development", + "9820": "09820 Educational Activity of School of Magistrates", + "3330": "03330 Activity on the transitional revaluation of the magistrates", + "3340": "03340 Activity of appeal of transitional reassessment", + "3360": "03360 Activity of the Public Commissioner", + "6190": "06190 Housing" + }, + "exp_type": { + "1": "1 Personnel", + "2": "2 Non-personnel recurrent", + "3": "3 Capital", + "4": "4 Other" + }, + "transfer": { + "0": "Excluding transfers", + "1": "Intrabudgetary transfers" + }, + "fin_source": { + "0": "0 Unspecified", + "1": "1 Budget fund", + "2": "2 Foreign financing", + "3": "3 Local costs", + "4": "4 VAT, Customs Duties", + "5": "5 From its own revenues", + "6": "6 From Revenue falling outside the limit", + "7": "7 Mixed funds", + "8": "8 University, Hospital and NRC Grants" + }, + "project_s": { + "1": "1 Unspecified", + "2": "2 Internal (other)", + "3": "3 Grant financed", + "4": "4 Loan financed", + "5": "5 Internal" + }, + "admin2_new": { + "1": "01 Bashkia Belsh", + "2": "02 Bashkia Berat", + "3": "03 Bashkia Bulqize", + "4": "04 Bashkia Cerrik", + "5": "05 Bashkia Delvine", + "6": "06 Bashkia Devoll", + "7": "07 Bashkia Diber", + "8": "08 Bashkia Divjake", + "9": "09 Bashkia Dropull", + "10": "10 Bashkia Durres", + "11": "11 Bashkia Elbasan", + "12": "12 Bashkia Fier", + "13": "13 Bashkia Finiq", + "14": "14 Bashkia Fushe Arrez", + "15": "15 Bashkia Gjirokaster", + "16": "16 Bashkia Gramsh", + "17": "17 Bashkia Has", + "18": "18 Bashkia Himare", + "19": "19 Bashkia Kamez", + "20": "20 Bashkia Kavaje", + "21": "21 Bashkia Kelcyre", + "22": "22 Bashkia Klos", + "23": "23 Bashkia Kolonje", + "24": "24 Bashkia Konispol", + "25": "25 Bashkia Korce", + "26": "26 Bashkia M.Madhe", + "27": "27 Bashkia Kruje", + "28": "28 Bashkia Kucove", + "29": "29 Bashkia Kukes", + "30": "30 Bashkia Kurbin", + "31": "31 Bashkia Lezhe", + "32": "32 Bashkia Libohove", + "33": "33 Bashkia Librazhd", + "34": "34 Bashkia Lushnje", + "35": "35 Bashkia Maliq", + "36": "36 Bashkia Mallakaster", + "37": "37 Bashkia Mat", + "38": "38 Bashkia Memaliaj", + "39": "39 Bashkia Mirdite", + "40": "40 Bashkia Patos", + "41": "41 Bashkia Peqin", + "42": "42 Bashkia Permet", + "43": "43 Bashkia Pogradec", + "44": "44 Bashkia Polican", + "45": "45 Bashkia Prrenjas", + "46": "46 Bashkia Puke", + "47": "47 Bashkia Pustec", + "48": "48 Bashkia Roskovec", + "49": "49 Bashkia Rrogozhine", + "50": "50 Bashkia Sarande", + "51": "51 Bashkia Selenice", + "52": "52 Bashkia Shijak", + "53": "53 Bashkia Shkoder", + "54": "54 Bashkia Skrapar", + "55": "55 Bashkia Tepelene", + "56": "56 Bashkia Tirane", + "57": "57 Bashkia Tropoje", + "58": "58 Bashkia U.Vajgurore", + "59": "59 Bashkia Vau i Dejes", + "60": "60 Bashkia Vlore", + "61": "61 Bashkia Vore", + "100": "Regional budget" + } +} \ No newline at end of file diff --git a/Albania/mapping.csv b/Albania/mapping.csv new file mode 100644 index 0000000..6989ab8 --- /dev/null +++ b/Albania/mapping.csv @@ -0,0 +1,400 @@ +,county,admin2_new,admin2_old,admin2 +0,Berat,2,Berat,102 +1,Berat,2,Velabisht,308 +2,Berat,2,Otllak,304 +3,Berat,2,Sinje,306 +4,Berat,2,Roshnik,310 +5,Berat,58,Ura Vajgurore,167 +6,Berat,58,Poshnje,302 +7,Berat,58,Kutalli,303 +8,Berat,58,Cukalat,311 +9,Berat,28,Kucove,124 +10,Berat,28,Kozare,531 +11,Berat,28,Perondi,530 +12,Berat,28,Lumas,305 +13,Berat,54,Corovode,139 +14,Berat,54,Qender Skrapar,740 +15,Berat,54,Bogove,745 +16,Berat,54,Vendreshe,744 +17,Berat,54,Cepan,743 +18,Berat,54,Potom,741 +19,Berat,54,Leshnje,742 +20,Berat,54,Gjerbes,747 +21,Berat,54,Zhepe,746 +22,Berat,44,Polican,140 +23,Berat,44,Terpan,307 +24,Berat,44,Vertop,309 +25,Diber,7,Peshkopi,106 +26,Diber,7,Tomin,345 +27,Diber,7,Melan,346 +28,Diber,7,Kastriot,347 +29,Diber,7,Lure,348 +30,Diber,7,Maqellare,349 +31,Diber,7,Muhurr,350 +32,Diber,7,Luzni,358 +33,Diber,7,Selishte,351 +34,Diber,7,Sllove,352 +35,Diber,7,Kala e Dodes,353 +36,Diber,7,Zall Dardhe,354 +37,Diber,7,Zall Rec,355 +38,Diber,7,Fushe cidhen,356 +39,Diber,7,Arras,357 +40,Diber,3,Bulqize,103 +41,Diber,3,Martanesh,321 +42,Diber,3,Fushe Bulqize,315 +43,Diber,3,Zerqan,320 +44,Diber,3,Shupenze,318 +45,Diber,3,Gjorice,319 +46,Diber,3,Ostren,317 +47,Diber,3,Trebisht,316 +48,Diber,37,Burrel,132 +49,Diber,37,Baz,647 +50,Diber,37,Derjan,649 +51,Diber,37,Rukaj,648 +52,Diber,37,Macukull,650 +53,Diber,37,Komsi,645 +54,Diber,37,Lis,651 +55,Diber,37,Ulez,646 +56,Diber,22,Klos - Diber,654 +57,Diber,22,Xiber,655 +58,Diber,22,Suc,652 +59,Diber,22,Gurre,653 +60,Durres,10,Durres,107 +61,Durres,10,Sukth,151 +62,Durres,10,Ishem,372 +63,Durres,10,Katundi i ri,368 +64,Durres,10,Rrashbull,365 +65,Durres,10,Manez,150 +66,Durres,52,Shijak,108 +67,Durres,52,Maminas,370 +68,Durres,52,Xhafzotaj,366 +69,Durres,52,Gjepalaj,367 +70,Durres,27,Kruje,123 +71,Durres,27,Fushe Kruje,163 +72,Durres,27,Bubq,522 +73,Durres,27,Nikel,521 +74,Durres,27,Thumane,523 +75,Durres,27,Cudhi,524 +76,Elbasan,11,Elbasan,109 +77,Elbasan,11,Labinot Fushe,392 +78,Elbasan,11,Labinot Mal,391 +79,Elbasan,11,Gjinar,386 +80,Elbasan,11,Shushice- Elbasan - Elbasan,398 +81,Elbasan,11,Gjergjan,387 +82,Elbasan,11,Funar,382 +83,Elbasan,11,Shirgjan,397 +84,Elbasan,11,Tregan,399 +85,Elbasan,11,Gracen,384 +86,Elbasan,11,Bradashesh,381 +87,Elbasan,11,Zavaline,400 +88,Elbasan,11,Paper,394 +89,Elbasan,4,Cerrik,110 +90,Elbasan,4,Gostime,383 +91,Elbasan,4,Mollas - Elbasan - Elbasan,393 +92,Elbasan,4,Shales,396 +93,Elbasan,4,Klos - Elbasan ,390 +94,Elbasan,1,Belsh,152 +95,Elbasan,1,Grekan,385 +96,Elbasan,1,Kajan,388 +97,Elbasan,1,Fierze - Elbasan ,389 +98,Elbasan,1,Rrase,395 +99,Elbasan,41,Peqin,134 +100,Elbasan,41,Pajove,682 +101,Elbasan,41,Karine,681 +102,Elbasan,41,Perparim,683 +103,Elbasan,41,Gjocaj,680 +104,Elbasan,41,Sheze,684 +105,Elbasan,16,Gramsh,114 +106,Elbasan,16,Pishaj,430 +107,Elbasan,16,Kodovjat,431 +108,Elbasan,16,Kukur,432 +109,Elbasan,16,Kushove,438 +110,Elbasan,16,Lenie,435 +111,Elbasan,16,Porocan,434 +112,Elbasan,16,Skenderbegas,433 +113,Elbasan,16,Sult,437 +114,Elbasan,16,Tunje,436 +115,Elbasan,33,Librazhd,128 +116,Elbasan,33,Qender Librazhd,590 +117,Elbasan,33,Hotolisht,588 +118,Elbasan,33,Lunik,591 +119,Elbasan,33,Stebleve,593 +120,Elbasan,33,Polis,589 +121,Elbasan,33,Orenje,592 +122,Elbasan,45,Prrenjas,153 +123,Elbasan,45,Qukes,586 +124,Elbasan,45,Rrajce,594 +125,Elbasan,45,Stravaj,587 +126,Fier,12,Fier,111 +127,Fier,12,Cakran,423 +128,Fier,12,Mbrostar Ura,410 +129,Fier,12,Libofshe,411 +130,Fier,12,Qender - Fier - Fier,417 +131,Fier,12,Dermenas,412 +132,Fier,12,Topoje,413 +133,Fier,12,Levan,414 +134,Fier,12,Frakull,415 +135,Fier,12,Portez,416 +136,Fier,40,Patos,112 +137,Fier,40,Zharez,419 +138,Fier,40,Ruzhdie,418 +139,Fier,48,Roskovec,113 +140,Fier,48,Kuman,421 +141,Fier,48,Kurjan,420 +142,Fier,48,Strum,422 +143,Fier,34,Lushnje,129 +144,Fier,34,Allkaj,605 +145,Fier,34,Bubullime,607 +146,Fier,34,Hysgjokaj,601 +147,Fier,34,Golem - Fier - Lushnje,602 +148,Fier,34,Dushk,614 +149,Fier,34,Karbunare,604 +150,Fier,34,Ballagat,600 +151,Fier,34,Fier Shegan,603 +152,Fier,34,Kolonje - Fier - Lushnje,608 +153,Fier,34,Krutje,606 +154,Fier,8,Divjake,147 +155,Fier,8,Terbuf,613 +156,Fier,8,Grabjan,612 +157,Fier,8,Gradishte,609 +158,Fier,8,Remas,610 +159,Fier,36,Ballsh,635 +160,Fier,36,Qender Dukas,131 +161,Fier,36,Greshice,642 +162,Fier,36,Aranitas,637 +163,Fier,36,Hekal,636 +164,Fier,36,Ngracan,641 +165,Fier,36,Kute,639 +166,Fier,36,Fratar,638 +167,Fier,36,Kapaj - Selite,640 +168,Gjirokaster,15,Gjirokaster,115 +169,Gjirokaster,15,Cepo,450 +170,Gjirokaster,15,Lazarat,449 +171,Gjirokaster,15,Picar,451 +172,Gjirokaster,15,Lunxheri,447 +173,Gjirokaster,15,Odrie,446 +174,Gjirokaster,15,Antigone,448 +175,Gjirokaster,32,Libohove,116 +176,Gjirokaster,32,Qender Libohove,445 +177,Gjirokaster,32,Zagorie,455 +178,Gjirokaster,55,Tepelene,142 +179,Gjirokaster,55,Qender Tepelene,780 +180,Gjirokaster,55,Lopes,787 +181,Gjirokaster,55,Kurvelesh,786 +182,Gjirokaster,38,Memaliaj,143 +183,Gjirokaster,38,Memaliaj Fshat,781 +184,Gjirokaster,38,Luftinje,784 +185,Gjirokaster,38,Buz,785 +186,Gjirokaster,38,Krahes,782 +187,Gjirokaster,38,Qesarat,783 +188,Gjirokaster,42,Permet,135 +189,Gjirokaster,42,Carcove,690 +190,Gjirokaster,42,Frasher,695 +191,Gjirokaster,42,Petran,697 +192,Gjirokaster,42,Qender Piskove,691 +193,Gjirokaster,21,Kelcyre,154 +194,Gjirokaster,21,Ballaban,694 +195,Gjirokaster,21,Suke,693 +196,Gjirokaster,21,Deshnice,696 +197,Gjirokaster,9,Dropull i Poshtem,452 +198,Gjirokaster,9,Dropull i Siperm,453 +199,Gjirokaster,9,Pogon,454 +200,Korce,25,Korce,122 +201,Korce,25,Qender Bulgarec,509 +202,Korce,25,Voskop,506 +203,Korce,25,Voskopoje,496 +204,Korce,25,Lekas,497 +205,Korce,25,Vithkuq,498 +206,Korce,25,Mollaj,508 +207,Korce,25,Drenove,507 +208,Korce,35,Maliq,168 +209,Korce,35,Libonik,502 +210,Korce,35,Gore,504 +211,Korce,35,Moglice,505 +212,Korce,35,Vreshtas,501 +213,Korce,35,Pirg,503 +214,Korce,35,Pojan,500 +215,Korce,47,Pustec,499 +216,Korce,23,Erseke,120 +217,Korce,23,Qender Erseke,485 +218,Korce,23,Leskovik - Korce - Kolonje - commune,490 +219,Korce,23,Leskovik - Korce - Kolonje,121 +220,Korce,23,Novosele,489 +221,Korce,23,Barmash,488 +222,Korce,23,Mollas - Korce - Kolonje,486 +223,Korce,23,Clirim,487 +224,Korce,6,Bilisht,336 +225,Korce,6,Qender Bilisht,105 +226,Korce,6,Morave,337 +227,Korce,6,Proger,338 +228,Korce,6,Miras,335 +229,Korce,43,Pogradec,136 +230,Korce,43,Udenisht,701 +231,Korce,43,Bucimas,700 +232,Korce,43,cerrave,706 +233,Korce,43,Dardhas,705 +234,Korce,43,Trebinje,704 +235,Korce,43,Proptisht,702 +236,Korce,43,Velcan,703 +237,Kukes,29,Kukes,125 +238,Kukes,29,Malzi,540 +239,Kukes,29,Bicaj,541 +240,Kukes,29,Ujmisht,542 +241,Kukes,29,Terthore,543 +242,Kukes,29,Shtiqen,544 +243,Kukes,29,Orgjost - Zapod,545 +244,Kukes,29,Shishtavec,546 +245,Kukes,29,Topojan,547 +246,Kukes,29,Bushtrice,548 +247,Kukes,29,Gryk caje,553 +248,Kukes,29,Kalis,552 +249,Kukes,29,Surroj,549 +250,Kukes,29,Arren,550 +251,Kukes,29,Kolsh - Kukes - Kukes,551 +252,Kukes,17,Krume,117 +253,Kukes,17,Fajza,461 +254,Kukes,17,Gjinaj,462 +255,Kukes,17,Golaj,460 +256,Kukes,57,Bajram Curri,145 +257,Kukes,57,Fierze - Kukes - Tropoje,823 +258,Kukes,57,Lekbibaj,822 +259,Kukes,57,Margegaj,824 +260,Kukes,57,Llugaj,826 +261,Kukes,57,Bujan,825 +262,Kukes,57,Bytyc,821 +263,Kukes,57,Tropoje - Kukes - Tropoje,820 +264,Lezhe,31,Lezhe,127 +265,Lezhe,31,Shengjin,572 +266,Lezhe,31,Zejmen,570 +267,Lezhe,31,Shenkoll,571 +268,Lezhe,31,Balldren,574 +269,Lezhe,31,Kallmet,575 +270,Lezhe,31,Blinisht,578 +271,Lezhe,31,Dajc - Lezhe - Lezhe,577 +272,Lezhe,31,Ungrej,576 +273,Lezhe,31,Kolsh - Lezhe - Lezhe,573 +274,Lezhe,39,Rreshen,133 +275,Lezhe,39,Rubik,164 +276,Lezhe,39,Selite,670 +277,Lezhe,39,Kthelle,669 +278,Lezhe,39,Fan,668 +279,Lezhe,39,Orosh,667 +280,Lezhe,39,Kacinar,666 +281,Lezhe,30,Laci,126 +282,Lezhe,30,Mamurras,162 +283,Lezhe,30,Milot,560 +284,Lezhe,30,Fushe Kuqe,562 +285,Shkoder,26,Koplik,130 +286,Shkoder,26,Gruemire,629 +287,Shkoder,26,Kastrat,627 +288,Shkoder,26,Kelmend,626 +289,Shkoder,26,Qender - Shkoder - M.Madhe,625 +290,Shkoder,26,Shkrel,628 +291,Shkoder,53,Shkoder,141 +292,Shkoder,53,Ana e Malit,768 +293,Shkoder,53,Berdice,765 +294,Shkoder,53,Dajc-Bregbune,767 +295,Shkoder,53,Guri i Zi,760 +296,Shkoder,53,Postribe,755 +297,Shkoder,53,Pult,756 +298,Shkoder,53,Rrethinat,769 +299,Shkoder,53,Shale,758 +300,Shkoder,53,Shosh,757 +301,Shkoder,53,Velipoje,766 +302,Shkoder,59,Vau Dejes,157 +303,Shkoder,59,Bushat,764 +304,Shkoder,59,Vig Mnele,761 +305,Shkoder,59,Hajmel,762 +306,Shkoder,59,Temal,770 +307,Shkoder,59,Shllak,759 +308,Shkoder,46,Puke,137 +309,Shkoder,46,Gjegjan,718 +310,Shkoder,46,Rrape,723 +311,Shkoder,46,Qelez,716 +312,Shkoder,46,Qerret,715 +313,Shkoder,14,Fushe Arrez,155 +314,Shkoder,14,Fierze - Shkoder,719 +315,Shkoder,14,Blerim,721 +316,Shkoder,14,Qafe Mali,722 +317,Shkoder,14,Iballe,720 +318,Tirane,56,Tirane,101 +319,Tirane,56,Petrele,795 +320,Tirane,56,Farke,811 +321,Tirane,56,Dajt,800 +322,Tirane,56,Zall Bastar,798 +323,Tirane,56,Berzhite,796 +324,Tirane,56,Krrabe,812 +325,Tirane,56,Baldushk,797 +326,Tirane,56,Shengjergj,799 +327,Tirane,56,Vaqarr,801 +328,Tirane,56,Kashar,809 +329,Tirane,56,Peze,802 +330,Tirane,56,Ndroq,803 +331,Tirane,56,Zall Herr,805 +332,Tirane,19,Kamez,166 +333,Tirane,19,Paskuqan,807 +334,Tirane,61,Vore,165 +335,Tirane,61,Preze,804 +336,Tirane,61,Berxulle,808 +337,Tirane,20,Kavaje,118 +338,Tirane,20,Synej,474 +339,Tirane,20,Luz i Vogel,471 +340,Tirane,20,Golem - Tirane - Kavaje,475 +341,Tirane,20,Helmas,472 +342,Tirane,49,Rrogozhine,119 +343,Tirane,49,Kryevidh,473 +344,Tirane,49,Sinaballaj,476 +345,Tirane,49,Lekaj,470 +346,Tirane,49,Gose,477 +347,Vlore,60,Vlore,146 +348,Vlore,60,Orikum,158 +349,Vlore,60,Qender Vlore,835 +350,Vlore,60,Novosele - Vlore - Vlore,836 +351,Vlore,60,Shushice - Vlore - Vlore,841 +352,Vlore,51,Selenice,159 +353,Vlore,51,Armen,846 +354,Vlore,51,Vllahine,843 +355,Vlore,51,Kote,844 +356,Vlore,51,Sevaster,845 +357,Vlore,51,Brataj,837 +358,Vlore,18,Himare,160 +359,Vlore,18,Lukove,730 +360,Vlore,18,Hore Vranisht,838 +361,Vlore,50,Sarande,138 +362,Vlore,50,Ksamil,736 +363,Vlore,24,Konispol,156 +364,Vlore,24,Xarre,734 +365,Vlore,24,Markat,735 +366,Vlore,13,Livadhja,732 +367,Vlore,13,Dhiver,731 +368,Vlore,13,Aliko,737 +369,Vlore,13,Finiq,326 +370,Vlore,13,Mesopotam,328 +371,Vlore,5,Delvine,104 +372,Vlore,5,Vergo,325 +373,Gjirokaster,100,,11 +374,Kukes,100,,12 +375,Korce,100,,14 +376,Korce,100,,15 +377,Durres,100,,16 +378,Kukes,100,,18 +379,Lezhe,100,,20 +380,Fier,100,,24 +381,Diber,100,,25 +382,Lezhe,100,,26 +383,Gjirokaster,100,,28 +384,Korce,100,,29 +385,Berat,100,,32 +386,Shkoder,100,,33 +387,Gjirokaster,100,,34 +388,Tirane,100,,35 +389,Kukes,100,,36 +390,Vlore,100,,37 +391,Berat,100,,42 +392,Diber,100,,43 +393,Vlore,100,,44 +394,Korce,100,,45 +395,Diber,100,,46 +396,Durres,100,,47 +397,Elbasan,100,,48 +398,Fier,100,,49 diff --git a/quality/tag_code_mapping.csv b/quality/tag_code_mapping.csv index c5ebe02..578211f 100644 --- a/quality/tag_code_mapping.csv +++ b/quality/tag_code_mapping.csv @@ -1,275 +1,275 @@ code,category,parent,child,parent_type,child_type,subnational -EXP_ECON_TOT_EXP_EXE, Spending: Total Expenditures ,Total Expenditures,,total,,False -EXP_ECON_TOT_EXP_FOR_EXE,Spending: Total Expenditures (foreign funded),Total Expenditures(Foreign Funded),,total,,False -EXP_ECON_WAG_BIL_EXE,Spending: Wage bill,Wage bill,Subtotal,econ,,False -EXP_ECON_BAS_WAG_EXE, Spending in basic wages ,Wage bill,Basic Wages,econ,econ_sub,False -EXP_ECON_ALL_EXE, Spending in allowances ,Wage bill,Allowances,econ,econ_sub,False -EXP_ECON_PEN_CON_EXE, Social benefits - (pension contributions) ,Wage bill,Social Benefits (pension contributions),econ,econ_sub,False -EXP_ECON_CAP_EXP_EXE,Spending: Capital Expenditures,Capital expenditures,Subtotal,econ,,False -EXP_ECON_CAP_EXP_FOR_EXE, Spending: Capital Expenditures (foreign spending) ,Capital expenditures,Capital Expenditure (foreign spending),econ,econ_sub,False -EXP_ECON_CAP_MAI_EXE, Spending in capital maintenance ,Capital expenditures,Capital Maintenance,econ,econ_sub,False -EXP_ECON_USE_GOO_SER_EXE,Spending: Use of Goods and services,Goods and services,Subtotal,econ,,False -EXP_ECON_GOO_SER_BAS_SER_EXE, Spending in Goods and services (basic services) ,Goods and services,Basic Services,econ,econ_sub,False -EXP_ECON_GOO_SER_EMP_CON_EXE, Spending in Goods and services (employment contracts) ,Goods and services,Employment Contracts,econ,econ_sub,False -EXP_ECON_REC_MAI_EXE, Spending in recurrent maintenance ,Goods and services,Recurrent Maintenance,econ,econ_sub,False -EXP_ECON_SUB_EXE,Spending in subsidies,Subsidies,Subtotal,econ,,False -EXP_ECON_SUB_PRO_EXE, Spending: Subsidies to production ,Subsidies,Subsidies to Production,econ,econ_sub,False -EXP_ECON_SOC_BEN_EXE,Social benefits,Social benefits,Subtotal,econ,,False -EXP_ECON_SOC_ASS_EXE, Social Assistance ,Social benefits,Social Assistance,econ,econ_sub,False -EXP_ECON_SOC_BEN_PEN_EXE, Pensions ,Social benefits,Pensions,econ,econ_sub,False -EXP_ECON_OTH_SOC_BEN_EXE, Other social benefits ,Social benefits,Other Social Benefits,econ,econ_sub,False -EXP_ECON_OTH_GRA_EXE,Other grants/transfers,Other grants and transfers,Subtotal,econ,,False -EXP_ECON_OTH_EXP_EXE,Other expenses,Other expenses,Subtotal,econ,,False -,,,,,,False -EXP_FUNC_GEN_PUB_SER_EXE,General public services (COFOG 701),General public services,Subtotal,func,,False -EXP_ECON_DEB_REP_EXE,Spending: Debt repayment,,,,,False -EXP_ECON_INT_DEB_EXE,Spending: Interest on debt,Interest on debt,Subtotal,econ,,False -EXP_FUNC_DEF_EXE,Defense (COFOG 702),Defence,Subtotal,func,,False -EXP_FUNC_PUB_ORD_SAF_EXE,Public order and safety (COFOG 703),Public order and safety,Subtotal,func,,False -EXP_FUNC_JUD_EXE, Spending in judiciary ,Judiciary,Subtotal,func_sub,,False -EXP_CROSS_WAG_JUD_EXE, Spending in wages in judiciary ,Judiciary,Wage bill,func_sub,econ,False -EXP_CROSS_BAS_WAG_JUD_EXE, Spending in basic wages in judiciary ,Judiciary,Basic Wages,func_sub,econ_sub,False -EXP_CROSS_ALL_JUD_EXE, Spending in allowances in judiciary ,Judiciary,Allowances,func_sub,econ_sub,False -EXP_FUNC_PUB_SAF_EXE, Spending in public safety ,Public Safety,Subtotal,func_sub,,False -EXP_CROSS_WAG_PUB_SAF_EXE, Spending in wages in public safety ,Public Safety,Wage bill,func_sub,econ,False -EXP_CROSS_BAS_WAG_PUB_SAF_EXE, Spending in basic wages in public safety ,Public Safety,Basic Wages,func_sub,econ_sub,False -EXP_CROSS_ALL_PUB_SAF_EXE, Spending in allowances in public safety ,Public Safety,Allowances,func_sub,econ_sub,False -EXP_FUNC_ECO_REL_EXE,Economic relations (COFOG 704),Economic affairs,Subtotal,func,,False -EXP_FUNC_AGR_EXE, Spending in agriculture ,Agriculture,Subtotal,func_sub,,False -EXP_CROSS_WAG_AGR_EXE, Spending in wages in agriculture ,Agriculture,Wage bill,func_sub,econ,False -EXP_CROSS_BAS_WAG_AGR_EXE, Spending in basic wages in agriculture ,Agriculture,Basic Wages,func_sub,econ_sub,False -EXP_CROSS_ALL_AGR_EXE, Spending in allowances in agriculture ,Agriculture,Allowances,func_sub,econ_sub,False -EXP_CROSS_CAP_EXP_AGR_EXE, Spending: Capital expenditures in agriculture ,Agriculture,Capital expenditures,func_sub,econ,False -EXP_FUNC_AGR_FOR_EXE, Spending in agriculture (foreign) ,Agriculture,Total Expenditures(Foreign Funded),func_sub,total,False -EXP_CROSS_SUB_AGR_EXE,Spending in subsidies in agriculture,Agriculture,Subsidies,func_sub,econ,False -EXP_CROSS_REC_MAI_AGR_EXE,Spending in recurrent mainternance in agriculture,Agriculture,Recurrent Maintenance,func_sub,econ_sub,False -EXP_FUNC_IRR_EXE, Spending in Irrigation ,,,,,False -EXP_CROSS_CAP_EXP_AGR_FOR_EXE,Spending: Capital expenditures in agriculture (foreign),,,,,False -EXP_CROSS_CAP_EXP_IRR_EXE,Spending: Capital expenditures in irrigation,,,,,False -EXP_CROSS_CAP_EXP_IRR_FOR_EXE,Spending: Capital expenditures in irrigation (foreign funded),,,,,False -EXP_CROSS_CAP_EXP_IRR_DOM_EXE,Spending: Capital expenditures in irrigation (domestic funded),,,,,False -EXP_CROSS_SUB_IRR_EXE,Spending in subsidies in irrigation,,,,,False -EXP_CROSS_WAG_IRR_EXE,Spending in wages in irrigation,,,,,False -EXP_CROSS_CAP_MAI_IRR_EXE,Spending in capital maintenance in irrigation,,,,,False -EXP_CROSS_REC_MAI_IRR_EXE,Spending in recurrent maintenance in irrigation,,,,,False -EXP_FUNC_IRR_FOR_EXE,Spending in irrigation (foreign),,,,,False -EXP_FUNC_TRA_EXE, Spending in transport ,Transport,Subtotal,func_sub,,False -EXP_FUNC_TRA_FOR_EXE, Spending in transport (foreign) ,Transport,Total Expenditures(Foreign Funded),func_sub,total,False -EXP_CROSS_WAG_TRA_EXE, Spending in wages in transport ,Transport,Wage bill,func_sub,econ,False -EXP_CROSS_CAP_EXP_TRA_EXE, Spending: Capital expenditures in transport ,Transport,Capital expenditures,func_sub,econ,False -EXP_CROSS_CAP_EXP_TRA_FOR_EXE, Spending: Capital expenditures in transport (foreign) ,Transport,Capital Expenditure (foreign spending),func_sub,econ_sub,False -EXP_CROSS_CAP_TRA_SOE_TRA_EXE, Capital Transfers to SOEs in transport ,,,,,False -EXP_CROSS_CUR_TRA_SOE_TRA_EXE, Current Transfers to SOEs in transport ,,,,,False -EXP_CROSS_REC_MAI_TRA_EXE, Spending in recurrent maintenance in transport ,Transport,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_CAP_MAI_TRA_EXE, Spending in capital maintenance in transport ,Transport,Capital Maintenance,func_sub,econ_sub,False -EXP_CROSS_SUB_TRA_EXE, Spending in subsidies in transport ,Transport,Subsidies,func_sub,econ,False -EXP_CROSS_SUB_FIR_TRA_EXE, Spending in subsidies to firms in transport ,,,,,False -EXP_CROSS_SUB_IND_TRA_EXE, Spending in subsidies to individuals in transport ,,,,,False -EXP_FUNC_ROA_EXE, Spending in roads ,Roads,Subtotal,func_sub,,False -EXP_CROSS_WAG_ROA_EXE, Spending in wages in roads ,Roads,Wage bill,func_sub,econ,False -EXP_CROSS_BAS_WAG_ROA_EXE, Spending in basic wages in roads ,Roads,Basic Wages,func_sub,econ_sub,False -EXP_CROSS_ALL_ROA_EXE, Spending in allowances in roads ,Roads,Allowances,func_sub,econ_sub,False -EXP_CROSS_CAP_EXP_ROA_EXE, Spending: Capital expenditures in roads ,Roads,Capital expenditures,func_sub,econ,False -EXP_CROSS_CAP_EXP_ROA_FOR_EXE, Spending: Capital expenditures in roads (foreign funded) ,Roads,Capital Expenditure (foreign spending),func_sub,econ_sub,False -EXP_CROSS_CAP_EXP_ROA_DOM_EXE, Spending: Capital expenditures in roads (domestic funded) ,,,,,False -EXP_CROSS_CAP_TRA_SOE_ROA_EXE, Capital Transfers to SOEs in roads ,,,,,False -EXP_CROSS_CUR_TRA_SOE_ROA_EXE, Current Transfers to SOEs in roads ,,,,,False -EXP_CROSS_REC_MAI_ROA_EXE, Spending in recurrent maintenance in roads ,Roads,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_CAP_MAI_ROA_EXE, Spending in capital maintenance in roads ,Roads,Capital Maintenance,func_sub,econ_sub,False -EXP_CROSS_SUB_ROA_EXE, Spending in subsidies in roads ,Roads,Subsidies,func_sub,econ,False -EXP_CROSS_SUB_FIR_ROA_EXE, Spending in subsidies to firms in roads ,,,,,False -EXP_CROSS_SUB_IND_ROA_EXE, Spending in subsidies to individuals in roads ,,,,,False -EXP_FUNC_RAI_EXE, Spending in railroads ,Railroads,Subtotal,func_sub,,False -EXP_CROSS_WAG_RAI_EXE, Spending in wages in railroad ,Railroads,Wage bill,func_sub,econ,False -EXP_CROSS_CAP_EXP_RAI_EXE, Spending: Capital expenditures in railroad ,Railroads,Capital expenditures,func_sub,econ,False -EXP_CROSS_CAP_EXP_RAI_FOR_EXE, Spending: Capital expenditures in railroad (foreign funded) ,Railroads,Capital Expenditure (foreign spending),func_sub,econ_sub,False -EXP_CROSS_CAP_EXP_RAI_DOM_EXE, Spending: Capital expenditures in railroad (domestic funded) ,,,,,False -EXP_CROSS_CAP_TRA_SOE_RAI_EXE, Capital Transfers to SOEs in railroads ,,,,,False -EXP_CROSS_CUR_TRA_SOE_RAI_EXE, Current Transfers to SOEs in railroads ,,,,,False -EXP_CROSS_REC_MAI_RAI_EXE, Spending in recurrent maintenance in railroads ,Railroads,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_CAP_MAI_RAI_EXE, Spending in capital maintenance in railroads ,Railroads,Capital Maintenance,func_sub,econ_sub,False -EXP_CROSS_SUB_RAI_EXE, Spending in subsidies in railroads ,Railroads,Subsidies,func_sub,econ,False -EXP_CROSS_SUB_FIR_RAI_EXE, Spending in subsidies to firms in railroads ,,,,,False -EXP_CROSS_SUB_IND_RAI_EXE, Spending in subsidies to individuals in railroads ,,,,,False -EXP_FUNC_WAT_TRA_EXE, Spending in water transport ,Water Transport,Subtotal,func_sub,,False -EXP_CROSS_WAG_WAT_TRA_EXE, Spending in wages in water transport ,Water Transport,Wage bill,func_sub,econ,False -EXP_CROSS_CAP_EXP_WAT_TRA_EXE, Spending: Capital expenditures in water transport ,Water Transport,Capital expenditures,func_sub,econ,False -EXP_CROSS_CAP_EXP_WAT_TRA_FOR_EXE, Spending: Capital expenditures in water transport (foreign funded) ,Water Transport,Capital Expenditure (foreign spending),func_sub,econ_sub,False -EXP_CROSS_CAP_EXP_WAT_TRA_DOM_EXE, Spending: Capital expenditures in water transport (domestic funded) ,,,func_sub,,False -EXP_CROSS_CAP_TRA_SOE_WAT_TRA_EXE, Capital Transfers to SOEs in water transport ,,,,,False -EXP_CROSS_CUR_TRA_SOE_WAT_TRA_EXE, Current Transfers to SOEs in water transport ,,,,,False -EXP_CROSS_REC_MAI_WAT_TRA_EXE, Spending in recurrent maintenance in water transport ,Water Transport,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_CAP_MAI_WAT_TRA_EXE, Spending in capital maintenance in water transport ,Water Transport,Capital Maintenance,func_sub,econ_sub,False -EXP_CROSS_SUB_WAT_TRA_EXE, Spending in subsidies in water transport ,Water Transport,Subsidies,func_sub,econ,False -EXP_CROSS_SUB_FIR_WAT_TRA_EXE, Spending in subsidies to firms in water transport ,,,,,False -EXP_CROSS_SUB_IND_WAT_TRA_EXE, Spending in subsidies to individuals in water transport ,,,,,False -EXP_FUNC_AIR_TRA_EXE, Spending in air transport ,Air Transport,Subtotal,func_sub,,False -EXP_CROSS_WAG_AIR_TRA_EXE, Spending in wages in air transport ,Air Transport,Wage bill,func_sub,econ,False -EXP_CROSS_CAP_EXP_AIR_TRA_EXE, Spending: Capital expenditures in air transport ,Air Transport,Capital expenditures,func_sub,econ,False -EXP_CROSS_CAP_EXP_AIR_TRA_FOR_EXE, Spending: Capital expenditures in air transport (foreign funded) ,Air Transport,Capital Expenditure (foreign spending),func_sub,econ_sub,False -EXP_CROSS_CAP_EXP_AIR_TRA_DOM_EXE, Spending: Capital expenditures in air transport (domestic funded) ,,,,,False -EXP_CROSS_CAP_TRA_SOE_AIR_TRA_EXE, Capital Transfers to SOEs in air transport ,,,,,False -EXP_CROSS_CUR_TRA_SOE_AIR_TRA_EXE, Current Transfers to SOEs in air transport ,,,,,False -EXP_CROSS_REC_MAI_AIR_TRA_EXE, Spending in recurrent maintenance in air transport ,Air Transport,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_CAP_MAI_AIR_TRA_EXE, Spending in capital maintenance in air transport ,Air Transport,Capital Maintenance,func_sub,econ_sub,False -EXP_CROSS_SUB_AIR_TRA_EXE, Spending in subsidies in air transport ,Air Transport,Subsidies,func_sub,econ,False -EXP_CROSS_SUB_FIR_AIR_TRA_EXE, Spending in subsidies to firms in air transport ,,,,,False -EXP_CROSS_SUB_IND_AIR_TRA_EXE, Spending in subsidies to individuals in air transport ,,,,,False -EXP_FUNC_ENE_EXE, Spending in energy ,Energy,Subtotal,func_sub,,False -EXP_FUNC_ENE_FOR_EXE, Spending in energy (foreign) ,Energy,Total Expenditures(Foreign Funded),func_sub,total,False -EXP_CROSS_WAG_ENE_EXE, Spending in wages in energy ,Energy,Wage bill,func_sub,econ,False -EXP_CROSS_CAP_EXP_ENE_EXE, Spending: Capital expenditures in energy ,Energy,Capital expenditures,func_sub,econ,False -EXP_CROSS_CAP_EXP_ENE_FOR_EXE, Spending: Capital expenditures in energy (foreign funded) ,Energy,Capital Expenditure (foreign spending),func_sub,econ_sub,False -EXP_CROSS_CAP_EXP_ENE_DOM_EXE, Spending: Capital expenditures in energy (domestic funded) ,,,,,False -EXP_CROSS_CAP_TRA_SOE_ENE_EXE, Capital Transfers to SOEs in energy ,,,,,False -EXP_CROSS_CUR_TRA_SOE_ENE_EXE, Current Transfers to SOEs in energy ,,,,,False -EXP_CROSS_REC_MAI_ENE_EXE, Spending in recurrent maintenance in energy ,Energy,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_CAP_MAI_ENE_EXE, Spending in capital maintenance in energy ,Energy,Capital Maintenance,func_sub,econ_sub,False -EXP_CROSS_SUB_ENE_EXE, Spending in subsidies in energy ,Energy,Subsidies,func_sub,econ,False -EXP_CROSS_SUB_FIR_ENE_EXE, Spending in subsidies to firms in energy ,,,,,False -EXP_CROSS_SUB_IND_ENE_EXE, Spending in subsidies to individuals in energy ,,,,,False -EXP_FUNC_ENE_POW_EXE, Spending in energy (power) ,,,,,False -EXP_CROSS_WAG_ENE_POW_EXE, Spending in wages in energy (power) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_POW_EXE, Spending: Capital expenditures in energy (power) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_POW_FOR_EXE, Spending: Capital expenditures in energy (power) (foreign funded) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_POW_DOM_EXE, Spending: Capital expenditures in energy (power) (domestic funded) ,,,,,False -EXP_CROSS_CAP_TRA_SOE_ENE_POW_EXE, Capital Transfers to SOEs in energy (power) ,,,,,False -EXP_CROSS_CUR_TRA_SOE_ENE_POW_EXE, Current Transfers to SOEs in energy (power) ,,,,,False -EXP_CROSS_REC_MAI_ENE_POW_EXE, Spending in recurrent maintenance in energy (power) ,,,,,False -EXP_CROSS_CAP_MAI_ENE_POW_EXE, Spending in capital maintenance in energy (power) ,,,,,False -EXP_CROSS_SUB_ENE_POW_EXE, Spending in subsidies in energy (power) ,,,,,False -EXP_CROSS_SUB_FIR_ENE_POW_EXE, Spending in subsidies to firms in energy (power) ,,,,,False -EXP_CROSS_SUB_IND_ENE_POW_EXE, Spending in subsidies to individuals in energy (power) ,,,,,False -EXP_FUNC_ENE_OIL_EXE, Spending in energy (oil & gas) ,,,,,False -EXP_CROSS_WAG_ENE_OIL_GAS_EXE, Spending in wages in energy (oil/gas) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_OIL_GAS_EXE, Spending: Capital expenditures in energy (oil & gas) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_OIL_GAS_FOR_EXE, Spending: Capital expenditures in energy (oil & gas) (foreign funded) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_OIL_GAS_DOM_EXE, Spending: Capital expenditures in energy (oil & gas) (domestic funded) ,,,,,False -EXP_CROSS_CAP_TRA_SOE_ENE_OIL_GAS_EXE, Capital Transfers to SOEs in energy (oil & gas) ,,,,,False -EXP_CROSS_CUR_TRA_SOE_ENE_OIL_GAS_EXE, Current Transfers to SOEs in energy (oil & gas) ,,,,,False -EXP_CROSS_REC_MAI_ENE_OIL_GAS_EXE, Spending in recurrent maintenance in energy (oil & gas) ,,,,,False -EXP_CROSS_CAP_MAI_ENE_OIL_GAS_EXE, Spending in capital maintenance in energy (oil & gas) ,,,,,False -EXP_CROSS_SUB_ENE_OIL_GAS_EXE, Spending in subsidies in energy (oil & gas) ,,,,,False -EXP_CROSS_SUB_FIR_ENE_OIL_GAS_EXE, Spending in subsidies to firms in energy (oil & gas) ,,,,,False -EXP_CROSS_SUB_IND_ENE_OIL_GAS_EXE, Spending in subsidies to individuals in energy (oil & gas) ,,,,,False -EXP_FUNC_ENE_HEA_EXE, Spending in energy (heating) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_HEA_EXE, Spending: Capital expenditures in energy (heating) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_HEA_FOR_EXE, Spending: Capital expenditures in energy (heating) (foreign funded) ,,,,,False -EXP_CROSS_CAP_EXP_ENE_HEA_DOM_EXE, Spending: Capital expenditures in energy (heating) (domestic funded) ,,,,,False -EXP_CROSS_CAP_TRA_SOE_ENE_HEA_EXE, Capital Transfers to SOEs in energy (heating) ,,,,,False -EXP_CROSS_CUR_TRA_SOE_ENE_HEA_EXE, Current Transfers to SOEs in energy (heating) ,,,,,False -EXP_CROSS_REC_MAI_ENE_HEA_EXE, Spending in recurrent maintenance in energy (heating) ,,,,,False -EXP_CROSS_CAP_MAI_ENE_HEA_EXE, Spending in capital maintenance in energy (heating) ,,,,,False -EXP_CROSS_SUB_ENE_HEA_EXE, Spending in subsidies in energy (heating) ,,,,,False -EXP_CROSS_SUB_FIR_ENE_HEA_EXE, Spending in subsidies to firms in energy (heating) ,,,,,False -EXP_CROSS_SUB_IND_ENE_HEA_EXE, Spending in subsidies to individuals in energy (heating) ,,,,,False -EXP_FUNC_HYD_EXE,Spending in hydropower,,,,,False -EXP_CROSS_CAP_EXP_HYD_EXE, Spending: Capital expenditures in hydropower ,,,,,False -EXP_CROSS_CAP_EXP_HYD_FOR_EXE, Spending: Capital expenditures in hydropower (foreign funded) ,,,,,False -EXP_CROSS_CAP_EXP_HYD_DOM_EXE, Spending: Capital expenditures in hydropower (domestic funded) ,,,,,False -EXP_CROSS_SUB_HYD_EXE, Spending in subsidies in hydropower ,,,,,False -EXP_CROSS_WAG_HYD_EXE, Spending in wages in hydropower ,,,,,False -EXP_CROSS_CAP_MAI_HYD_EXE, Spending in capital maintenance in hydropower ,,,,,False -EXP_CROSS_REC_MAI_HYD_EXE, Spending in recurrent maintenance in hydropower ,,,,,False -EXP_FUNC_HYD_FOR_EXE,Spending in hydropower (foreign) ,,,,,False -EXP_FUNC_TEL_EXE, Spending in telecoms ,Economic affairs,Telecom,func,func_sub,False -EXP_CROSS_CAP_EXP_TEL_EXE, Spending: Capital expenditures in telecoms ,Economic affairs,Telecom,func,func_sub,False -EXP_CROSS_CAP_EXP_TEL_FOR_EXE, Spending: Capital expenditures in telecoms (foreign funded) ,Economic affairs,Telecom,func,func_sub,False -EXP_CROSS_CAP_EXP_TEL_DOM_EXE, Spending: Capital expenditures in telecoms (domestic funded) ,,,,,False -EXP_FUNC_ENV_PRO_EXE,Environment Protection (COFOG 705),Environmental protection,Subtotal,func,,False -EXP_FUNC_WAS_MAN_EXE, Waste Management ,,,,,False -EXP_FUNC_WAS_WAT_MAN_EXE, Waste Water Management ,,,,,False -EXP_FUNC_POL_ABA_EXE, Pollution Abatement ,,,,,False -EXP_FUNC_PRO_BIO_LAN_EXE, Protection Of Biodiversity And Landscape ,,,,,False -EXP_FUNC_R&D_ENV_PRO_EXE, R&D Environmental Protection ,,,,,False -EXP_FUNC_ENV_PRO_NEC_EXE, Environmental Protection N.E.C ,,,,,False -EXP_FUNC_FLO_PRO_EXE, Flood protection spending ,,,,,False -EXP_FUNC_OTH_CLI_RES_EXE, Other Climate resilience expenditures ,,,,,False -EXP_FUNC_HOU_EXE,Housing (COFOG 706),Housing and community amenities,Subtotal,func,,False -EXP_FUNC_WAT_SAN_EXE, Spending in water and sanitation ,Water and Sanitation,Subtotal,func_sub,,False -EXP_CROSS_CAP_EXP_WAT_SAN_EXE, Spending: Capital expenditures in water and sanitation ,Water and Sanitation,Capital expenditures,func_sub,econ,False -EXP_CROSS_CAP_EXP_WAT_SAN_FOR_EXE, Spending: Capital expenditures in water and sanitation (foreign funded) ,Water and Sanitation,Capital Expenditure (foreign spending),func_sub,econ_sub,False -EXP_CROSS_CAP_EXP_WAT_SAN_DOM_EXE, Spending: Capital expenditures in water and sanitation (domestic funded) ,,,,,False -EXP_CROSS_SUB_WAT_SAN_EXE, Spending in subsidies in water and sanitation ,Water and Sanitation,Subsidies,func_sub,econ,False -EXP_CROSS_WAG_WAT_SAN_EXE, Spending in wages in water and sanitation ,Water and Sanitation,Wage bill,func_sub,econ,False -EXP_CROSS_CAP_MAI_WAT_SAN_EXE, Spending in capital maintenance in water and sanitation ,Water and Sanitation,Capital Maintenance,func_sub,econ_sub,False -EXP_CROSS_REC_MAI_WAT_SAN_EXE, Spending in recurrent maintenance in water and sanitation ,Water and Sanitation,Recurrent Maintenance,func_sub,econ_sub,False -EXP_FUNC_WAT_SAN_FOR_EXE, Spending in water and sanitation (foreign) ,Water and Sanitation,,,,False -EXP_FUNC_HEA_EXE, Health (COFOG 707) ,Health,Subtotal,func,,False -EXP_CROSS_WAG_HEA_EXE, Spending in wages in health ,Health,Wage bill,func,econ,False -EXP_CROSS_BAS_WAG_HEA_EXE, Spending in basic wages in health ,Health,Basic Wages,func,econ_sub,False -EXP_CROSS_ALL_HEA_EXE, Spending in allowances in health ,Health,Allowances,func,econ_sub,False -EXP_CROSS_CAP_EXP_HEA_EXE, Spending: Capital expenditures in health ,Health,Capital expenditures,func,econ,False -EXP_CROSS_GOO_SER_HEA_EXE, Spending in Goods and services in health ,Health,Goods and services,func,econ,False -EXP_FUNC_IMM_EXE, Spending in immunization ,,,,,False -EXP_FUNC_IMM_FOR_EXE, Spending in immunization (foreign funded) ,,,,,False -EXP_FUNC_HEA_FOR_EXE, Spending in health (foreign) ,,,,,False -EXP_CROSS_CAP_EXP_HEA_FOR_EXE, Spending: Capital expenditures in health (foreign) ,,,,,False -EXP_CROSS_GOO_SER_HEA_FOR_EXE, Spending in Goods and services in health (foreign) ,,,,,False -EXP_FUNC_PRI_HEA_EXE, Spending in primary/secondary health ,Health,Primary and Secondary Health,func,func_sub,False -EXP_FUNC_TER_HEA_EXE, Spending in tertiary/quaternary health ,Health,Tertiary and Quaternary Health,func,func_sub,False -EXP_CROSS_GOO_SER_EMP_CON_HEA_EXE, Spending in Goods and services (employment contracts) in health ,Health,Employment Contracts,func,econ_sub,False -EXP_CROSS_GOO_SER_BAS_SER_HEA_EXE, Spending in Goods and services (basic services) in health ,Health,Basic Services,func,econ_sub,False -EXP_CROSS_SUB_HEA_EXE,Spending in subsidies in health,Health,Subsidies,func,econ,False -EXP_CROSS_REC_MAI_HEA_EXE,Spending in recurrent mainternance in health,Health,Recurrent Maintenance,func,econ_sub,False -EXP_FUNC_REV_CUS_EXC_EXE," Recreation, culture and religion (COFOG 708) ","Recreation, culture and religion",Subtotal,func,,False -EXP_FUNC_EDU_EXE, Education (COFOG 709) ,Education,Subtotal,func,,False -EXP_CROSS_WAG_EDU_EXE, Spending in wages in education ,Education,Wage bill,func,econ,False -EXP_CROSS_BAS_WAG_EDU_EXE, Spending in basic wages in education ,Education,Basic Wages,func,econ_sub,False -EXP_CROSS_ALL_EDU_EXE, Spending in allowances in education ,Education,Allowances,func,econ_sub,False -EXP_CROSS_CAP_EXP_EDU_EXE, Spending: Capital expenditures in education ,Education,Capital expenditures,func,econ,False -EXP_CROSS_GOO_SER_EDU_EXE, Spending in Goods and services in education ,Education,Goods and services,func,econ,False -EXP_FUNC_PRI_EDU_EXE, Spending in primary education ,Education,Primary Education,func,func_sub,False -EXP_CROSS_WAG_PRI_EDU_EXE, Spending in wages in primary education ,Primary Education,Wage bill,func_sub,econ,False -EXP_FUNC_SEC_EDU_EXE, Spending in secondary education ,Education,Secondary Education,func,func_sub,False -EXP_CROSS_WAG_SEC_EDU_EXE, Spending in wages in secondary education ,Secondary Education,Wage bill,func_sub,econ,False -EXP_FUNC_PRI_SEC_EDU_EXE, Spending in primary and secondary education ,,,,,False -EXP_CROSS_WAG_PRI_SEC_EDU_EXE, Spending in wages in primary and secondary education ,,,,,False -EXP_FUNC_TER_EDU_EXE, Spending in tertiary education ,Education,Tertiary Education,func,func_sub,False -EXP_CROSS_WAG_TER_EDU_EXE, Spending in wages in tertiary education ,Tertiary Education,Basic Wages,func_sub,econ,False -EXP_FUNC_EDU_FOR_EXE, Spending in education (foreign) ,,,,,False -EXP_CROSS_CAP_EXP_EDU_FOR_EXE, Spending: Capital expenditures in education (foreign) ,,,,,False -EXP_CROSS_GOO_SER_EDU_FOR_EXE, Spending in Goods and services in education (foreign) ,,,,,False -EXP_CROSS_GOO_SER_EMP_CON_EDU_EXE,Spending in Goods and services (employment contracts) in education,Education,Employment Contracts,func,econ_sub,False -EXP_CROSS_GOO_SER_BAS_SER_EDU_EXE,Spending in Goods and services (basic services) in education,Education,Basic Services,func,econ_sub,False -EXP_CROSS_SUB_EDU_EXE,Spending in subsidies in education,Education,Subsidies,func,econ,False -EXP_CROSS_REC_MAI_EDU_EXE,Spending in recurrent mainternance in education,Education,Recurrent Maintenance,func,econ_sub,False -EXP_FUNC_SOC_PRO_EXE, Social Protection (COFOG 710) ,Social protection,Subtotal,func,,False -EXP_ECON_SBN_TOT_SPE_EXE, Subnational: Total spending ,Subnational Total,Subtotal,total,,False -EXP_ECON_SBN_TOT_TRA_EXE,Subnational: Total transfers,,,,,False -EXP_CROSS_SBN_TRA_EDU_EXE, Subnational: transfers in education ,Education,Subtotal,func,,False -EXP_CROSS_SBN_TRA_HEA_EXE, Subnational: transfers in health ,Health,Subtotal,func,,False -EXP_CROSS_SBN_TRA_AGR_EXE,Subnational: Total transfers,Agriculture,Subtotal,func_sub,,False -EXP_CROSS_SBN_TRA_ROA_EXE, Subnational: transfers in roads ,Roads,Subtotal,func_sub,,False -EXP_CROSS_SBN_TRA_ENE_EXE, Subnational: transfers in energy ,Energy,Subtotal,func_sub,,False -EXP_CROSS_SBN_TRA_WAT_SAN_EXE, Subnational: transfers in water and sanitation ,Water and Sanitation,Subtotal,func_sub,,False -EXP_ECON_SBN_EAR_TRA_EXE, Subnational: Earmarked transfers ,,,,,False -EXP_ECON_SBN_DIS_TRA_EXE, Subnational: Discretionary transfers ,,,,,False -EXP_ECON_SBN_REC_SPE_EXE, Subnational: Recurrent spending ,,,,,False -EXP_ECON_SBN_CAP_SPE_EXE, Subnational: Capital spending ,,,,,False -EXP_FUNC_SBN_EDU_EXE, Subnational: Spending in education ,Education,Subtotal,func,,False -EXP_CROSS_SBN_CAP_EDU_EXE, Subnational: Capital Spending in education ,Education,Capital expenditures,func,econ,False -EXP_FUNC_SBN_HEA_EXE, Subnational: Spending in health ,Health,Subtotal,func,,False -EXP_CROSS_SBN_CAP_HEA_EXE, Subnational: Capital Spending in health ,Health,Capital expenditures,func,econ,False -EXP_FUNC_SBN_AGR_EXE, Subnational: Spending in agriculture ,Agriculture,Subtotal,func_sub,,False -EXP_CROSS_SBN_CAP_EXP_ROA_EXE, Subnational: Capital expenditures in roads ,Roads,Capital expenditures,func_sub,econ,False -EXP_CROSS_SBN_CAP_EXP_ENE_EXE, Subnational: Capital expenditures in energy ,Energy,Capital expenditures,func_sub,econ,False -EXP_CROSS_SBN_CAP_EXP_WAT_SAN_EXE, Subnational: Capital expenditures in water and sanitation ,Water and Sanitation,Capital expenditures,func_sub,econ,False -EXP_CROSS_SBN_REC_EXP_ROA_EXE, Subnational: Recurrent expenditures in roads ,Roads,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_SBN_REC_EXP_ENE_EXE, Subnational: Recurrent expenditures in energy ,Energy,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_SBN_REC_EXP_WAT_SAN_EXE, Subnational: Recurrent expenditures in water and sanitation ,Water and Sanitation,Recurrent Maintenance,func_sub,econ_sub,False -EXP_CROSS_SBN_CAP_AGR_EXE, Subnational: Capital Spending in agriculture ,Agriculture,Capital expenditures,func_sub,econ,False -EXP_FUNC_SBN_IRR_EXE, Subnational: Spending in irrigation ,,,,,False -EXP_FUNC_SBN_HYD_EXE, Subnational: Spending in hydropower ,,,,,False -EXP_CROSS_SBN_IRR_REC_EXE, Subnational: Spending in irrigation (recurrent) ,,,,,False -EXP_CROSS_SBN_HYD_REC_EXE, Subnational: Spending in hydropower (recurrent) ,,,,,False -EXP_CROSS_SBN_IRR_CAP_EXE, Subnational: Spending in irrigation (capital) ,,,,,False -EXP_CROSS_SBN_HYD_CAP_EXE, Subnational: Spending in hydropower (capital) ,,,,,False -EXP_ECON_OTH_MED_RIG_EXP_EXE,Other medium rigidity expenditures,,,,,False -EXP_ECON_OTH_HIG_RIG_EXE,Other high rigid expenditures,,,,,False -EXP_ECON_COR_LOW_RIG_EXE,Correction - low rigidity,,,,,False -EXP_ECON_COR_MED_RIG_EXE,Correction - medium rigidity,,,,,False -EXP_ECON_COR_HIG_RIG_EXE,Correction - high rigidity,,,,,False -EXP_ECON_HIG_RIG_EXE,High Rigidity spending,,,,,False -EXP_ECON_MED_RIG_EXE,Medium Rigidity spending,,,,,False -EXP_ECON_LOW_RIG_EXE,Low Rigidity spending,,,,,False +EXP_ECON_TOT_EXP_EXE, Spending: Total Expenditures ,Total Expenditures,,total,,FALSE +EXP_ECON_TOT_EXP_FOR_EXE,Spending: Total Expenditures (foreign funded),Total Expenditures(Foreign Funded),,total,,FALSE +EXP_ECON_WAG_BIL_EXE,Spending: Wage bill,Wage bill,Subtotal,econ,,FALSE +EXP_ECON_BAS_WAG_EXE, Spending in basic wages ,Wage bill,Basic Wages,econ,econ_sub,FALSE +EXP_ECON_ALL_EXE, Spending in allowances ,Wage bill,Allowances,econ,econ_sub,FALSE +EXP_ECON_PEN_CON_EXE, Social benefits - (pension contributions) ,Wage bill,Social Benefits (pension contributions),econ,econ_sub,FALSE +EXP_ECON_CAP_EXP_EXE,Spending: Capital Expenditures,Capital expenditures,Subtotal,econ,,FALSE +EXP_ECON_CAP_EXP_FOR_EXE, Spending: Capital Expenditures (foreign spending) ,Capital expenditures,Capital Expenditure (foreign spending),econ,econ_sub,FALSE +EXP_ECON_CAP_MAI_EXE, Spending in capital maintenance ,Capital expenditures,Capital Maintenance,econ,econ_sub,FALSE +EXP_ECON_USE_GOO_SER_EXE,Spending: Use of Goods and services,Goods and services,Subtotal,econ,,FALSE +EXP_ECON_GOO_SER_BAS_SER_EXE, Spending in Goods and services (basic services) ,Goods and services,Basic Services,econ,econ_sub,FALSE +EXP_ECON_GOO_SER_EMP_CON_EXE, Spending in Goods and services (employment contracts) ,Goods and services,Employment Contracts,econ,econ_sub,FALSE +EXP_ECON_REC_MAI_EXE, Spending in recurrent maintenance ,Goods and services,Recurrent Maintenance,econ,econ_sub,FALSE +EXP_ECON_SUB_EXE,Spending in subsidies,Subsidies,Subtotal,econ,,FALSE +EXP_ECON_SUB_PRO_EXE, Spending: Subsidies to production ,Subsidies,Subsidies to Production,econ,econ_sub,FALSE +EXP_ECON_SOC_BEN_EXE,Social benefits,Social benefits,Subtotal,econ,,FALSE +EXP_ECON_SOC_ASS_EXE, Social Assistance ,Social benefits,Social Assistance,econ,econ_sub,FALSE +EXP_ECON_SOC_BEN_PEN_EXE, Pensions ,Social benefits,Pensions,econ,econ_sub,FALSE +EXP_ECON_OTH_SOC_BEN_EXE, Other social benefits ,Social benefits,Other Social Benefits,econ,econ_sub,FALSE +EXP_ECON_OTH_GRA_EXE,Other grants/transfers,Other grants and transfers,Subtotal,econ,,FALSE +EXP_ECON_OTH_EXP_EXE,Other expenses,Other expenses,Subtotal,econ,,FALSE +,,,,,,FALSE +EXP_FUNC_GEN_PUB_SER_EXE,General public services (COFOG 701),General public services,Subtotal,func,,FALSE +EXP_ECON_DEB_REP_EXE,Spending: Debt repayment,,,,,FALSE +EXP_ECON_INT_DEB_EXE,Spending: Interest on debt,Interest on debt,Subtotal,econ,,FALSE +EXP_FUNC_DEF_EXE,Defense (COFOG 702),Defence,Subtotal,func,,FALSE +EXP_FUNC_PUB_ORD_SAF_EXE,Public order and safety (COFOG 703),Public order and safety,Subtotal,func,,FALSE +EXP_FUNC_JUD_EXE, Spending in judiciary ,Judiciary,Subtotal,func_sub,,FALSE +EXP_CROSS_WAG_JUD_EXE, Spending in wages in judiciary ,Judiciary,Wage bill,func_sub,econ,FALSE +EXP_CROSS_BAS_WAG_JUD_EXE, Spending in basic wages in judiciary ,Judiciary,Basic Wages,func_sub,econ_sub,FALSE +EXP_CROSS_ALL_JUD_EXE, Spending in allowances in judiciary ,Judiciary,Allowances,func_sub,econ_sub,FALSE +EXP_FUNC_PUB_SAF_EXE, Spending in public safety ,Public Safety,Subtotal,func_sub,,FALSE +EXP_CROSS_WAG_PUB_SAF_EXE, Spending in wages in public safety ,Public Safety,Wage bill,func_sub,econ,FALSE +EXP_CROSS_BAS_WAG_PUB_SAF_EXE, Spending in basic wages in public safety ,Public Safety,Basic Wages,func_sub,econ_sub,FALSE +EXP_CROSS_ALL_PUB_SAF_EXE, Spending in allowances in public safety ,Public Safety,Allowances,func_sub,econ_sub,FALSE +EXP_FUNC_ECO_REL_EXE,Economic relations (COFOG 704),Economic affairs,Subtotal,func,,FALSE +EXP_FUNC_AGR_EXE, Spending in agriculture ,Agriculture,Subtotal,func_sub,,FALSE +EXP_CROSS_WAG_AGR_EXE, Spending in wages in agriculture ,Agriculture,Wage bill,func_sub,econ,FALSE +EXP_CROSS_BAS_WAG_AGR_EXE, Spending in basic wages in agriculture ,Agriculture,Basic Wages,func_sub,econ_sub,FALSE +EXP_CROSS_ALL_AGR_EXE, Spending in allowances in agriculture ,Agriculture,Allowances,func_sub,econ_sub,FALSE +EXP_CROSS_CAP_EXP_AGR_EXE, Spending: Capital expenditures in agriculture ,Agriculture,Capital expenditures,func_sub,econ,FALSE +EXP_FUNC_AGR_FOR_EXE, Spending in agriculture (foreign) ,Agriculture,Total Expenditures(Foreign Funded),func_sub,total,FALSE +EXP_CROSS_SUB_AGR_EXE,Spending in subsidies in agriculture,Agriculture,Subsidies,func_sub,econ,FALSE +EXP_CROSS_REC_MAI_AGR_EXE,Spending in recurrent mainternance in agriculture,Agriculture,Recurrent Maintenance,func_sub,econ_sub,FALSE +EXP_FUNC_IRR_EXE, Spending in Irrigation ,,,,,FALSE +EXP_CROSS_CAP_EXP_AGR_FOR_EXE,Spending: Capital expenditures in agriculture (foreign),,,,,FALSE +EXP_CROSS_CAP_EXP_IRR_EXE,Spending: Capital expenditures in irrigation,,,,,FALSE +EXP_CROSS_CAP_EXP_IRR_FOR_EXE,Spending: Capital expenditures in irrigation (foreign funded),,,,,FALSE +EXP_CROSS_CAP_EXP_IRR_DOM_EXE,Spending: Capital expenditures in irrigation (domestic funded),,,,,FALSE +EXP_CROSS_SUB_IRR_EXE,Spending in subsidies in irrigation,,,,,FALSE +EXP_CROSS_WAG_IRR_EXE,Spending in wages in irrigation,,,,,FALSE +EXP_CROSS_CAP_MAI_IRR_EXE,Spending in capital maintenance in irrigation,,,,,FALSE +EXP_CROSS_REC_MAI_IRR_EXE,Spending in recurrent maintenance in irrigation,,,,,FALSE +EXP_FUNC_IRR_FOR_EXE,Spending in irrigation (foreign),,,,,FALSE +EXP_FUNC_TRA_EXE, Spending in transport ,Transport,Subtotal,func_sub,,FALSE +EXP_FUNC_TRA_FOR_EXE, Spending in transport (foreign) ,Transport,Total Expenditures(Foreign Funded),func_sub,total,FALSE +EXP_CROSS_WAG_TRA_EXE, Spending in wages in transport ,Transport,Wage bill,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_TRA_EXE, Spending: Capital expenditures in transport ,Transport,Capital expenditures,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_TRA_FOR_EXE, Spending: Capital expenditures in transport (foreign) ,Transport,Capital Expenditure (foreign spending),func_sub,econ_sub,FALSE +EXP_CROSS_CAP_TRA_SOE_TRA_EXE, Capital Transfers to SOEs in transport ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_TRA_EXE, Current Transfers to SOEs in transport ,,,,,FALSE +EXP_CROSS_REC_MAI_TRA_EXE, Spending in recurrent maintenance in transport ,Transport,Recurrent Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_CAP_MAI_TRA_EXE, Spending in capital maintenance in transport ,Transport,Capital Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_SUB_TRA_EXE, Spending in subsidies in transport ,Transport,Subsidies,func_sub,econ,FALSE +EXP_CROSS_SUB_FIR_TRA_EXE, Spending in subsidies to firms in transport ,,,,,FALSE +EXP_CROSS_SUB_IND_TRA_EXE, Spending in subsidies to individuals in transport ,,,,,FALSE +EXP_FUNC_ROA_EXE, Spending in roads ,Roads,Subtotal,func_sub,,FALSE +EXP_CROSS_WAG_ROA_EXE, Spending in wages in roads ,Roads,Wage bill,func_sub,econ,FALSE +EXP_CROSS_BAS_WAG_ROA_EXE, Spending in basic wages in roads ,Roads,Basic Wages,func_sub,econ_sub,FALSE +EXP_CROSS_ALL_ROA_EXE, Spending in allowances in roads ,Roads,Allowances,func_sub,econ_sub,FALSE +EXP_CROSS_CAP_EXP_ROA_EXE, Spending: Capital expenditures in roads ,Roads,Capital expenditures,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_ROA_FOR_EXE, Spending: Capital expenditures in roads (foreign funded) ,Roads,Capital Expenditure (foreign spending),func_sub,econ_sub,FALSE +EXP_CROSS_CAP_EXP_ROA_DOM_EXE, Spending: Capital expenditures in roads (domestic funded) ,,,,,FALSE +EXP_CROSS_CAP_TRA_SOE_ROA_EXE, Capital Transfers to SOEs in roads ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_ROA_EXE, Current Transfers to SOEs in roads ,,,,,FALSE +EXP_CROSS_REC_MAI_ROA_EXE, Spending in recurrent maintenance in roads ,Roads,Recurrent Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_CAP_MAI_ROA_EXE, Spending in capital maintenance in roads ,Roads,Capital Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_SUB_ROA_EXE, Spending in subsidies in roads ,Roads,Subsidies,func_sub,econ,FALSE +EXP_CROSS_SUB_FIR_ROA_EXE, Spending in subsidies to firms in roads ,,,,,FALSE +EXP_CROSS_SUB_IND_ROA_EXE, Spending in subsidies to individuals in roads ,,,,,FALSE +EXP_FUNC_RAI_EXE, Spending in railroads ,Railroads,Subtotal,func_sub,,FALSE +EXP_CROSS_WAG_RAI_EXE, Spending in wages in railroad ,Railroads,Wage bill,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_RAI_EXE, Spending: Capital expenditures in railroad ,Railroads,Capital expenditures,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_RAI_FOR_EXE, Spending: Capital expenditures in railroad (foreign funded) ,Railroads,Capital Expenditure (foreign spending),func_sub,econ_sub,FALSE +EXP_CROSS_CAP_EXP_RAI_DOM_EXE, Spending: Capital expenditures in railroad (domestic funded) ,,,,,FALSE +EXP_CROSS_CAP_TRA_SOE_RAI_EXE, Capital Transfers to SOEs in railroads ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_RAI_EXE, Current Transfers to SOEs in railroads ,,,,,FALSE +EXP_CROSS_REC_MAI_RAI_EXE, Spending in recurrent maintenance in railroads ,Railroads,Recurrent Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_CAP_MAI_RAI_EXE, Spending in capital maintenance in railroads ,Railroads,Capital Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_SUB_RAI_EXE, Spending in subsidies in railroads ,Railroads,Subsidies,func_sub,econ,FALSE +EXP_CROSS_SUB_FIR_RAI_EXE, Spending in subsidies to firms in railroads ,,,,,FALSE +EXP_CROSS_SUB_IND_RAI_EXE, Spending in subsidies to individuals in railroads ,,,,,FALSE +EXP_FUNC_WAT_TRA_EXE, Spending in water transport ,Water Transport,Subtotal,func_sub,,FALSE +EXP_CROSS_WAG_WAT_TRA_EXE, Spending in wages in water transport ,Water Transport,Wage bill,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_WAT_TRA_EXE, Spending: Capital expenditures in water transport ,Water Transport,Capital expenditures,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_WAT_TRA_FOR_EXE, Spending: Capital expenditures in water transport (foreign funded) ,Water Transport,Capital Expenditure (foreign spending),func_sub,econ_sub,FALSE +EXP_CROSS_CAP_EXP_WAT_TRA_DOM_EXE, Spending: Capital expenditures in water transport (domestic funded) ,,,func_sub,,FALSE +EXP_CROSS_CAP_TRA_SOE_WAT_TRA_EXE, Capital Transfers to SOEs in water transport ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_WAT_TRA_EXE, Current Transfers to SOEs in water transport ,,,,,FALSE +EXP_CROSS_REC_MAI_WAT_TRA_EXE, Spending in recurrent maintenance in water transport ,Water Transport,Recurrent Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_CAP_MAI_WAT_TRA_EXE, Spending in capital maintenance in water transport ,Water Transport,Capital Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_SUB_WAT_TRA_EXE, Spending in subsidies in water transport ,Water Transport,Subsidies,func_sub,econ,FALSE +EXP_CROSS_SUB_FIR_WAT_TRA_EXE, Spending in subsidies to firms in water transport ,,,,,FALSE +EXP_CROSS_SUB_IND_WAT_TRA_EXE, Spending in subsidies to individuals in water transport ,,,,,FALSE +EXP_FUNC_AIR_TRA_EXE, Spending in air transport ,Air Transport,Subtotal,func_sub,,FALSE +EXP_CROSS_WAG_AIR_TRA_EXE, Spending in wages in air transport ,Air Transport,Wage bill,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_AIR_TRA_EXE, Spending: Capital expenditures in air transport ,Air Transport,Capital expenditures,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_AIR_TRA_FOR_EXE, Spending: Capital expenditures in air transport (foreign funded) ,Air Transport,Capital Expenditure (foreign spending),func_sub,econ_sub,FALSE +EXP_CROSS_CAP_EXP_AIR_TRA_DOM_EXE, Spending: Capital expenditures in air transport (domestic funded) ,,,,,FALSE +EXP_CROSS_CAP_TRA_SOE_AIR_TRA_EXE, Capital Transfers to SOEs in air transport ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_AIR_TRA_EXE, Current Transfers to SOEs in air transport ,,,,,FALSE +EXP_CROSS_REC_MAI_AIR_TRA_EXE, Spending in recurrent maintenance in air transport ,Air Transport,Recurrent Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_CAP_MAI_AIR_TRA_EXE, Spending in capital maintenance in air transport ,Air Transport,Capital Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_SUB_AIR_TRA_EXE, Spending in subsidies in air transport ,Air Transport,Subsidies,func_sub,econ,FALSE +EXP_CROSS_SUB_FIR_AIR_TRA_EXE, Spending in subsidies to firms in air transport ,,,,,FALSE +EXP_CROSS_SUB_IND_AIR_TRA_EXE, Spending in subsidies to individuals in air transport ,,,,,FALSE +EXP_FUNC_ENE_EXE, Spending in energy ,Energy,Subtotal,func_sub,,FALSE +EXP_FUNC_ENE_FOR_EXE, Spending in energy (foreign) ,Energy,Total Expenditures(Foreign Funded),func_sub,total,FALSE +EXP_CROSS_WAG_ENE_EXE, Spending in wages in energy ,Energy,Wage bill,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_ENE_EXE, Spending: Capital expenditures in energy ,Energy,Capital expenditures,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_ENE_FOR_EXE, Spending: Capital expenditures in energy (foreign funded) ,Energy,Capital Expenditure (foreign spending),func_sub,econ_sub,FALSE +EXP_CROSS_CAP_EXP_ENE_DOM_EXE, Spending: Capital expenditures in energy (domestic funded) ,,,,,FALSE +EXP_CROSS_CAP_TRA_SOE_ENE_EXE, Capital Transfers to SOEs in energy ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_ENE_EXE, Current Transfers to SOEs in energy ,,,,,FALSE +EXP_CROSS_REC_MAI_ENE_EXE, Spending in recurrent maintenance in energy ,Energy,Recurrent Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_CAP_MAI_ENE_EXE, Spending in capital maintenance in energy ,Energy,Capital Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_SUB_ENE_EXE, Spending in subsidies in energy ,Energy,Subsidies,func_sub,econ,FALSE +EXP_CROSS_SUB_FIR_ENE_EXE, Spending in subsidies to firms in energy ,,,,,FALSE +EXP_CROSS_SUB_IND_ENE_EXE, Spending in subsidies to individuals in energy ,,,,,FALSE +EXP_FUNC_ENE_POW_EXE, Spending in energy (power) ,,,,,FALSE +EXP_CROSS_WAG_ENE_POW_EXE, Spending in wages in energy (power) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_POW_EXE, Spending: Capital expenditures in energy (power) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_POW_FOR_EXE, Spending: Capital expenditures in energy (power) (foreign funded) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_POW_DOM_EXE, Spending: Capital expenditures in energy (power) (domestic funded) ,,,,,FALSE +EXP_CROSS_CAP_TRA_SOE_ENE_POW_EXE, Capital Transfers to SOEs in energy (power) ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_ENE_POW_EXE, Current Transfers to SOEs in energy (power) ,,,,,FALSE +EXP_CROSS_REC_MAI_ENE_POW_EXE, Spending in recurrent maintenance in energy (power) ,,,,,FALSE +EXP_CROSS_CAP_MAI_ENE_POW_EXE, Spending in capital maintenance in energy (power) ,,,,,FALSE +EXP_CROSS_SUB_ENE_POW_EXE, Spending in subsidies in energy (power) ,,,,,FALSE +EXP_CROSS_SUB_FIR_ENE_POW_EXE, Spending in subsidies to firms in energy (power) ,,,,,FALSE +EXP_CROSS_SUB_IND_ENE_POW_EXE, Spending in subsidies to individuals in energy (power) ,,,,,FALSE +EXP_FUNC_ENE_OIL_EXE, Spending in energy (oil & gas) ,,,,,FALSE +EXP_CROSS_WAG_ENE_OIL_GAS_EXE, Spending in wages in energy (oil/gas) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_OIL_GAS_EXE, Spending: Capital expenditures in energy (oil & gas) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_OIL_GAS_FOR_EXE, Spending: Capital expenditures in energy (oil & gas) (foreign funded) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_OIL_GAS_DOM_EXE, Spending: Capital expenditures in energy (oil & gas) (domestic funded) ,,,,,FALSE +EXP_CROSS_CAP_TRA_SOE_ENE_OIL_GAS_EXE, Capital Transfers to SOEs in energy (oil & gas) ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_ENE_OIL_GAS_EXE, Current Transfers to SOEs in energy (oil & gas) ,,,,,FALSE +EXP_CROSS_REC_MAI_ENE_OIL_GAS_EXE, Spending in recurrent maintenance in energy (oil & gas) ,,,,,FALSE +EXP_CROSS_CAP_MAI_ENE_OIL_GAS_EXE, Spending in capital maintenance in energy (oil & gas) ,,,,,FALSE +EXP_CROSS_SUB_ENE_OIL_GAS_EXE, Spending in subsidies in energy (oil & gas) ,,,,,FALSE +EXP_CROSS_SUB_FIR_ENE_OIL_GAS_EXE, Spending in subsidies to firms in energy (oil & gas) ,,,,,FALSE +EXP_CROSS_SUB_IND_ENE_OIL_GAS_EXE, Spending in subsidies to individuals in energy (oil & gas) ,,,,,FALSE +EXP_FUNC_ENE_HEA_EXE, Spending in energy (heating) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_HEA_EXE, Spending: Capital expenditures in energy (heating) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_HEA_FOR_EXE, Spending: Capital expenditures in energy (heating) (foreign funded) ,,,,,FALSE +EXP_CROSS_CAP_EXP_ENE_HEA_DOM_EXE, Spending: Capital expenditures in energy (heating) (domestic funded) ,,,,,FALSE +EXP_CROSS_CAP_TRA_SOE_ENE_HEA_EXE, Capital Transfers to SOEs in energy (heating) ,,,,,FALSE +EXP_CROSS_CUR_TRA_SOE_ENE_HEA_EXE, Current Transfers to SOEs in energy (heating) ,,,,,FALSE +EXP_CROSS_REC_MAI_ENE_HEA_EXE, Spending in recurrent maintenance in energy (heating) ,,,,,FALSE +EXP_CROSS_CAP_MAI_ENE_HEA_EXE, Spending in capital maintenance in energy (heating) ,,,,,FALSE +EXP_CROSS_SUB_ENE_HEA_EXE, Spending in subsidies in energy (heating) ,,,,,FALSE +EXP_CROSS_SUB_FIR_ENE_HEA_EXE, Spending in subsidies to firms in energy (heating) ,,,,,FALSE +EXP_CROSS_SUB_IND_ENE_HEA_EXE, Spending in subsidies to individuals in energy (heating) ,,,,,FALSE +EXP_FUNC_HYD_EXE,Spending in hydropower,,,,,FALSE +EXP_CROSS_CAP_EXP_HYD_EXE, Spending: Capital expenditures in hydropower ,,,,,FALSE +EXP_CROSS_CAP_EXP_HYD_FOR_EXE, Spending: Capital expenditures in hydropower (foreign funded) ,,,,,FALSE +EXP_CROSS_CAP_EXP_HYD_DOM_EXE, Spending: Capital expenditures in hydropower (domestic funded) ,,,,,FALSE +EXP_CROSS_SUB_HYD_EXE, Spending in subsidies in hydropower ,,,,,FALSE +EXP_CROSS_WAG_HYD_EXE, Spending in wages in hydropower ,,,,,FALSE +EXP_CROSS_CAP_MAI_HYD_EXE, Spending in capital maintenance in hydropower ,,,,,FALSE +EXP_CROSS_REC_MAI_HYD_EXE, Spending in recurrent maintenance in hydropower ,,,,,FALSE +EXP_FUNC_HYD_FOR_EXE,Spending in hydropower (foreign) ,,,,,FALSE +EXP_FUNC_TEL_EXE, Spending in telecoms ,Economic affairs,Telecom,func,func_sub,FALSE +EXP_CROSS_CAP_EXP_TEL_EXE, Spending: Capital expenditures in telecoms ,Economic affairs,Telecom,func,func_sub,FALSE +EXP_CROSS_CAP_EXP_TEL_FOR_EXE, Spending: Capital expenditures in telecoms (foreign funded) ,Economic affairs,Telecom,func,func_sub,FALSE +EXP_CROSS_CAP_EXP_TEL_DOM_EXE, Spending: Capital expenditures in telecoms (domestic funded) ,,,,,FALSE +EXP_FUNC_ENV_PRO_EXE,Environment Protection (COFOG 705),Environmental protection,Subtotal,func,,FALSE +EXP_FUNC_WAS_MAN_EXE, Waste Management ,,,,,FALSE +EXP_FUNC_WAS_WAT_MAN_EXE, Waste Water Management ,,,,,FALSE +EXP_FUNC_POL_ABA_EXE, Pollution Abatement ,,,,,FALSE +EXP_FUNC_PRO_BIO_LAN_EXE, Protection Of Biodiversity And Landscape ,,,,,FALSE +EXP_FUNC_R&D_ENV_PRO_EXE, R&D Environmental Protection ,,,,,FALSE +EXP_FUNC_ENV_PRO_NEC_EXE, Environmental Protection N.E.C ,,,,,FALSE +EXP_FUNC_FLO_PRO_EXE, Flood protection spending ,,,,,FALSE +EXP_FUNC_OTH_CLI_RES_EXE, Other Climate resilience expenditures ,,,,,FALSE +EXP_FUNC_HOU_EXE,Housing (COFOG 706),Housing and community amenities,Subtotal,func,,FALSE +EXP_FUNC_WAT_SAN_EXE, Spending in water and sanitation ,Water and Sanitation,Subtotal,func_sub,,FALSE +EXP_CROSS_CAP_EXP_WAT_SAN_EXE, Spending: Capital expenditures in water and sanitation ,Water and Sanitation,Capital expenditures,func_sub,econ,FALSE +EXP_CROSS_CAP_EXP_WAT_SAN_FOR_EXE, Spending: Capital expenditures in water and sanitation (foreign funded) ,Water and Sanitation,Capital Expenditure (foreign spending),func_sub,econ_sub,FALSE +EXP_CROSS_CAP_EXP_WAT_SAN_DOM_EXE, Spending: Capital expenditures in water and sanitation (domestic funded) ,,,,,FALSE +EXP_CROSS_SUB_WAT_SAN_EXE, Spending in subsidies in water and sanitation ,Water and Sanitation,Subsidies,func_sub,econ,FALSE +EXP_CROSS_WAG_WAT_SAN_EXE, Spending in wages in water and sanitation ,Water and Sanitation,Wage bill,func_sub,econ,FALSE +EXP_CROSS_CAP_MAI_WAT_SAN_EXE, Spending in capital maintenance in water and sanitation ,Water and Sanitation,Capital Maintenance,func_sub,econ_sub,FALSE +EXP_CROSS_REC_MAI_WAT_SAN_EXE, Spending in recurrent maintenance in water and sanitation ,Water and Sanitation,Recurrent Maintenance,func_sub,econ_sub,FALSE +EXP_FUNC_WAT_SAN_FOR_EXE, Spending in water and sanitation (foreign) ,Water and Sanitation,,,,FALSE +EXP_FUNC_HEA_EXE, Health (COFOG 707) ,Health,Subtotal,func,,FALSE +EXP_CROSS_WAG_HEA_EXE, Spending in wages in health ,Health,Wage bill,func,econ,FALSE +EXP_CROSS_BAS_WAG_HEA_EXE, Spending in basic wages in health ,Health,Basic Wages,func,econ_sub,FALSE +EXP_CROSS_ALL_HEA_EXE, Spending in allowances in health ,Health,Allowances,func,econ_sub,FALSE +EXP_CROSS_CAP_EXP_HEA_EXE, Spending: Capital expenditures in health ,Health,Capital expenditures,func,econ,FALSE +EXP_CROSS_GOO_SER_HEA_EXE, Spending in Goods and services in health ,Health,Goods and services,func,econ,FALSE +EXP_FUNC_IMM_EXE, Spending in immunization ,,,,,FALSE +EXP_FUNC_IMM_FOR_EXE, Spending in immunization (foreign funded) ,,,,,FALSE +EXP_FUNC_HEA_FOR_EXE, Spending in health (foreign) ,,,,,FALSE +EXP_CROSS_CAP_EXP_HEA_FOR_EXE, Spending: Capital expenditures in health (foreign) ,,,,,FALSE +EXP_CROSS_GOO_SER_HEA_FOR_EXE, Spending in Goods and services in health (foreign) ,,,,,FALSE +EXP_FUNC_PRI_HEA_EXE, Spending in primary/secondary health ,Health,Primary and Secondary Health,func,func_sub,FALSE +EXP_FUNC_TER_HEA_EXE, Spending in tertiary/quaternary health ,Health,Tertiary and Quaternary Health,func,func_sub,FALSE +EXP_CROSS_GOO_SER_EMP_CON_HEA_EXE, Spending in Goods and services (employment contracts) in health ,Health,Employment Contracts,func,econ_sub,FALSE +EXP_CROSS_GOO_SER_BAS_SER_HEA_EXE, Spending in Goods and services (basic services) in health ,Health,Basic Services,func,econ_sub,FALSE +EXP_CROSS_SUB_HEA_EXE,Spending in subsidies in health,Health,Subsidies,func,econ,FALSE +EXP_CROSS_REC_MAI_HEA_EXE,Spending in recurrent mainternance in health,Health,Recurrent Maintenance,func,econ_sub,FALSE +EXP_FUNC_REV_CUS_EXC_EXE," Recreation, culture and religion (COFOG 708) ","Recreation, culture and religion",Subtotal,func,,FALSE +EXP_FUNC_EDU_EXE, Education (COFOG 709) ,Education,Subtotal,func,,FALSE +EXP_CROSS_WAG_EDU_EXE, Spending in wages in education ,Education,Wage bill,func,econ,FALSE +EXP_CROSS_BAS_WAG_EDU_EXE, Spending in basic wages in education ,Education,Basic Wages,func,econ_sub,FALSE +EXP_CROSS_ALL_EDU_EXE, Spending in allowances in education ,Education,Allowances,func,econ_sub,FALSE +EXP_CROSS_CAP_EXP_EDU_EXE, Spending: Capital expenditures in education ,Education,Capital expenditures,func,econ,FALSE +EXP_CROSS_GOO_SER_EDU_EXE, Spending in Goods and services in education ,Education,Goods and services,func,econ,FALSE +EXP_FUNC_PRI_EDU_EXE, Spending in primary education ,Education,Primary Education,func,func_sub,FALSE +EXP_CROSS_WAG_PRI_EDU_EXE, Spending in wages in primary education ,Primary Education,Wage bill,func_sub,econ,FALSE +EXP_FUNC_SEC_EDU_EXE, Spending in secondary education ,Education,Secondary Education,func,func_sub,FALSE +EXP_CROSS_WAG_SEC_EDU_EXE, Spending in wages in secondary education ,Secondary Education,Wage bill,func_sub,econ,FALSE +EXP_FUNC_PRI_SEC_EDU_EXE, Spending in primary and secondary education ,,,,,FALSE +EXP_CROSS_WAG_PRI_SEC_EDU_EXE, Spending in wages in primary and secondary education ,,,,,FALSE +EXP_FUNC_TER_EDU_EXE, Spending in tertiary education ,Education,Tertiary Education,func,func_sub,FALSE +EXP_CROSS_WAG_TER_EDU_EXE, Spending in wages in tertiary education ,Tertiary Education,Basic Wages,func_sub,econ,FALSE +EXP_FUNC_EDU_FOR_EXE, Spending in education (foreign) ,,,,,FALSE +EXP_CROSS_CAP_EXP_EDU_FOR_EXE, Spending: Capital expenditures in education (foreign) ,,,,,FALSE +EXP_CROSS_GOO_SER_EDU_FOR_EXE, Spending in Goods and services in education (foreign) ,,,,,FALSE +EXP_CROSS_GOO_SER_EMP_CON_EDU_EXE,Spending in Goods and services (employment contracts) in education,Education,Employment Contracts,func,econ_sub,FALSE +EXP_CROSS_GOO_SER_BAS_SER_EDU_EXE,Spending in Goods and services (basic services) in education,Education,Basic Services,func,econ_sub,FALSE +EXP_CROSS_SUB_EDU_EXE,Spending in subsidies in education,Education,Subsidies,func,econ,FALSE +EXP_CROSS_REC_MAI_EDU_EXE,Spending in recurrent mainternance in education,Education,Recurrent Maintenance,func,econ_sub,FALSE +EXP_FUNC_SOC_PRO_EXE, Social Protection (COFOG 710) ,Social protection,Subtotal,func,,FALSE +EXP_ECON_SBN_TOT_SPE_EXE, Subnational: Total spending ,Subnational Total,Subtotal,total,,TRUE +EXP_ECON_SBN_TOT_TRA_EXE,Subnational: Total transfers,,,,,TRUE +EXP_CROSS_SBN_TRA_EDU_EXE, Subnational: transfers in education ,Education,Subtotal,func,,TRUE +EXP_CROSS_SBN_TRA_HEA_EXE, Subnational: transfers in health ,Health,Subtotal,func,,TRUE +EXP_CROSS_SBN_TRA_AGR_EXE,Subnational: Total transfers,Agriculture,Subtotal,func_sub,,TRUE +EXP_CROSS_SBN_TRA_ROA_EXE, Subnational: transfers in roads ,Roads,Subtotal,func_sub,,TRUE +EXP_CROSS_SBN_TRA_ENE_EXE, Subnational: transfers in energy ,Energy,Subtotal,func_sub,,TRUE +EXP_CROSS_SBN_TRA_WAT_SAN_EXE, Subnational: transfers in water and sanitation ,Water and Sanitation,Subtotal,func_sub,,TRUE +EXP_ECON_SBN_EAR_TRA_EXE, Subnational: Earmarked transfers ,,,,,TRUE +EXP_ECON_SBN_DIS_TRA_EXE, Subnational: Discretionary transfers ,,,,,TRUE +EXP_ECON_SBN_REC_SPE_EXE, Subnational: Recurrent spending ,,,,,TRUE +EXP_ECON_SBN_CAP_SPE_EXE, Subnational: Capital spending ,,,,,TRUE +EXP_FUNC_SBN_EDU_EXE, Subnational: Spending in education ,Education,Subtotal,func,,TRUE +EXP_CROSS_SBN_CAP_EDU_EXE, Subnational: Capital Spending in education ,Education,Capital expenditures,func,econ,TRUE +EXP_FUNC_SBN_HEA_EXE, Subnational: Spending in health ,Health,Subtotal,func,,TRUE +EXP_CROSS_SBN_CAP_HEA_EXE, Subnational: Capital Spending in health ,Health,Capital expenditures,func,econ,TRUE +EXP_FUNC_SBN_AGR_EXE, Subnational: Spending in agriculture ,Agriculture,Subtotal,func_sub,,TRUE +EXP_CROSS_SBN_CAP_EXP_ROA_EXE, Subnational: Capital expenditures in roads ,Roads,Capital expenditures,func_sub,econ,TRUE +EXP_CROSS_SBN_CAP_EXP_ENE_EXE, Subnational: Capital expenditures in energy ,Energy,Capital expenditures,func_sub,econ,TRUE +EXP_CROSS_SBN_CAP_EXP_WAT_SAN_EXE, Subnational: Capital expenditures in water and sanitation ,Water and Sanitation,Capital expenditures,func_sub,econ,TRUE +EXP_CROSS_SBN_REC_EXP_ROA_EXE, Subnational: Recurrent expenditures in roads ,Roads,Recurrent Maintenance,func_sub,econ_sub,TRUE +EXP_CROSS_SBN_REC_EXP_ENE_EXE, Subnational: Recurrent expenditures in energy ,Energy,Recurrent Maintenance,func_sub,econ_sub,TRUE +EXP_CROSS_SBN_REC_EXP_WAT_SAN_EXE, Subnational: Recurrent expenditures in water and sanitation ,Water and Sanitation,Recurrent Maintenance,func_sub,econ_sub,TRUE +EXP_CROSS_SBN_CAP_AGR_EXE, Subnational: Capital Spending in agriculture ,Agriculture,Capital expenditures,func_sub,econ,TRUE +EXP_FUNC_SBN_IRR_EXE, Subnational: Spending in irrigation ,,,,,TRUE +EXP_FUNC_SBN_HYD_EXE, Subnational: Spending in hydropower ,,,,,TRUE +EXP_CROSS_SBN_IRR_REC_EXE, Subnational: Spending in irrigation (recurrent) ,,,,,TRUE +EXP_CROSS_SBN_HYD_REC_EXE, Subnational: Spending in hydropower (recurrent) ,,,,,TRUE +EXP_CROSS_SBN_IRR_CAP_EXE, Subnational: Spending in irrigation (capital) ,,,,,TRUE +EXP_CROSS_SBN_HYD_CAP_EXE, Subnational: Spending in hydropower (capital) ,,,,,TRUE +EXP_ECON_OTH_MED_RIG_EXP_EXE,Other medium rigidity expenditures,,,,,FALSE +EXP_ECON_OTH_HIG_RIG_EXE,Other high rigid expenditures,,,,,FALSE +EXP_ECON_COR_LOW_RIG_EXE,Correction - low rigidity,,,,,FALSE +EXP_ECON_COR_MED_RIG_EXE,Correction - medium rigidity,,,,,FALSE +EXP_ECON_COR_HIG_RIG_EXE,Correction - high rigidity,,,,,FALSE +EXP_ECON_HIG_RIG_EXE,High Rigidity spending,,,,,FALSE +EXP_ECON_MED_RIG_EXE,Medium Rigidity spending,,,,,FALSE +EXP_ECON_LOW_RIG_EXE,Low Rigidity spending,,,,,FALSE \ No newline at end of file diff --git a/utils.py b/utils.py index 0f27ec9..6a6ae86 100644 --- a/utils.py +++ b/utils.py @@ -15,8 +15,6 @@ RAW_INPUT_DIR = f"{TOP_DIR}/Documents/input/Data from authorities" WORKSPACE_DIR = f"{TOP_DIR}/Workspace" -TAG_MAPPING_URL = 'https://raw.githubusercontent.com/dime-worldbank/mega-boost/refs/heads/main/quality/tag_code_mapping.csv' - # COMMAND ---------- # Microdata extraction helper functions