Setting Working Directory
# Set working directory to the specified folder where PDFs will be saved
setwd("/Users/jongwoojeong/Dropbox/0_Georgia State University_Share/Budget_Alex/uganda")
Starting PhantomJS for Headless Browsing
# Start PhantomJS instance for headless browsing
pjs_instance <- run_phantomjs() # Launch PhantomJS
pjs_session <- Session$new(port = pjs_instance$port) # Create a new session on the specified port
Defining Base URL and Output Folder
# Base URL for the website containing budget documents
base_url <- "https://budget.finance.go.ug/all-documents?tid_2=All&type=All&filename=Approved+Budget+Estimates&tid=All&field_document_type_tid=All&tid_1=All&tid_3=All&tid_4=All&tid_5=All&tid_6=All&page="
# Folder to save PDFs; create it if it doesn't already exist
output_folder <- "budget_pdfs"
if (!dir.exists(output_folder)) {
dir.create(output_folder) # Create the folder only if it doesn't exist
}
Function to Scrape PDF Links
scrape_pdf_links <- function(page_num, max_retries = 3) {
url <- paste0(base_url, page_num) # Construct the URL for the specified page
retries <- 0
success <- FALSE
pdf_links <- character(0)
while (!success && retries < max_retries) { # Retry loop for robustness
tryCatch({
cat("Accessing page:", page_num + 1, "\n") # Print status message
pjs_session$go(url) # Navigate to the URL using PhantomJS session
Sys.sleep(2) # Initial wait for page load
# Wait for content to load dynamically with a maximum wait time of 15 seconds
start_time <- Sys.time()
while (Sys.time() - start_time < 15) {
rendered_source <- pjs_session$getSource() # Get the rendered page source
html_document <- read_html(rendered_source) # Parse the HTML content
pdf_links <- html_document %>%
html_nodes("a") %>%
html_attr("href") %>%
.[grepl("\\.pdf$", .)] # Extract links ending with .pdf
if (length(pdf_links) > 0) break # Exit loop if links are found
Sys.sleep(1) # Retry every second
}
if (length(pdf_links) == 0) stop("No links found after waiting.") # Error if no links are found
success <- TRUE # Mark success if links are found
}, error = function(e) {
retries <- retries + 1 # Increment retry counter
cat("Error scraping page:", page_num + 1, "-", e$message, "\nRetrying...(", retries, "/", max_retries, ")\n")
Sys.sleep(3) # Wait before retrying
})
}
if (!success) {
cat("Failed to scrape page:", page_num + 1, "after", max_retries, "retries.\n") # Print failure message
}
# Ensure full URLs by appending the base URL if needed
full_links <- ifelse(
startsWith(pdf_links, "http"),
pdf_links,
paste0("https://budget.finance.go.ug", pdf_links)
)
return(full_links) # Return the list of full PDF links
}
Collecting PDF Links
all_pdf_links <- c()
for (page_num in 0:8) { # Loop through pages 1 to 9 (indexed from 0)
cat("Scraping page:", page_num + 1, "\n") # Print status for each page
pdf_links <- scrape_pdf_links(page_num) # Call the scraping function
all_pdf_links <- c(all_pdf_links, pdf_links) # Append links to the main list
}
## Scraping page: 1
## Accessing page: 1
## Scraping page: 2
## Accessing page: 2
## Scraping page: 3
## Accessing page: 3
## Scraping page: 4
## Accessing page: 4
## Scraping page: 5
## Accessing page: 5
## Scraping page: 6
## Accessing page: 6
## Scraping page: 7
## Accessing page: 7
## Scraping page: 8
## Accessing page: 8
## Scraping page: 9
## Accessing page: 9
# Remove duplicate links
all_pdf_links <- unique(all_pdf_links) # Keep only unique links
cat("Total unique PDF links found:", length(all_pdf_links), "\n") # Print the total number of links
## Total unique PDF links found: 680
Function to Download PDFs
download_pdf <- function(url, retries = 3) {
file_name <- basename(url) # Extract the file name from the URL
save_path <- file.path(output_folder, file_name) # Define the path to save the PDF
for (attempt in 1:retries) { # Retry loop
tryCatch({
GET(url, write_disk(save_path, overwrite = TRUE)) # Download the PDF
if (file.info(save_path)$size > 0) { # Check if the file has content
cat("Downloaded:", file_name, "\n") # Print success message
return(TRUE) # Return TRUE if download is successful
}
}, error = function(e) {
cat("Error downloading:", file_name, "-", e$message, "\nRetrying...(", attempt, "/", retries, ")\n")
Sys.sleep(3) # Wait before retrying
})
}
cat("Failed to download:", file_name, "after", retries, "attempts.\n") # Print failure message
return(FALSE) # Return FALSE if all attempts fail
}
Downloading All PDFs
cat("Starting downloads...\n")
## Starting downloads...
for (i in seq_along(all_pdf_links)) { # Loop through each link
cat("Downloading", i, "of", length(all_pdf_links), ":", all_pdf_links[i], "\n") # Print status for each download
download_pdf(all_pdf_links[i]) # Call the download function
}
## Downloading 1 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Central%20Governments%2C%20Vol.%201%20FY%202024-25.pdf
## Error downloading: Approved%20Budget%20Estimates%20for%20Central%20Governments%2C%20Vol.%201%20FY%202024-25.pdf - Recv failure: Connection reset by peer
## Retrying...( 1 / 3 )
## Downloaded: Approved%20Budget%20Estimates%20for%20Central%20Governments%2C%20Vol.%201%20FY%202024-25.pdf
## Downloading 2 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20State%20Owned%20Enterprises%20and%20Public%20Corporations%20Vol.%203%20FY%202024-25.pdf
## Downloaded: Approved%20Budget%20Estimates%20for%20State%20Owned%20Enterprises%20and%20Public%20Corporations%20Vol.%203%20FY%202024-25.pdf
## Downloading 3 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Local%20Governments%20Volume%20-2%20FY%202024-25.pdf
## Downloaded: Approved%20Budget%20Estimates%20for%20Local%20Governments%20Volume%20-2%20FY%202024-25.pdf
## Downloading 4 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Central%20Governments%20Vol.%201%20FY%202023-24.pdf
## Downloaded: Approved%20Budget%20Estimates%20for%20Central%20Governments%20Vol.%201%20FY%202023-24.pdf
## Downloading 5 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/BUDGET%20ESTIMATES%20APPROVED%20VOL.III_.pdf
## Downloaded: BUDGET%20ESTIMATES%20APPROVED%20VOL.III_.pdf
## Downloading 6 of 680 : https://budget.finance.go.ug/sites/default/files/NON-SUBMISSION%20OF%20APPROVED%20BUDGET%20ESTIMATES--2.pdf
## Downloaded: NON-SUBMISSION%20OF%20APPROVED%20BUDGET%20ESTIMATES--2.pdf
## Downloading 7 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_788_Lugazi%20Municipal%20Council_148_07072021115404.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_788_Lugazi%20Municipal%20Council_148_07072021115404.pdf
## Downloading 8 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20FY%202022-23%20Volume%201-%20Central%20Government.pdf
## Downloaded: Approved%20Budget%20Estimates%20FY%202022-23%20Volume%201-%20Central%20Government.pdf
## Downloading 9 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Local%20Governments%20for%20FY%202022_23.pdf
## Downloaded: Approved%20Budget%20Estimates%20for%20Local%20Governments%20for%20FY%202022_23.pdf
## Downloading 10 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_783_Mityana%20Municipal%20Council_143_29062021232013.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_783_Mityana%20Municipal%20Council_143_29062021232013.pdf
## Downloading 11 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_858_Lira%20City_187_28062021134255_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_858_Lira%20City_187_28062021134255_0.pdf
## Downloading 12 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_524_Kibaale%20District_23_30062021215803.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_524_Kibaale%20District_23_30062021215803.pdf
## Downloading 13 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_583_Buyende%20District_82_01072021164541.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_583_Buyende%20District_82_01072021164541.pdf
## Downloading 14 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_559_Kaabong%20District_58_02072021103806.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_559_Kaabong%20District_58_02072021103806.pdf
## Downloading 15 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_621_Kyotera%20District_163_28062021221008.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_621_Kyotera%20District_163_28062021221008.pdf
## Downloading 16 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_764_Tororo%20Municipal%20Council_124_01072021145855_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_764_Tororo%20Municipal%20Council_124_01072021145855_0.pdf
## Downloading 17 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_772_Mukono%20Municipal%20Council_127_07072021111247_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_772_Mukono%20Municipal%20Council_127_07072021111247_0.pdf
## Downloading 18 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_784_Kitgum%20Municipal%20Council_144_01072021230705.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_784_Kitgum%20Municipal%20Council_144_01072021230705.pdf
## Downloading 19 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_859_Soroti%20City_188_13072021103459_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_859_Soroti%20City_188_13072021103459_0.pdf
## Downloading 20 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_526_Kisoro%20District_25_28062021181308.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_526_Kisoro%20District_25_28062021181308.pdf
## Downloading 21 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_584_Kyegegwa%20District_83_30062021211244.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_584_Kyegegwa%20District_83_30062021211244.pdf
## Downloading 22 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_558_Ibanda%20District_57_21062021130942.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_558_Ibanda%20District_57_21062021130942.pdf
## Downloading 23 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_622_Bunyangabu%20District_164_05072021094608.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_622_Bunyangabu%20District_164_05072021094608.pdf
## Downloading 24 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_773_Iganga%20Municipal%20Council_128_27062021163200_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_773_Iganga%20Municipal%20Council_128_27062021163200_0.pdf
## Downloading 25 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_786_Mubende%20Municipal%20Council_146_28062021150226.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_786_Mubende%20Municipal%20Council_146_28062021150226.pdf
## Downloading 26 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_860_Hoima%20City_189_01072021172834_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_860_Hoima%20City_189_01072021172834_0.pdf
## Downloading 27 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_527_Kitgum%20District_26_29062021122445.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_527_Kitgum%20District_26_29062021122445.pdf
## Downloading 28 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_585_Lamwo%20District_84_28062021162416.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_585_Lamwo%20District_84_28062021162416.pdf
## Downloading 29 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_560_Isingiro%20District_59_28062021201946.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_560_Isingiro%20District_59_28062021201946.pdf
## Downloading 30 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_623_Nabilatuk%20District_165_30062021161901.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_623_Nabilatuk%20District_165_30062021161901.pdf
## Downloading 31 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_625_Kasanda%20District_167_06072021085846.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_625_Kasanda%20District_167_06072021085846.pdf
## Downloading 32 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_774_Masindi%20Municipal%20Council_129_30062021110704_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_774_Masindi%20Municipal%20Council_129_30062021110704_0.pdf
## Downloading 33 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_787_Kumi%20Municipal%20Council_147_27062021192417.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_787_Kumi%20Municipal%20Council_147_27062021192417.pdf
## Downloading 34 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20FY%202021-22.pdf
## Downloaded: Approved%20Budget%20Estimates%20FY%202021-22.pdf
## Downloading 35 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_528_Kotido%20District_27_03072021181703.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_528_Kotido%20District_27_03072021181703.pdf
## Downloading 36 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_501_Adjumani%20District_1_28062021130313.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_501_Adjumani%20District_1_28062021130313.pdf
## Downloading 37 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_586_Otuke%20District_85_28062021090424.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_586_Otuke%20District_85_28062021090424.pdf
## Downloading 38 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_562_Kiruhura%20District_61_29062021163012.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_562_Kiruhura%20District_61_29062021163012.pdf
## Downloading 39 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_626_Kwania%20District_168_01072021111718.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_626_Kwania%20District_168_01072021111718.pdf
## Downloading 40 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_775_Ntungamo%20Municipal%20Council_130_25062021202107_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_775_Ntungamo%20Municipal%20Council_130_25062021202107_0.pdf
## Downloading 41 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%2C%20Local%20Governments-FY%202021-22.pdf
## Downloaded: Approved%20Budget%20Estimates%2C%20Local%20Governments-FY%202021-22.pdf
## Downloading 42 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_529_Kumi%20District_28_01072021111826.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_529_Kumi%20District_28_01072021111826.pdf
## Downloading 43 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_502_Apac%20District_2_02072021131040.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_502_Apac%20District_2_02072021131040.pdf
## Downloading 44 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_587_Zombo%20District_86_30062021105858.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_587_Zombo%20District_86_30062021105858.pdf
## Downloading 45 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_627_Kapelebyong%20District_169_05072021170830.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_627_Kapelebyong%20District_169_05072021170830.pdf
## Downloading 46 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_776_Busia%20Municipal%20Council_131_25062021140301_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_776_Busia%20Municipal%20Council_131_25062021140301_0.pdf
## Downloading 47 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_789_Kamuli%20Municipal%20Council_149_29062021122742.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_789_Kamuli%20Municipal%20Council_149_29062021122742.pdf
## Downloading 48 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_546_Ntungamo%20District_45_12072021115316.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_546_Ntungamo%20District_45_12072021115316.pdf
## Downloading 49 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_530_Kyenjojo%20District_29_06072021114844.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_530_Kyenjojo%20District_29_06072021114844.pdf
## Downloading 50 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_503_Arua%20District_3_28062021162500.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_503_Arua%20District_3_28062021162500.pdf
## Downloading 51 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_588_Alebtong%20District_87_30062021125457.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_588_Alebtong%20District_87_30062021125457.pdf
## Downloading 52 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_628_Kikuube%20District_170_28062021134619.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_628_Kikuube%20District_170_28062021134619.pdf
## Downloading 53 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_777_Bushenyi-%20Ishaka%20Municipal%20Council_132_28062021164937_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_777_Bushenyi-%20Ishaka%20Municipal%20Council_132_28062021164937_0.pdf
## Downloading 54 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_790_Kapchorwa%20Municipal%20Council_150_27062021180618.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_790_Kapchorwa%20Municipal%20Council_150_27062021180618.pdf
## Downloading 55 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_559_Kaabong%20District_58_02072021103806_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_559_Kaabong%20District_58_02072021103806_0.pdf
## Downloading 56 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_531_Lira%20District_30_28062021161107.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_531_Lira%20District_30_28062021161107.pdf
## Downloading 57 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_501_Adjumani%20District_1_28062021130313_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_501_Adjumani%20District_1_28062021130313_0.pdf
## Downloading 58 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_589_Bulambuli%20District_88_28062021104749.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_589_Bulambuli%20District_88_28062021104749.pdf
## Downloading 59 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_629_Obongi%20District_172_23062021164947.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_629_Obongi%20District_172_23062021164947.pdf
## Downloading 60 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_778_Rukungiri%20Municipal%20Council_134_29062021100236_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_778_Rukungiri%20Municipal%20Council_134_29062021100236_0.pdf
## Downloading 61 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_791_Ibanda%20Municipal%20Council_151_28062021222546.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_791_Ibanda%20Municipal%20Council_151_28062021222546.pdf
## Downloading 62 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_561_Kaliro%20District_60_13072021072028.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_561_Kaliro%20District_60_13072021072028.pdf
## Downloading 63 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_532_Luwero%20District_31_30062021183331.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_532_Luwero%20District_31_30062021183331.pdf
## Downloading 64 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_502_Apac%20District_2_02072021131040_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_502_Apac%20District_2_02072021131040_0.pdf
## Downloading 65 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_590_Buvuma%20District_89_02072021165528.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_590_Buvuma%20District_89_02072021165528.pdf
## Downloading 66 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_630_Kazo%20District_173_28062021171432_2%20-%20Copy%20%282%29.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_630_Kazo%20District_173_28062021171432_2%20-%20Copy%20%282%29.pdf
## Downloading 67 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_779_Nansana%20Municipal%20Council_139_01072021132656_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_779_Nansana%20Municipal%20Council_139_01072021132656_0.pdf
## Downloading 68 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_792_Njeru%20Municipal%20Council_152_09072021115426.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_792_Njeru%20Municipal%20Council_152_09072021115426.pdf
## Downloading 69 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_567_Bukwo%20District_66_14072021122326.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_567_Bukwo%20District_66_14072021122326.pdf
## Downloading 70 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_533_Masaka%20District_32_23062021173732.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_533_Masaka%20District_32_23062021173732.pdf
## Downloading 71 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_591_Gomba%20District_90_03072021110844.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_591_Gomba%20District_90_03072021110844.pdf
## Downloading 72 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_631_Rwampara%20District_174_01072021115254.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_631_Rwampara%20District_174_01072021115254.pdf
## Downloading 73 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_780_Makindye%20Ssabagabo%20Municipal%20Council_140_04072021212042_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_780_Makindye%20Ssabagabo%20Municipal%20Council_140_04072021212042_0.pdf
## Downloading 74 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_793_Apac%20Municipal%20Council_153_25062021150320.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_793_Apac%20Municipal%20Council_153_25062021150320.pdf
## Downloading 75 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_593_Luuka%20District_92_14072021152328.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_593_Luuka%20District_92_14072021152328.pdf
## Downloading 76 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_563_Koboko%20District_62_23062021124129.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_563_Koboko%20District_62_23062021124129.pdf
## Downloading 77 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_534_Masindi%20District_33_29062021161122.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_534_Masindi%20District_33_29062021161122.pdf
## Downloading 78 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_592_Kiryandongo%20District_91_17062021124449.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_592_Kiryandongo%20District_91_17062021124449.pdf
## Downloading 79 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_632_Kitagwenda%20District_175_28062021112749.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_632_Kitagwenda%20District_175_28062021112749.pdf
## Downloading 80 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_781_Kira%20Municipal%20Council_141_02072021155941_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_781_Kira%20Municipal%20Council_141_02072021155941_0.pdf
## Downloading 81 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_794_Nebbi%20Municipal%20Council_154_02072021122036.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_794_Nebbi%20Municipal%20Council_154_02072021122036.pdf
## Downloading 82 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_624_Bugweri%20District_166_08072021232308.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_624_Bugweri%20District_166_08072021232308.pdf
## Downloading 83 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_564_Amolatar%20District_63_25062021161651.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_564_Amolatar%20District_63_25062021161651.pdf
## Downloading 84 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_535_Mayuge%20District_34_01072021131203.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_535_Mayuge%20District_34_01072021131203.pdf
## Downloading 85 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_594_Namayingo%20District_93_30062021151137.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_594_Namayingo%20District_93_30062021151137.pdf
## Downloading 86 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_633_Madi-Okollo%20District_176_29062021183337.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_633_Madi-Okollo%20District_176_29062021183337.pdf
## Downloading 87 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_783_Mityana%20Municipal%20Council_143_29062021232013_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_783_Mityana%20Municipal%20Council_143_29062021232013_0.pdf
## Downloading 88 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_795_Bugiri%20Municipal%20Council_155_26062021202448.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_795_Bugiri%20Municipal%20Council_155_26062021202448.pdf
## Downloading 89 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_785_Koboko%20Municipal%20Council_145_12072021111021.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_785_Koboko%20Municipal%20Council_145_12072021111021.pdf
## Downloading 90 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_565_Amuria%20District_64_02072021105016.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_565_Amuria%20District_64_02072021105016.pdf
## Downloading 91 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_536_Mbale%20District_35_29062021132911.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_536_Mbale%20District_35_29062021132911.pdf
## Downloading 92 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_595_Ntoroko%20District_94_30062021203327.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_595_Ntoroko%20District_94_30062021203327.pdf
## Downloading 93 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_634_Karenga%20District_177_01072021164016.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_634_Karenga%20District_177_01072021164016.pdf
## Downloading 94 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_784_Kitgum%20Municipal%20Council_144_01072021230705_1.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_784_Kitgum%20Municipal%20Council_144_01072021230705_1.pdf
## Downloading 95 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_796_Sheema%20Municipal%20Council_156_28062021135734.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_796_Sheema%20Municipal%20Council_156_28062021135734.pdf
## Downloading 96 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_598_Kalungu%20District_97_08072021120704.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_598_Kalungu%20District_97_08072021120704.pdf
## Downloading 97 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_566_Manafwa%20District_65_26062021080004.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_566_Manafwa%20District_65_26062021080004.pdf
## Downloading 98 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_537_Mbarara%20District_36_28062021150828.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_537_Mbarara%20District_36_28062021150828.pdf
## Downloading 99 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_596_Serere%20District_95_30062021105437.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_596_Serere%20District_95_30062021105437.pdf
## Downloading 100 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_597_Kyankwanzi%20District_96_28062021120453.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_597_Kyankwanzi%20District_96_28062021120453.pdf
## Downloading 101 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_525_Kiboga%20District_24_02072021000223.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_525_Kiboga%20District_24_02072021000223.pdf
## Downloading 102 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_856_Mbale%20City_185_24062021163116.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_856_Mbale%20City_185_24062021163116.pdf
## Downloading 103 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_797_Kotido%20Municipal%20Council_157_03072021181636_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_797_Kotido%20Municipal%20Council_157_03072021181636_0.pdf
## Downloading 104 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_514_Kaberamaido%20District_14_07072021140523.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_514_Kaberamaido%20District_14_07072021140523.pdf
## Downloading 105 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_857_Masaka%20City_186_04072021160120.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_857_Masaka%20City_186_04072021160120.pdf
## Downloading 106 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_851_Arua%20City_180_03072021233521_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_851_Arua%20City_180_03072021233521_0.pdf
## Downloading 107 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_562_Kiruhura%20District_61_29062021163012_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_562_Kiruhura%20District_61_29062021163012_0.pdf
## Downloading 108 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_858_Lira%20City_187_28062021134255.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_858_Lira%20City_187_28062021134255.pdf
## Downloading 109 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_852_Mbarara%20City_181_26062021120418_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_852_Mbarara%20City_181_26062021120418_0.pdf
## Downloading 110 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_562_Kiruhura%20District_61_29062021163012_1.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_562_Kiruhura%20District_61_29062021163012_1.pdf
## Downloading 111 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_503_Arua%20District_3_28062021162500_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_503_Arua%20District_3_28062021162500_0.pdf
## Downloading 112 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_538_Moroto%20District_37_01072021173228.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_538_Moroto%20District_37_01072021173228.pdf
## Downloading 113 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_860_Hoima%20City_189_01072021172834.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_860_Hoima%20City_189_01072021172834.pdf
## Downloading 114 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_853_Gulu%20City_182_01072021145901_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_853_Gulu%20City_182_01072021145901_0.pdf
## Downloading 115 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_568_Mityana%20District_67_06072021101217.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_568_Mityana%20District_67_06072021101217.pdf
## Downloading 116 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_563_Koboko%20District_62_23062021124129_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_563_Koboko%20District_62_23062021124129_0.pdf
## Downloading 117 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_599_Lwengo%20District_98_28062021114205.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_599_Lwengo%20District_98_28062021114205.pdf
## Downloading 118 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_505_Bundibugyo%20District_5_30062021115439.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_505_Bundibugyo%20District_5_30062021115439.pdf
## Downloading 119 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_539_Moyo%20District_38_23062021165020.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_539_Moyo%20District_38_23062021165020.pdf
## Downloading 120 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_859_Soroti%20City_188_13072021103459.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_859_Soroti%20City_188_13072021103459.pdf
## Downloading 121 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_854_Jinja%20City_183_26062021224004_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_854_Jinja%20City_183_26062021224004_0.pdf
## Downloading 122 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_569_Nakaseke%20District_68_05072021230027.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_569_Nakaseke%20District_68_05072021230027.pdf
## Downloading 123 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_634_Karenga%20District_177_01072021164016_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_634_Karenga%20District_177_01072021164016_0.pdf
## Downloading 124 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_600_Bukomansimbi%20District_99_29062021163721.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_600_Bukomansimbi%20District_99_29062021163721.pdf
## Downloading 125 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_540_Mpigi%20District_39_29062021160906.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_540_Mpigi%20District_39_29062021160906.pdf
## Downloading 126 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_752_Entebbe%20Municipal%20Council_113_30062021121322_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_752_Entebbe%20Municipal%20Council_113_30062021121322_0.pdf
## Downloading 127 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_855_Fort-Portal%20City_184_07072021133701_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_855_Fort-Portal%20City_184_07072021133701_0.pdf
## Downloading 128 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_570_Amuru%20District_69_29062021004924.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_570_Amuru%20District_69_29062021004924.pdf
## Downloading 129 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_601_Mitooma%20District_100_06072021133557.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_601_Mitooma%20District_100_06072021133557.pdf
## Downloading 130 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_541_Mubende%20District_40_05072021004455.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_541_Mubende%20District_40_05072021004455.pdf
## Downloading 131 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_757_Kabale%20Municipal%20Council_117_29062021183510_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_757_Kabale%20Municipal%20Council_117_29062021183510_0.pdf
## Downloading 132 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_856_Mbale%20City_185_24062021163116_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_856_Mbale%20City_185_24062021163116_0.pdf
## Downloading 133 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_571_Budaka%20District_70_27062021163523.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_571_Budaka%20District_70_27062021163523.pdf
## Downloading 134 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_572_Oyam%20District_71_02072021233353.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_572_Oyam%20District_71_02072021233353.pdf
## Downloading 135 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_797_Kotido%20Municipal%20Council_157_03072021181636.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_797_Kotido%20Municipal%20Council_157_03072021181636.pdf
## Downloading 136 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_602_Rubirizi%20District_101_28062021170818.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_602_Rubirizi%20District_101_28062021170818.pdf
## Downloading 137 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_506_Bushenyi%20District_6_02072021171929.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_506_Bushenyi%20District_6_02072021171929.pdf
## Downloading 138 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_542_Mukono%20District_41_29062021144231.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_542_Mukono%20District_41_29062021144231.pdf
## Downloading 139 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_762_Moroto%20Municipal%20Council_122_29062021164742_1.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_762_Moroto%20Municipal%20Council_122_29062021164742_1.pdf
## Downloading 140 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_857_Masaka%20City_186_04072021160120_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_857_Masaka%20City_186_04072021160120_0.pdf
## Downloading 141 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_635_Kalaki%20District_178_06072021181809.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_635_Kalaki%20District_178_06072021181809.pdf
## Downloading 142 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_636_Terego%20District_179_04072021161235.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_636_Terego%20District_179_04072021161235.pdf
## Downloading 143 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_573_Abim%20District_72_02072021124626.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_573_Abim%20District_72_02072021124626.pdf
## Downloading 144 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_851_Arua%20City_180_03072021233521.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_851_Arua%20City_180_03072021233521.pdf
## Downloading 145 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_603_Ngora%20District_102_01072021113838.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_603_Ngora%20District_102_01072021113838.pdf
## Downloading 146 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_507_Busia%20District_7_29062021094333.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_507_Busia%20District_7_29062021094333.pdf
## Downloading 147 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_543_Nakapiripirit%20District_42_01072021103932.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_543_Nakapiripirit%20District_42_01072021103932.pdf
## Downloading 148 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_752_Entebbe%20Municipal%20Council_113_30062021121322.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_752_Entebbe%20Municipal%20Council_113_30062021121322.pdf
## Downloading 149 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_852_Mbarara%20City_181_26062021120418.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_852_Mbarara%20City_181_26062021120418.pdf
## Downloading 150 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_604_Napak%20District_103_23062021231239.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_604_Napak%20District_103_23062021231239.pdf
## Downloading 151 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_544_Nakasongola%20District_43_04072021225504.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_544_Nakasongola%20District_43_04072021225504.pdf
## Downloading 152 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_757_Kabale%20Municipal%20Council_117_29062021183510.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_757_Kabale%20Municipal%20Council_117_29062021183510.pdf
## Downloading 153 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_853_Gulu%20City_182_01072021145901.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_853_Gulu%20City_182_01072021145901.pdf
## Downloading 154 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_605_Kibuku%20District_104_02072021160716.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_605_Kibuku%20District_104_02072021160716.pdf
## Downloading 155 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_545_Nebbi%20District_44_30062021175407.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_545_Nebbi%20District_44_30062021175407.pdf
## Downloading 156 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_762_Moroto%20Municipal%20Council_122_29062021164742.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_762_Moroto%20Municipal%20Council_122_29062021164742.pdf
## Downloading 157 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_854_Jinja%20City_183_26062021224004.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_854_Jinja%20City_183_26062021224004.pdf
## Downloading 158 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_606_Nwoya%20District_105_27062021165035.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_606_Nwoya%20District_105_27062021165035.pdf
## Downloading 159 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_547_Pader%20District_46_26062021150440.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_547_Pader%20District_46_26062021150440.pdf
## Downloading 160 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_630_Kazo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_630_Kazo.pdf
## Downloading 161 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_786_Mubende.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_786_Mubende.pdf
## Downloading 162 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_598_Kalungu.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_598_Kalungu.pdf
## Downloading 163 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_521_Kasese.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_521_Kasese.pdf
## Downloading 164 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_560_Isingiro.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_560_Isingiro.pdf
## Downloading 165 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_631_Rwampara.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_631_Rwampara.pdf
## Downloading 166 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_789_Kamuli.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_789_Kamuli.pdf
## Downloading 167 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_599_Lwengo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_599_Lwengo.pdf
## Downloading 168 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_522_Katakwi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_522_Katakwi.pdf
## Downloading 169 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_561_Kaliro.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_561_Kaliro.pdf
## Downloading 170 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_632_Kitagwenda.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_632_Kitagwenda.pdf
## Downloading 171 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_791_Ibanda.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_791_Ibanda.pdf
## Downloading 172 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_600_Bukomansimbi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_600_Bukomansimbi.pdf
## Downloading 173 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_523_Kayunga.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_523_Kayunga.pdf
## Downloading 174 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_562_Kiruhura.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_562_Kiruhura.pdf
## Downloading 175 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_633_Madi-Okollo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_633_Madi-Okollo.pdf
## Downloading 176 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_792_Njeru.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_792_Njeru.pdf
## Downloading 177 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_564_Amolatar.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_564_Amolatar.pdf
## Downloading 178 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_601_Mitooma.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_601_Mitooma.pdf
## Downloading 179 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_524_Kibaale.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_524_Kibaale.pdf
## Downloading 180 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_563_Koboko.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_563_Koboko.pdf
## Downloading 181 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_634_Karenga.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_634_Karenga.pdf
## Downloading 182 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_793_Apac.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_793_Apac.pdf
## Downloading 183 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_565_Amuria.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_565_Amuria.pdf
## Downloading 184 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_602_Rubirizi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_602_Rubirizi.pdf
## Downloading 185 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_525_Kiboga.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_525_Kiboga.pdf
## Downloading 186 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_635_Kalaki.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_635_Kalaki.pdf
## Downloading 187 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_794_Nebbi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_794_Nebbi.pdf
## Downloading 188 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_566_Manafwa.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_566_Manafwa.pdf
## Downloading 189 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_603_Ngora.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_603_Ngora.pdf
## Downloading 190 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_526_Kisoro.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_526_Kisoro.pdf
## Downloading 191 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_751_Arua.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_751_Arua.pdf
## Downloading 192 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_795_Bugiri.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_795_Bugiri.pdf
## Downloading 193 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_568_Mityana.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_568_Mityana.pdf
## Downloading 194 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_604_Napak.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_604_Napak.pdf
## Downloading 195 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_527_Kitgum.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_527_Kitgum.pdf
## Downloading 196 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_752_Entebbe.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_752_Entebbe.pdf
## Downloading 197 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_797_Kotido.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_797_Kotido.pdf
## Downloading 198 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_570_Amuru.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_570_Amuru.pdf
## Downloading 199 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_605_Kibuku.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_605_Kibuku.pdf
## Downloading 200 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_528_Kotido.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_528_Kotido.pdf
## Downloading 201 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_753_Fort-Portal.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_753_Fort-Portal.pdf
## Downloading 202 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_508_Gulu-1.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_508_Gulu-1.pdf
## Downloading 203 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_571_Budaka.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_571_Budaka.pdf
## Downloading 204 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_606_Nwoya.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_606_Nwoya.pdf
## Downloading 205 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_529_Kumi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_529_Kumi.pdf
## Downloading 206 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_755_Jinja.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_755_Jinja.pdf
## Downloading 207 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_553_Soroti.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_553_Soroti.pdf
## Downloading 208 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_574_Namutumba.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_574_Namutumba.pdf
## Downloading 209 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_607_Kole.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_607_Kole.pdf
## Downloading 210 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_530_Kyenjojo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_530_Kyenjojo.pdf
## Downloading 211 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_757_Kabale_0.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_757_Kabale_0.pdf
## Downloading 212 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_581_Amudat.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_581_Amudat.pdf
## Downloading 213 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_575_Dokolo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_575_Dokolo.pdf
## Downloading 214 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_608_Butambala.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_608_Butambala.pdf
## Downloading 215 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_531_Lira-1.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_531_Lira-1.pdf
## Downloading 216 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_758_Lira.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_758_Lira.pdf
## Downloading 217 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_629_Obongi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_629_Obongi.pdf
## Downloading 218 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_785_Koboko.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_785_Koboko.pdf
## Downloading 219 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_532_Luwero.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_532_Luwero.pdf
## Downloading 220 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_533_Masaka.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_533_Masaka.pdf
## Downloading 221 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_534_Masindi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_534_Masindi.pdf
## Downloading 222 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_535_Mayuge-1.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_535_Mayuge-1.pdf
## Downloading 223 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_501_Adjumani.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_501_Adjumani.pdf
## Downloading 224 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_537_Mbarara.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_537_Mbarara.pdf
## Downloading 225 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_502_Apac.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_502_Apac.pdf
## Downloading 226 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_538_Moroto.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_538_Moroto.pdf
## Downloading 227 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_503_Arua.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_503_Arua.pdf
## Downloading 228 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_576_Buliisa.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_576_Buliisa.pdf
## Downloading 229 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_539_Moyo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_539_Moyo.pdf
## Downloading 230 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_609_Sheema.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_609_Sheema.pdf
## Downloading 231 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_505_Bundibugyo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_505_Bundibugyo.pdf
## Downloading 232 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_577_Maracha.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_577_Maracha.pdf
## Downloading 233 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_540_Mpigi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_540_Mpigi.pdf
## Downloading 234 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_610_Buhweju.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_610_Buhweju.pdf
## Downloading 235 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_506_Bushenyi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_506_Bushenyi.pdf
## Downloading 236 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_578_Bukedea.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_578_Bukedea.pdf
## Downloading 237 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_541_Mubende.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_541_Mubende.pdf
## Downloading 238 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_611_Agago.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_611_Agago.pdf
## Downloading 239 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_507_Busia.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_507_Busia.pdf
## Downloading 240 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_579_Bududa.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_579_Bududa.pdf
## Downloading 241 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_542_Mukono.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_542_Mukono.pdf
## Downloading 242 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_612_Kween.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_612_Kween.pdf
## Downloading 243 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_509_Hoima.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_509_Hoima.pdf
## Downloading 244 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_579_Bududa_0.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_579_Bududa_0.pdf
## Downloading 245 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_543_Nakapiripirit.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_543_Nakapiripirit.pdf
## Downloading 246 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_613_Kagadi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_613_Kagadi.pdf
## Downloading 247 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%2C%20Local%20Governments%20FY%202020-21.pdf
## Downloaded: Approved%20Budget%20Estimates%2C%20Local%20Governments%20FY%202020-21.pdf
## Downloading 248 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_510_Iganga-1.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_510_Iganga-1.pdf
## Downloading 249 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_580_Lyantonde.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_580_Lyantonde.pdf
## Downloading 250 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_544_Nakasongola-1.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_544_Nakasongola-1.pdf
## Downloading 251 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_759_Masaka.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_759_Masaka.pdf
## Downloading 252 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_615_Omoro.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_615_Omoro.pdf
## Downloading 253 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20FY%202020-21.pdf
## Downloaded: Approved%20Budget%20Estimates%20FY%202020-21.pdf
## Downloading 254 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_511_Jinja.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_511_Jinja.pdf
## Downloading 255 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_582_Buikwe.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_582_Buikwe.pdf
## Downloading 256 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_545_Nebbi.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_545_Nebbi.pdf
## Downloading 257 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_760_Mbale_0.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_760_Mbale_0.pdf
## Downloading 258 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_616_Rubanda.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_616_Rubanda.pdf
## Downloading 259 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_512_Kabale.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_512_Kabale.pdf
## Downloading 260 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_583_Buyende.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_583_Buyende.pdf
## Downloading 261 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_547_Pader.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_547_Pader.pdf
## Downloading 262 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_761_Mbarara.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_761_Mbarara.pdf
## Downloading 263 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_617_Namisindwa.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_617_Namisindwa.pdf
## Downloading 264 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_513_Kabarole.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_513_Kabarole.pdf
## Downloading 265 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_584_Kyegegwa.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_584_Kyegegwa.pdf
## Downloading 266 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_548_Pallisa.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_548_Pallisa.pdf
## Downloading 267 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_763_Soroti.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_763_Soroti.pdf
## Downloading 268 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_618_Pakwach.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_618_Pakwach.pdf
## Downloading 269 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_514_Kaberamaido.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_514_Kaberamaido.pdf
## Downloading 270 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_585_Lamwo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_585_Lamwo.pdf
## Downloading 271 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_549_Rakai.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_549_Rakai.pdf
## Downloading 272 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_764_Tororo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_764_Tororo.pdf
## Downloading 273 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_619_Butebo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_619_Butebo.pdf
## Downloading 274 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_515_Kalangala.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_515_Kalangala.pdf
## Downloading 275 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_587_Zombo.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_587_Zombo.pdf
## Downloading 276 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_550_Rukungiri.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_550_Rukungiri.pdf
## Downloading 277 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_770_Kasese.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_770_Kasese.pdf
## Downloading 278 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2020-2021_ApprovedBudgetEstimates_622_Bunyangabu.pdf
## Downloaded: 2020-2021_ApprovedBudgetEstimates_622_Bunyangabu.pdf
## Downloading 279 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_507_Busia%20District_7_21_20194_33_05PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_507_Busia%20District_7_21_20194_33_05PM.pdf
## Downloading 280 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_603_Ngora%20District_7_12_20194_47_05PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_603_Ngora%20District_7_12_20194_47_05PM.pdf
## Downloading 281 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_568_Mityana%20District_7_17_201910_08_54AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_568_Mityana%20District_7_17_201910_08_54AM.pdf
## Downloading 282 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_792_Njeru%20Municipal%20Council_7_29_20199_40_23AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_792_Njeru%20Municipal%20Council_7_29_20199_40_23AM.pdf
## Downloading 283 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_752_Entebbe%20Municipal%20Council_7_9_201911_54_16AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_752_Entebbe%20Municipal%20Council_7_9_201911_54_16AM.pdf
## Downloading 284 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_550_Rukungiri%20District_7_16_20198_24_27PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_550_Rukungiri%20District_7_16_20198_24_27PM.pdf
## Downloading 285 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_508_Gulu%20District_7_18_20195_09_40PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_508_Gulu%20District_7_18_20195_09_40PM.pdf
## Downloading 286 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_604_Napak%20District_7_10_20191_06_53PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_604_Napak%20District_7_10_20191_06_53PM.pdf
## Downloading 287 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_570_Amuru%20District_7_24_20193_06_59PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_570_Amuru%20District_7_24_20193_06_59PM.pdf
## Downloading 288 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_793_Apac%20Municipal%20Council_7_25_201910_07_39AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_793_Apac%20Municipal%20Council_7_25_201910_07_39AM.pdf
## Downloading 289 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_753_Fort-Portal%20Municipal%20Council_7_24_201911_35_41AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_753_Fort-Portal%20Municipal%20Council_7_24_201911_35_41AM.pdf
## Downloading 290 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_551_Sembabule%20District_7_25_20194_52_54PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_551_Sembabule%20District_7_25_20194_52_54PM.pdf
## Downloading 291 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_509_Hoima%20District_7_11_20198_18_44AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_509_Hoima%20District_7_11_20198_18_44AM.pdf
## Downloading 292 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_605_Kibuku%20District_7_18_20193_42_57PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_605_Kibuku%20District_7_18_20193_42_57PM.pdf
## Downloading 293 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_571_Budaka%20District_7_17_20194_24_46PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_571_Budaka%20District_7_17_20194_24_46PM.pdf
## Downloading 294 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_794_Nebbi%20Municipal%20Council_7_23_201910_01_11AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_794_Nebbi%20Municipal%20Council_7_23_201910_01_11AM.pdf
## Downloading 295 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_754_Gulu%20Municipal%20Council_7_23_20193_33_26PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_754_Gulu%20Municipal%20Council_7_23_20193_33_26PM.pdf
## Downloading 296 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_556_Yumbe%20District_7_31_201912_12_34PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_556_Yumbe%20District_7_31_201912_12_34PM.pdf
## Downloading 297 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_510_Iganga%20District_7_9_20195_54_40PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_510_Iganga%20District_7_9_20195_54_40PM.pdf
## Downloading 298 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_606_Nwoya%20District_7_21_20199_41_38PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_606_Nwoya%20District_7_21_20199_41_38PM.pdf
## Downloading 299 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_572_Oyam%20District_7_25_201910_36_32AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_572_Oyam%20District_7_25_201910_36_32AM.pdf
## Downloading 300 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_795_Bugiri%20Municipal%20Council_7_17_20199_21_57AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_795_Bugiri%20Municipal%20Council_7_17_20199_21_57AM.pdf
## Downloading 301 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_755_Jinja%20Municipal%20Council_7_15_201910_52_52AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_755_Jinja%20Municipal%20Council_7_15_201910_52_52AM.pdf
## Downloading 302 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_559_Kaabong%20District_7_31_20196_49_54PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_559_Kaabong%20District_7_31_20196_49_54PM.pdf
## Downloading 303 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_511_Jinja%20District_7_4_201912_44_21PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_511_Jinja%20District_7_4_201912_44_21PM.pdf
## Downloading 304 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_607_Kole%20District_7_17_20194_15_58PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_607_Kole%20District_7_17_20194_15_58PM.pdf
## Downloading 305 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_573_Abim%20District_7_23_20192_15_35PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_573_Abim%20District_7_23_20192_15_35PM.pdf
## Downloading 306 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_796_Sheema%20Municipal%20Council_7_10_20195_14_34PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_796_Sheema%20Municipal%20Council_7_10_20195_14_34PM.pdf
## Downloading 307 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_757_Kabale%20Municipal%20Council_7_24_201910_34_57AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_757_Kabale%20Municipal%20Council_7_24_201910_34_57AM.pdf
## Downloading 308 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_569_Nakaseke%20District_7_24_20196_03_47PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_569_Nakaseke%20District_7_24_20196_03_47PM.pdf
## Downloading 309 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_622_Bunyangabu%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_622_Bunyangabu%20District_.pdf
## Downloading 310 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_512_Kabale%20District_7_22_201910_58_52AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_512_Kabale%20District_7_22_201910_58_52AM.pdf
## Downloading 311 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_608_Butambala%20District_7_25_20196_17_36PM_0.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_608_Butambala%20District_7_25_20196_17_36PM_0.pdf
## Downloading 312 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_574_Namutumba%20District_7_15_201912_28_30PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_574_Namutumba%20District_7_15_201912_28_30PM.pdf
## Downloading 313 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_797_Kotido%20Municipal%20Council_7_22_20196_41_34PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_797_Kotido%20Municipal%20Council_7_22_20196_41_34PM.pdf
## Downloading 314 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_758_Lira%20Municipal%20Council_7_25_20197_50_55PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_758_Lira%20Municipal%20Council_7_25_20197_50_55PM.pdf
## Downloading 315 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_579_Bududa%20District_7_11_20191_56_43PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_579_Bududa%20District_7_11_20191_56_43PM.pdf
## Downloading 316 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_515_Kalangala%20District_7_18_20195_32_20PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_515_Kalangala%20District_7_18_20195_32_20PM.pdf
## Downloading 317 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_609_Sheema%20District_7_22_201911_40_39AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_609_Sheema%20District_7_22_201911_40_39AM.pdf
## Downloading 318 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_575_Dokolo%20District_7_25_20194_08_23PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_575_Dokolo%20District_7_25_20194_08_23PM.pdf
## Downloading 319 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_547_Pader%20District_7_19_20192_12_26PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_547_Pader%20District_7_19_20192_12_26PM.pdf
## Downloading 320 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_759_Masaka%20Municipal%20Council_7_19_20196_21_16PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_759_Masaka%20Municipal%20Council_7_19_20196_21_16PM.pdf
## Downloading 321 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_581_Amudat%20District_7_30_201912_20_35PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_581_Amudat%20District_7_30_201912_20_35PM.pdf
## Downloading 322 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_582_Buikwe%20District_7_18_20194_22_17PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_582_Buikwe%20District_7_18_20194_22_17PM.pdf
## Downloading 323 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_517_Kamuli%20District_7_17_201912_58_36AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_517_Kamuli%20District_7_17_201912_58_36AM.pdf
## Downloading 324 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_610_Buhweju%20District_7_16_201910_49_14PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_610_Buhweju%20District_7_16_201910_49_14PM.pdf
## Downloading 325 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_576_Buliisa%20District_7_22_20199_45_00AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_576_Buliisa%20District_7_22_20199_45_00AM.pdf
## Downloading 326 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_502_Apac%20District_7_23_20193_34_20PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_502_Apac%20District_7_23_20193_34_20PM.pdf
## Downloading 327 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_760_Mbale%20Municipal%20Council_7_19_20194_48_59PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_760_Mbale%20Municipal%20Council_7_19_20194_48_59PM.pdf
## Downloading 328 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_583_Buyende%20District_7_12_20191_51_57PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_583_Buyende%20District_7_12_20191_51_57PM.pdf
## Downloading 329 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_518_Kamwenge%20District_7_17_20197_28_45PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_518_Kamwenge%20District_7_17_20197_28_45PM.pdf
## Downloading 330 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_611_Agago%20District_7_30_20199_54_05AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_611_Agago%20District_7_30_20199_54_05AM.pdf
## Downloading 331 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_577_Maracha%20District_7_19_201911_08_17AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_577_Maracha%20District_7_19_201911_08_17AM.pdf
## Downloading 332 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_506_Bushenyi%20District_7_25_20193_25_38PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_506_Bushenyi%20District_7_25_20193_25_38PM.pdf
## Downloading 333 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_761_Mbarara%20Municipal%20Council_7_23_20194_00_01PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_761_Mbarara%20Municipal%20Council_7_23_20194_00_01PM.pdf
## Downloading 334 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_762_Moroto%20Municipal%20Council_7_19_20193_32_11PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_762_Moroto%20Municipal%20Council_7_19_20193_32_11PM.pdf
## Downloading 335 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_585_Lamwo%20District_7_31_20192_13_43PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_585_Lamwo%20District_7_31_20192_13_43PM.pdf
## Downloading 336 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_521_Kasese%20District_7_9_20199_49_46AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_521_Kasese%20District_7_9_20199_49_46AM.pdf
## Downloading 337 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_612_Kween%20District_7_18_20199_04_16PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_612_Kween%20District_7_18_20199_04_16PM.pdf
## Downloading 338 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_578_Bukedea%20District_7_17_201911_38_14PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_578_Bukedea%20District_7_17_201911_38_14PM.pdf
## Downloading 339 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_524_Kibaale%20District_7_23_201910_38_41AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_524_Kibaale%20District_7_23_201910_38_41AM.pdf
## Downloading 340 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_519_Kanungu%20District_7_25_20192_51_07PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_519_Kanungu%20District_7_25_20192_51_07PM.pdf
## Downloading 341 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_763_Soroti%20Municipal%20Council_7_25_20193_10_34PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_763_Soroti%20Municipal%20Council_7_25_20193_10_34PM.pdf
## Downloading 342 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_584_Kyegegwa%20District_7_17_20191_03_53AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_584_Kyegegwa%20District_7_17_20191_03_53AM.pdf
## Downloading 343 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_522_Katakwi%20District_7_19_20195_23_56PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_522_Katakwi%20District_7_19_20195_23_56PM.pdf
## Downloading 344 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_613_Kagadi%20District_7_25_201911_42_31AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_613_Kagadi%20District_7_25_201911_42_31AM.pdf
## Downloading 345 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_580_Lyantonde%20District_7_26_20193_53_07PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_580_Lyantonde%20District_7_26_20193_53_07PM.pdf
## Downloading 346 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_589_Bulambuli%20District_7_19_20192_18_26PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_589_Bulambuli%20District_7_19_20192_18_26PM.pdf
## Downloading 347 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_505_Bundibugyo%20District_7_22_20195_29_01PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_505_Bundibugyo%20District_7_22_20195_29_01PM.pdf
## Downloading 348 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_764_Tororo%20Municipal%20Council_7_22_201910_24_11AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_764_Tororo%20Municipal%20Council_7_22_201910_24_11AM.pdf
## Downloading 349 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_501_Adjumani%20District_7_18_20192_13_37PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_501_Adjumani%20District_7_18_20192_13_37PM.pdf
## Downloading 350 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_523_Kayunga%20District_7_16_20196_26_18PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_523_Kayunga%20District_7_16_20196_26_18PM.pdf
## Downloading 351 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_614_Kakumiro%20District_7_30_20199_24_48PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_614_Kakumiro%20District_7_30_20199_24_48PM.pdf
## Downloading 352 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_590_Buvuma%20District_7_11_201912_37_30PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_590_Buvuma%20District_7_11_201912_37_30PM.pdf
## Downloading 353 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_513_Kabarole%20District_7_24_20196_41_41PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_513_Kabarole%20District_7_24_20196_41_41PM.pdf
## Downloading 354 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_777_Bushenyi-%20Ishaka%20Municipal%20Council_7_18_20193_26_00PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_777_Bushenyi-%20Ishaka%20Municipal%20Council_7_18_20193_26_00PM.pdf
## Downloading 355 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_586_Otuke%20District_7_18_201912_44_32PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_586_Otuke%20District_7_18_201912_44_32PM.pdf
## Downloading 356 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_526_Kisoro%20District_7_22_20191_08_25PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_526_Kisoro%20District_7_22_20191_08_25PM.pdf
## Downloading 357 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_615_Omoro%20District_7_31_20195_24_45PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_615_Omoro%20District_7_31_20195_24_45PM.pdf
## Downloading 358 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_616_Rubanda%20District_7_18_20199_02_15AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_616_Rubanda%20District_7_18_20199_02_15AM.pdf
## Downloading 359 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_591_Gomba%20District_7_19_201911_41_07AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_591_Gomba%20District_7_19_201911_41_07AM.pdf
## Downloading 360 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_514_Kaberamaido%20District_8_6_20197_17_41PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_514_Kaberamaido%20District_8_6_20197_17_41PM.pdf
## Downloading 361 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_778_Rukungiri%20Municipal%20Council_7_22_201911_06_16AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_778_Rukungiri%20Municipal%20Council_7_22_201911_06_16AM.pdf
## Downloading 362 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_587_Zombo%20District_7_22_201912_55_13PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_587_Zombo%20District_7_22_201912_55_13PM.pdf
## Downloading 363 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_527_Kitgum%20District_7_17_201910_44_48AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_527_Kitgum%20District_7_17_201910_44_48AM.pdf
## Downloading 364 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_617_Namisindwa%20District_7_26_20192_34_16PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_617_Namisindwa%20District_7_26_20192_34_16PM.pdf
## Downloading 365 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_592_Kiryandongo%20District_7_17_20193_26_38PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_592_Kiryandongo%20District_7_17_20193_26_38PM.pdf
## Downloading 366 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_520_Kapchorwa%20District_7_22_20196_00_55PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_520_Kapchorwa%20District_7_22_20196_00_55PM.pdf
## Downloading 367 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_779_Nansana%20Municipal%20Council_7_26_201911_18_52AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_779_Nansana%20Municipal%20Council_7_26_201911_18_52AM.pdf
## Downloading 368 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_528_Kotido%20District_7_9_20194_51_35PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_528_Kotido%20District_7_9_20194_51_35PM.pdf
## Downloading 369 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_529_Kumi%20District_7_15_20193_07_11PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_529_Kumi%20District_7_15_20193_07_11PM.pdf
## Downloading 370 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_588_Alebtong%20District_7_15_20194_52_39PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_588_Alebtong%20District_7_15_20194_52_39PM.pdf
## Downloading 371 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_618_Pakwach%20District_7_31_201912_27_34PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_618_Pakwach%20District_7_31_201912_27_34PM.pdf
## Downloading 372 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_593_Luuka%20District_7_23_20191_15_33AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_593_Luuka%20District_7_23_20191_15_33AM.pdf
## Downloading 373 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_525_Kiboga%20District_7_22_20191_31_36PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_525_Kiboga%20District_7_22_20191_31_36PM.pdf
## Downloading 374 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_780_Makindye%20Ssabagabo%20Municipal%20Council_7_22_20191_00_28PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_780_Makindye%20Ssabagabo%20Municipal%20Council_7_22_20191_00_28PM.pdf
## Downloading 375 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_530_Kyenjojo%20District_7_17_20195_02_32PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_530_Kyenjojo%20District_7_17_20195_02_32PM.pdf
## Downloading 376 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_624_Bugweri%20District_8_1_20193_14_31PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_624_Bugweri%20District_8_1_20193_14_31PM.pdf
## Downloading 377 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_781_Kira%20Municipal%20Council_7_10_20196_48_53PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_781_Kira%20Municipal%20Council_7_10_20196_48_53PM.pdf
## Downloading 378 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_791_Ibanda%20Municipal%20Council_7_18_20191_59_45PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_791_Ibanda%20Municipal%20Council_7_18_20191_59_45PM.pdf
## Downloading 379 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_549_Rakai%20District_7_9_20191_48_24PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_549_Rakai%20District_7_9_20191_48_24PM.pdf
## Downloading 380 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_620_Rukiga%20District_7_18_20196_19_01PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_620_Rukiga%20District_7_18_20196_19_01PM.pdf
## Downloading 381 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_782_Kisoro%20Municipal%20Council_7_24_20198_53_22AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_782_Kisoro%20Municipal%20Council_7_24_20198_53_22AM.pdf
## Downloading 382 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_621_Kyotera%20District_7_23_20195_27_32PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_621_Kyotera%20District_7_23_20195_27_32PM.pdf
## Downloading 383 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_622_Bunyangabu%20District_7_18_20191_30_36PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_622_Bunyangabu%20District_7_18_20191_30_36PM.pdf
## Downloading 384 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_623_Nabilatuk%20District_7_29_201910_38_51AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_623_Nabilatuk%20District_7_29_201910_38_51AM.pdf
## Downloading 385 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_594_Namayingo%20District_7_17_20199_07_22AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_594_Namayingo%20District_7_17_20199_07_22AM.pdf
## Downloading 386 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_531_Lira%20District_7_12_201910_43_57PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_531_Lira%20District_7_12_201910_43_57PM.pdf
## Downloading 387 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_625_Kasanda%20District_7_13_20193_29_06PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_625_Kasanda%20District_7_13_20193_29_06PM.pdf
## Downloading 388 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_595_Ntoroko%20District_7_25_20199_17_32AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_595_Ntoroko%20District_7_25_20199_17_32AM.pdf
## Downloading 389 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_552_Sironko%20District_7_18_20194_28_02PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_552_Sironko%20District_7_18_20194_28_02PM.pdf
## Downloading 390 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_626_Kwania%20District_7_23_20199_43_24PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_626_Kwania%20District_7_23_20199_43_24PM.pdf
## Downloading 391 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_596_Serere%20District_7_18_20192_44_07PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_596_Serere%20District_7_18_20192_44_07PM.pdf
## Downloading 392 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_597_Kyankwanzi%20District_7_16_20198_55_07AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_597_Kyankwanzi%20District_7_16_20198_55_07AM.pdf
## Downloading 393 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_553_Soroti%20District_7_23_201911_23_14PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_553_Soroti%20District_7_23_201911_23_14PM.pdf
## Downloading 394 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_627_Kapelebyong%20District_7_17_20197_03_25PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_627_Kapelebyong%20District_7_17_20197_03_25PM.pdf
## Downloading 395 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_598_Kalungu%20District_7_10_20194_34_26PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_598_Kalungu%20District_7_10_20194_34_26PM.pdf
## Downloading 396 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_554_Tororo%20District_7_8_20194_08_11PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_554_Tororo%20District_7_8_20194_08_11PM.pdf
## Downloading 397 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_628_Kikuube%20District_7_19_20192_14_56PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_628_Kikuube%20District_7_19_20192_14_56PM.pdf
## Downloading 398 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_599_Lwengo%20District_7_24_201912_07_50PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_599_Lwengo%20District_7_24_201912_07_50PM.pdf
## Downloading 399 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_555_Wakiso%20District_7_22_201912_13_26PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_555_Wakiso%20District_7_22_201912_13_26PM.pdf
## Downloading 400 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_629_Obongi%20District_7_16_20198_12_56PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_629_Obongi%20District_7_16_20198_12_56PM.pdf
## Downloading 401 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_557_Butaleja%20District_7_23_20195_38_59PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_557_Butaleja%20District_7_23_20195_38_59PM.pdf
## Downloading 402 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_630_Kazo%20District_7_18_20192_38_54PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_630_Kazo%20District_7_18_20192_38_54PM.pdf
## Downloading 403 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_558_Ibanda%20District_7_17_20196_45_57PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_558_Ibanda%20District_7_17_20196_45_57PM.pdf
## Downloading 404 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_631_Rwampara%20District_7_22_201911_56_34AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_631_Rwampara%20District_7_22_201911_56_34AM.pdf
## Downloading 405 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_600_Bukomansimbi%20District_7_23_201912_55_27PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_600_Bukomansimbi%20District_7_23_201912_55_27PM.pdf
## Downloading 406 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_560_Isingiro%20District_7_23_201910_11_00AM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_560_Isingiro%20District_7_23_201910_11_00AM.pdf
## Downloading 407 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_632_Kitagwenda%20District_7_24_201912_00_19PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_632_Kitagwenda%20District_7_24_201912_00_19PM.pdf
## Downloading 408 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_601_Mitooma%20District_7_24_20196_34_37PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_601_Mitooma%20District_7_24_20196_34_37PM.pdf
## Downloading 409 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_561_Kaliro%20District_7_21_20199_05_36PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_561_Kaliro%20District_7_21_20199_05_36PM.pdf
## Downloading 410 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_633_Madi-Okollo%20District_7_26_20194_41_58PM.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_633_Madi-Okollo%20District_7_26_20194_41_58PM.pdf
## Downloading 411 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2019-2020_ApprovedBudgetEstimates_600_Bukomansimbi%20District_7_23_201912_55_27PM_0.pdf
## Downloaded: 2019-2020_ApprovedBudgetEstimates_600_Bukomansimbi%20District_7_23_201912_55_27PM_0.pdf
## Downloading 412 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_570_Amuru%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_570_Amuru%20District_.pdf
## Downloading 413 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_602_Rubirizi%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_602_Rubirizi%20District_.pdf
## Downloading 414 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_753_Fort-Portal%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_753_Fort-Portal%20Municipal%20Council_.pdf
## Downloading 415 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_530_Kyenjojo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_530_Kyenjojo%20District_.pdf
## Downloading 416 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_628_Kikuube%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_628_Kikuube%20District_.pdf
## Downloading 417 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_797_Kotido%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_797_Kotido%20Municipal%20Council_.pdf
## Downloading 418 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_572_Oyam%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_572_Oyam%20District_.pdf
## Downloading 419 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_604_Napak%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_604_Napak%20District_.pdf
## Downloading 420 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_757_Kabale%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_757_Kabale%20Municipal%20Council_.pdf
## Downloading 421 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_531_Lira%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_531_Lira%20District_.pdf
## Downloading 422 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_503_Arua%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_503_Arua%20District_.pdf
## Downloading 423 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_573_Abim%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_573_Abim%20District_.pdf
## Downloading 424 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_608_Butambala%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_608_Butambala%20District_.pdf
## Downloading 425 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_754_Gulu%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_754_Gulu%20Municipal%20Council_.pdf
## Downloading 426 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_532_Luwero%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_532_Luwero%20District_.pdf
## Downloading 427 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_505_Bundibugyo%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_505_Bundibugyo%20District.pdf
## Downloading 428 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_507_Busia%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_507_Busia%20District_.pdf
## Downloading 429 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_574_Namutumba%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_574_Namutumba%20District_.pdf
## Downloading 430 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_609_Sheema%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_609_Sheema%20District.pdf
## Downloading 431 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_758_Lira%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_758_Lira%20Municipal%20Council_.pdf
## Downloading 432 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_535_Mayuge%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_535_Mayuge%20District_.pdf
## Downloading 433 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_508_Gulu%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_508_Gulu%20District.pdf
## Downloading 434 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_575_Dokolo%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_575_Dokolo%20District.pdf
## Downloading 435 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_619_Butebo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_619_Butebo%20District_.pdf
## Downloading 436 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_759_Masaka%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_759_Masaka%20Municipal%20Council_.pdf
## Downloading 437 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_536_Mbale%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_536_Mbale%20District_.pdf
## Downloading 438 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_510_Iganga%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_510_Iganga%20District_.pdf
## Downloading 439 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_576_Buliisa%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_576_Buliisa%20District_.pdf
## Downloading 440 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%202018-19%20Volume%201..pdf
## Downloaded: Approved%20Budget%20Estimates%202018-19%20Volume%201..pdf
## Downloading 441 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_760_Mbale%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_760_Mbale%20Municipal%20Council_.pdf
## Downloading 442 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_549_Rakai%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_549_Rakai%20District.pdf
## Downloading 443 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_534_Masindi%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_534_Masindi%20District_.pdf
## Downloading 444 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_520_Kapchorwa%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_520_Kapchorwa%20District.pdf
## Downloading 445 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_618_Pakwach%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_618_Pakwach%20District_.pdf
## Downloading 446 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_581_Amudat%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_581_Amudat%20District_.pdf
## Downloading 447 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_501_Adjumani%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_501_Adjumani%20District.pdf
## Downloading 448 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_544_Nakasongola%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_544_Nakasongola%20District_.pdf
## Downloading 449 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_521_Kasese%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_521_Kasese%20District_.pdf
## Downloading 450 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_620_Rukiga%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_620_Rukiga%20District_.pdf
## Downloading 451 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_603_Ngora%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_603_Ngora%20District_.pdf
## Downloading 452 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_793_Apac%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_793_Apac%20Municipal%20Council_.pdf
## Downloading 453 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_543_Nakapiripirit%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_543_Nakapiripirit%20District_.pdf
## Downloading 454 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_522_Katakwi%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_522_Katakwi%20District_.pdf
## Downloading 455 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_622_Bunyangabu%20District__0.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_622_Bunyangabu%20District__0.pdf
## Downloading 456 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_584_Kyegegwa%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_584_Kyegegwa%20District_.pdf
## Downloading 457 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_624_Bugweri%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_624_Bugweri%20District_.pdf
## Downloading 458 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_511_Jinja%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_511_Jinja%20District.pdf
## Downloading 459 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_545_Nebbi%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_545_Nebbi%20District_.pdf
## Downloading 460 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_523_Kayunga%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_523_Kayunga%20District_.pdf
## Downloading 461 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_751_Arua%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_751_Arua%20Municipal%20Council_.pdf
## Downloading 462 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_585_Lamwo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_585_Lamwo%20District_.pdf
## Downloading 463 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_625_Kasanda%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_625_Kasanda%20District_.pdf
## Downloading 464 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_541_Mubende%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_541_Mubende%20District.pdf
## Downloading 465 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_546_Ntungamo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_546_Ntungamo%20District_.pdf
## Downloading 466 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_524_Kibaale%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_524_Kibaale%20District_.pdf
## Downloading 467 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_752_Entebbe%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_752_Entebbe%20Municipal%20Council_.pdf
## Downloading 468 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_586_Otuke%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_586_Otuke%20District_.pdf
## Downloading 469 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_627_Kapelebyong%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_627_Kapelebyong%20District.pdf
## Downloading 470 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_571_Budaka%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_571_Budaka%20District_.pdf
## Downloading 471 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_547_Pader%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_547_Pader%20District_.pdf
## Downloading 472 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_525_Kiboga%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_525_Kiboga%20District_.pdf
## Downloading 473 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_587_Zombo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_587_Zombo%20District_.pdf
## Downloading 474 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_579_Bududa%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_579_Bududa%20District_.pdf
## Downloading 475 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_548_Pallisa%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_548_Pallisa%20District_.pdf
## Downloading 476 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_526_Kisoro%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_526_Kisoro%20District_.pdf
## Downloading 477 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_588_Alebtong%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_588_Alebtong%20District_.pdf
## Downloading 478 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_591_Gomba%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_591_Gomba%20District_.pdf
## Downloading 479 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_551_Sembabule%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_551_Sembabule%20District_.pdf
## Downloading 480 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_527_Kitgum%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_527_Kitgum%20District_.pdf
## Downloading 481 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_589_Bulambuli%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_589_Bulambuli%20District_.pdf
## Downloading 482 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_597_Kyankwanzi%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_597_Kyankwanzi%20District_.pdf
## Downloading 483 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_552_Sironko%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_552_Sironko%20District_.pdf
## Downloading 484 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_529_Kumi%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_529_Kumi%20District_.pdf
## Downloading 485 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_590_Buvuma%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_590_Buvuma%20District_.pdf
## Downloading 486 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_553_Soroti%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_553_Soroti%20District.pdf
## Downloading 487 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_592_Kiryandongo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_592_Kiryandongo%20District_.pdf
## Downloading 488 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_554_Tororo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_554_Tororo%20District_.pdf
## Downloading 489 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_555_Wakiso%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_555_Wakiso%20District_.pdf
## Downloading 490 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_761_Mbarara%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_761_Mbarara%20Municipal%20Council_.pdf
## Downloading 491 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_556_Yumbe%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_556_Yumbe%20District_.pdf
## Downloading 492 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_762_Moroto%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_762_Moroto%20Municipal%20Council_.pdf
## Downloading 493 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_557_Butaleja%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_557_Butaleja%20District_.pdf
## Downloading 494 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_763_Soroti%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_763_Soroti%20Municipal%20Council_.pdf
## Downloading 495 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_558_Ibanda%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_558_Ibanda%20District_.pdf
## Downloading 496 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_537_Mbarara%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_537_Mbarara%20District_.pdf
## Downloading 497 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_764_Tororo%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_764_Tororo%20Municipal%20Council_.pdf
## Downloading 498 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_609_Sheema%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_609_Sheema%20District_.pdf
## Downloading 499 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_559_Kaabong%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_559_Kaabong%20District_.pdf
## Downloading 500 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_772_Mukono%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_772_Mukono%20Municipal%20Council_.pdf
## Downloading 501 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_755_Jinja%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_755_Jinja%20Municipal%20Council_.pdf
## Downloading 502 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_594_Namayingo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_594_Namayingo%20District_.pdf
## Downloading 503 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_560_Isingiro%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_560_Isingiro%20District.pdf
## Downloading 504 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_773_Iganga%20Municipal%20Council.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_773_Iganga%20Municipal%20Council.pdf
## Downloading 505 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_770_Kasese%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_770_Kasese%20Municipal%20Council_.pdf
## Downloading 506 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_595_Ntoroko%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_595_Ntoroko%20District_.pdf
## Downloading 507 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_563_Koboko%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_563_Koboko%20District.pdf
## Downloading 508 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_774_Masindi%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_774_Masindi%20Municipal%20Council_.pdf
## Downloading 509 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_779_Nansana%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_779_Nansana%20Municipal%20Council_.pdf
## Downloading 510 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_775_Ntungamo%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_775_Ntungamo%20Municipal%20Council_.pdf
## Downloading 511 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_598_Kalungu%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_598_Kalungu%20District_.pdf
## Downloading 512 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_565_Amuria%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_565_Amuria%20District.pdf
## Downloading 513 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_780_Makindye%20Ssabagabo%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_780_Makindye%20Ssabagabo%20Municipal%20Council_.pdf
## Downloading 514 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_778_Rukungiri%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_778_Rukungiri%20Municipal%20Council_.pdf
## Downloading 515 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_599_Lwengo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_599_Lwengo%20District_.pdf
## Downloading 516 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_566_Manafwa%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_566_Manafwa%20District_.pdf
## Downloading 517 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_781_Kira%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_781_Kira%20Municipal%20Council_.pdf
## Downloading 518 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_538_Moroto%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_538_Moroto%20District_.pdf
## Downloading 519 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_793_Apac%20Municipal%20Council__0.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_793_Apac%20Municipal%20Council__0.pdf
## Downloading 520 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_600_Bukomansimbi%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_600_Bukomansimbi%20District_.pdf
## Downloading 521 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_567_Bukwo%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_567_Bukwo%20District_.pdf
## Downloading 522 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_568_Mityana%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_568_Mityana%20District_.pdf
## Downloading 523 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_782_Kisoro%20Municipal%20Council.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_782_Kisoro%20Municipal%20Council.pdf
## Downloading 524 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_796_Sheema%20Municipal%20Council_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_796_Sheema%20Municipal%20Council_.pdf
## Downloading 525 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_550_Rukungiri%20District.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_550_Rukungiri%20District.pdf
## Downloading 526 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/APPROVED%20BUDGET%20ESTIMATES%20%20Vol-1%20FY%202016-17.pdf
## Downloaded: APPROVED%20BUDGET%20ESTIMATES%20%20Vol-1%20FY%202016-17.pdf
## Downloading 527 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20FY%202016-17-Volume%203.pdf
## Downloaded: Approved%20Budget%20Estimates%20FY%202016-17-Volume%203.pdf
## Downloading 528 of 680 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates-Volume%20I%20FY%202015-16.pdf
## Downloaded: Approved%20Budget%20Estimates-Volume%20I%20FY%202015-16.pdf
## Downloading 529 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Kabale%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Kabale%20Referral%20Hospital.pdf
## Downloading 530 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Public%20Sector%20Management_Ministry%20of%20Public%20Service.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Public%20Sector%20Management_Ministry%20of%20Public%20Service.pdf
## Downloading 531 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_KCCA.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_KCCA.pdf
## Downloading 532 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Public%20Sector%20Management_National%20Planning%20Authority.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Public%20Sector%20Management_National%20Planning%20Authority.pdf
## Downloading 533 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Lira%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Lira%20Referral%20Hospital.pdf
## Downloading 534 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Public%20Sector%20Management_Public%20Service%20Commission.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Public%20Sector%20Management_Public%20Service%20Commission.pdf
## Downloading 535 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Masaka%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Masaka%20Referral%20Hospital.pdf
## Downloading 536 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Public%20Sector%20Management_Office%20of%20The%20Prime%20Minister.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Public%20Sector%20Management_Office%20of%20The%20Prime%20Minister.pdf
## Downloading 537 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Mbale%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Mbale%20Referral%20Hospital.pdf
## Downloading 538 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Security_ESO.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Security_ESO.pdf
## Downloading 539 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Ministry%20of%20Health.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Ministry%20of%20Health.pdf
## Downloading 540 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Moroto%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Moroto%20Referral%20Hospital.pdf
## Downloading 541 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Security_Ministry%20of%20Defence.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Security_Ministry%20of%20Defence.pdf
## Downloading 542 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Mubende%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Mubende%20Referral%20Hospital.pdf
## Downloading 543 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Security_Office%20of%20the%20President.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Security_Office%20of%20the%20President.pdf
## Downloading 544 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Mulago%20Hospital%20Complex.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Mulago%20Hospital%20Complex.pdf
## Downloading 545 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Social%20Development_Equal%20Opportunities%20Commission.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Social%20Development_Equal%20Opportunities%20Commission.pdf
## Downloading 546 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Ethics%20and%20Intergrity.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Ethics%20and%20Intergrity.pdf
## Downloading 547 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_NMS.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_NMS.pdf
## Downloading 548 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Social%20Development_KCCA.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Social%20Development_KCCA.pdf
## Downloading 549 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Auditor%20General.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Auditor%20General.pdf
## Downloading 550 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Naguru%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Naguru%20Referral%20Hospital.pdf
## Downloading 551 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Social%20Development_Ministry%20of%20Gender%2C%20Labour%20and%20social%20Development.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Social%20Development_Ministry%20of%20Gender%2C%20Labour%20and%20social%20Development.pdf
## Downloading 552 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Inspectorate%20of%20Government.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Inspectorate%20of%20Government.pdf
## Downloading 553 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Soroti%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Soroti%20Referral%20Hospital.pdf
## Downloading 554 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_Ministry%20of%20Tourism%2C%20Wildlife%20and%20Antiquities.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_Ministry%20of%20Tourism%2C%20Wildlife%20and%20Antiquities.pdf
## Downloading 555 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Min%20of%20Finance%2C%20Planning%20%26%20Economic%20Dev..pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Min%20of%20Finance%2C%20Planning%20%26%20Economic%20Dev..pdf
## Downloading 556 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_UBTS.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_UBTS.pdf
## Downloading 557 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_Ministry%20of%20Trade%2C%20Industry%20and%20Cooperatives.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_Ministry%20of%20Trade%2C%20Industry%20and%20Cooperatives.pdf
## Downloading 558 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_PPDA.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_PPDA.pdf
## Downloading 559 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Uganda%20AIDS%20Commission.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Uganda%20AIDS%20Commission.pdf
## Downloading 560 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_Uganda%20Industrial%20Research%20Institute.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_Uganda%20Industrial%20Research%20Institute.pdf
## Downloading 561 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Treasury%20Operations.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Treasury%20Operations.pdf
## Downloading 562 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Uganda%20Cancer%20Institute.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Uganda%20Cancer%20Institute.pdf
## Downloading 563 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_Uganda%20Tourism%20Board.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_Uganda%20Tourism%20Board.pdf
## Downloading 564 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Uganda%20Bureau%20of%20Statistics.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_Uganda%20Bureau%20of%20Statistics.pdf
## Downloading 565 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Uganda%20Heart%20Institute.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Uganda%20Heart%20Institute.pdf
## Downloading 566 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_UNBS.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Tourism%2C%20Trade%20and%20Industry_UNBS.pdf
## Downloading 567 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_URA.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Accountability_URA.pdf
## Downloading 568 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_DPP.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_DPP.pdf
## Downloading 569 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Water%20and%20Environment_KCCA.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Water%20and%20Environment_KCCA.pdf
## Downloading 570 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20Dairy%20Development%20Authority.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20Dairy%20Development%20Authority.pdf
## Downloading 571 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Judicial%20Service%20Commission.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Judicial%20Service%20Commission.pdf
## Downloading 572 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Water%20and%20Environment_Ministry%20of%20Water%20and%20Environment.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Water%20and%20Environment_Ministry%20of%20Water%20and%20Environment.pdf
## Downloading 573 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20KCCA.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20KCCA.pdf
## Downloading 574 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Judiciary.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Judiciary.pdf
## Downloading 575 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Water%20and%20Environment_NEMA.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Water%20and%20Environment_NEMA.pdf
## Downloading 576 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20Ministry%20of%20Agriculture%2C%20Animal%20%26%20Fisheries.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20Ministry%20of%20Agriculture%2C%20Animal%20%26%20Fisheries.pdf
## Downloading 577 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Law%20Reform%20Commission.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Law%20Reform%20Commission.pdf
## Downloading 578 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Water%20and%20Environment_NFA.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Water%20and%20Environment_NFA.pdf
## Downloading 579 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20NAADS%20Secretariat.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20NAADS%20Secretariat.pdf
## Downloading 580 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Ministry%20of%20Internal%20Affairs.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Ministry%20of%20Internal%20Affairs.pdf
## Downloading 581 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_KCCA.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_KCCA.pdf
## Downloading 582 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20NARO.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20NARO.pdf
## Downloading 583 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_NCIC.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_NCIC.pdf
## Downloading 584 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_Ministry%20of%20Works%20and%20Transport.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_Ministry%20of%20Works%20and%20Transport.pdf
## Downloading 585 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20National%20Animal%20genetic%20Res.%20Centre%20and%20Data%20Bank.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20National%20Animal%20genetic%20Res.%20Centre%20and%20Data%20Bank.pdf
## Downloading 586 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Uganda%20Human%20Rights%20Commission.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Uganda%20Human%20Rights%20Commission.pdf
## Downloading 587 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_KCCA_0.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_KCCA_0.pdf
## Downloading 588 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_Ministry%20of%20Works%20and%20Transport_0.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_Ministry%20of%20Works%20and%20Transport_0.pdf
## Downloading 589 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20Uganda%20Coffe%20Development%20Authority.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20Uganda%20Coffe%20Development%20Authority.pdf
## Downloading 590 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Uganda%20Police%20Force.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Uganda%20Police%20Force.pdf
## Downloading 591 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_Road%20Fund.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_Road%20Fund.pdf
## Downloading 592 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20Uganda%20Cotton%20Development%20Org.pdf
## Downloaded: Annaul%20Approved%20Budget%20Estimates%202013-14_Agriculture_%20Uganda%20Cotton%20Development%20Org.pdf
## Downloading 593 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Uganda%20Prisons.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Justice%2C%20Law%20and%20Order_Uganda%20Prisons.pdf
## Downloading 594 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_UNRA.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Works%20and%20Transport_UNRA.pdf
## Downloading 595 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20%20Budget%20Estimates%202013-14_Health_Mbarara%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20%20Budget%20Estimates%202013-14_Health_Mbarara%20Referral%20Hospital.pdf
## Downloading 596 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Annual%20Approved%20Budget%20Estimates%202013-14_Health_Jinja%20Referral%20Hospital.pdf
## Downloaded: Annual%20Approved%20Budget%20Estimates%202013-14_Health_Jinja%20Referral%20Hospital.pdf
## Downloading 597 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Accountability_Inspectorate%20of%20Government.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Accountability_Inspectorate%20of%20Government.pdf
## Downloading 598 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Water%20and%20Environment_National%20Environment%20Management%20Authority.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Water%20and%20Environment_National%20Environment%20Management%20Authority.pdf
## Downloading 599 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Moroto%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Moroto%20Referral%20Hospital.pdf
## Downloading 600 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Accountability_Ethics%20and%20Integrity.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Accountability_Ethics%20and%20Integrity.pdf
## Downloading 601 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Works%20and%20Transport_Ministry%20of%20Works%20and%20Transport.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Works%20and%20Transport_Ministry%20of%20Works%20and%20Transport.pdf
## Downloading 602 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Ministry%20of%20Health.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Ministry%20of%20Health.pdf
## Downloading 603 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Accountability_Public%20Procurement%20and%20Disposal%20Authority.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Accountability_Public%20Procurement%20and%20Disposal%20Authority.pdf
## Downloading 604 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Works%20and%20Transport_Road%20Fund.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Works%20and%20Transport_Road%20Fund.pdf
## Downloading 605 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_National%20Medical%20Stores.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_National%20Medical%20Stores.pdf
## Downloading 606 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Accountability_Treasury%20Operations.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Accountability_Treasury%20Operations.pdf
## Downloading 607 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Works%20and%20Transport_Uganda%20National%20Roads%20Authority.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Works%20and%20Transport_Uganda%20National%20Roads%20Authority.pdf
## Downloading 608 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Mulago%20Hospital%20Complex.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Mulago%20Hospital%20Complex.pdf
## Downloading 609 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Accountability_Uganda%20Revenue%20Authority.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Accountability_Uganda%20Revenue%20Authority.pdf
## Downloading 610 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Naguru%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Naguru%20Referral%20Hospital.pdf
## Downloading 611 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Agriculture_Diary%20Development%20Authority.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Agriculture_Diary%20Development%20Authority.pdf
## Downloading 612 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Soroti%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Soroti%20Referral%20Hospital.pdf
## Downloading 613 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Agriculture_Ministry%20of%20Agriculture%2C%20Animal%20Industry%20and%20Fisheries.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Agriculture_Ministry%20of%20Agriculture%2C%20Animal%20Industry%20and%20Fisheries.pdf
## Downloading 614 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Uganda%20AIDS%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Uganda%20AIDS%20Commission.pdf
## Downloading 615 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Agriculture_NAADs%20Secretariat.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Agriculture_NAADs%20Secretariat.pdf
## Downloading 616 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Uganda%20Blood%20Transfusion%20Service.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Uganda%20Blood%20Transfusion%20Service.pdf
## Downloading 617 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Agriculture_National%20Agricultural%20Research%20Organisation.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Agriculture_National%20Agricultural%20Research%20Organisation.pdf
## Downloading 618 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Uganda%20Heart%20Institute.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Uganda%20Heart%20Institute.pdf
## Downloading 619 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Agriculture_Uganda%20Coffee%20Development%20Authority.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Agriculture_Uganda%20Coffee%20Development%20Authority.pdf
## Downloading 620 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Uganda%20Cancer%20Institute.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Uganda%20Cancer%20Institute.pdf
## Downloading 621 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Agriculture_Uganda%20Cotton%20Development%20Organisation.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Agriculture_Uganda%20Cotton%20Development%20Organisation.pdf
## Downloading 622 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Information%20and%20Communications%20Technology_Ministry%20of%20ICT.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Information%20and%20Communications%20Technology_Ministry%20of%20ICT.pdf
## Downloading 623 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Uganda%20Registraion%20Services%20Bureau.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Uganda%20Registraion%20Services%20Bureau.pdf
## Downloading 624 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Busitema%20University.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Busitema%20University.pdf
## Downloading 625 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Judicial%20Service%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Judicial%20Service%20Commission.pdf
## Downloading 626 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Lands%2C%20Housing%20and%20Urban%20Development_Uganda%20Land%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Lands%2C%20Housing%20and%20Urban%20Development_Uganda%20Land%20Commission.pdf
## Downloading 627 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Education%20Service%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Education%20Service%20Commission.pdf
## Downloading 628 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Directorate%20of%20Public%20Prosecution.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Directorate%20of%20Public%20Prosecution.pdf
## Downloading 629 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Lands%2C%20Housing%20and%20Urban%20Development_Ministry%20of%20Lands%2C%20Housing%20and%20Urban%20Development.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Lands%2C%20Housing%20and%20Urban%20Development_Ministry%20of%20Lands%2C%20Housing%20and%20Urban%20Development.pdf
## Downloading 630 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Gulu%20University.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Gulu%20University.pdf
## Downloading 631 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Judiciary.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Judiciary.pdf
## Downloading 632 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Legislature_Parliamentary%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Legislature_Parliamentary%20Commission.pdf
## Downloading 633 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Kyambogo%20University.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Kyambogo%20University.pdf
## Downloading 634 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Law%20Development%20Centre.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Law%20Development%20Centre.pdf
## Downloading 635 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Public%20Administration_Electoral%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Public%20Administration_Electoral%20Commission.pdf
## Downloading 636 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Makerere%20University%20Business%20School.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Makerere%20University%20Business%20School.pdf
## Downloading 637 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Law%20Reform%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Law%20Reform%20Commission.pdf
## Downloading 638 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Public%20Administration_Ministry%20of%20Foreign%20Affairs.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Public%20Administration_Ministry%20of%20Foreign%20Affairs.pdf
## Downloading 639 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Makerere%20University.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Makerere%20University.pdf
## Downloading 640 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Ministry%20of%20Internal%20Affairs.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Ministry%20of%20Internal%20Affairs.pdf
## Downloading 641 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Public%20Administration_Office%20of%20the%20President.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Public%20Administration_Office%20of%20the%20President.pdf
## Downloading 642 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Mbarara%20University.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Mbarara%20University.pdf
## Downloading 643 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Ministry%20of%20Justice%20and%20Constitutional%20Affairs.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Ministry%20of%20Justice%20and%20Constitutional%20Affairs.pdf
## Downloading 644 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Public%20Administration_State%20House.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Public%20Administration_State%20House.pdf
## Downloading 645 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Ministry%20of%20Education%20and%20Sports.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Ministry%20of%20Education%20and%20Sports.pdf
## Downloading 646 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_National%20Citizenship%20and%20Immigration%20Control.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_National%20Citizenship%20and%20Immigration%20Control.pdf
## Downloading 647 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Public%20Sector%20Management_Local%20Government%20Finance%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Public%20Sector%20Management_Local%20Government%20Finance%20Commission.pdf
## Downloading 648 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Education_Uganda%20Management%20Institute.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Education_Uganda%20Management%20Institute.pdf
## Downloading 649 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Uganda%20Human%20Rights%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Uganda%20Human%20Rights%20Commission.pdf
## Downloading 650 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Public%20Sector%20Management_East%20African%20community.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Public%20Sector%20Management_East%20African%20community.pdf
## Downloading 651 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Energy%20and%20Mineral%20Development_Ministry%20of%20Energy%20and%20Mineral%20Development.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Energy%20and%20Mineral%20Development_Ministry%20of%20Energy%20and%20Mineral%20Development.pdf
## Downloading 652 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Uganda%20Police%20Force.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Uganda%20Police%20Force.pdf
## Downloading 653 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Public%20Sector%20Management_Ministry%20of%20Local%20Government.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Public%20Sector%20Management_Ministry%20of%20Local%20Government.pdf
## Downloading 654 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Butabika%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Butabika%20Hospital.pdf
## Downloading 655 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Uganda%20Prisons.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Justice%2C%20Law%20and%20Order_Uganda%20Prisons.pdf
## Downloading 656 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Public%20Sector%20Management_Ministry%20of%20Public%20Service.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Public%20Sector%20Management_Ministry%20of%20Public%20Service.pdf
## Downloading 657 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Fort%20Portal%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Fort%20Portal%20Referral%20Hospital.pdf
## Downloading 658 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Security_External%20Security%20Organisation.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Security_External%20Security%20Organisation.pdf
## Downloading 659 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Gulu%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Gulu%20Referral%20Hospital.pdf
## Downloading 660 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Security_Ministry%20of%20Defence.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Security_Ministry%20of%20Defence.pdf
## Downloading 661 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Security_Office%20of%20the%20President.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Security_Office%20of%20the%20President.pdf
## Downloading 662 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Hoima%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Hoima%20Referral%20Hospital.pdf
## Downloading 663 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Social%20Development%2CMinistry%20of%20Gender%2C%20Labour%20and%20Social%20Devlopment.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Social%20Development%2CMinistry%20of%20Gender%2C%20Labour%20and%20Social%20Devlopment.pdf
## Downloading 664 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Jinja%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Jinja%20Referral%20Hospital.pdf
## Downloading 665 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Kabale%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Kabale%20Referral%20Hospital.pdf
## Downloading 666 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Tourism%2C%20Trade%20and%20Industry%20_Uganda%20National%20Bureau%20of%20Standards.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Tourism%2C%20Trade%20and%20Industry%20_Uganda%20National%20Bureau%20of%20Standards.pdf
## Downloading 667 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Tourism%2C%20Trade%20and%20Industry_Ministry%20of%20Tourism%2C%20Wildlife%20and%20Antiquities.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Tourism%2C%20Trade%20and%20Industry_Ministry%20of%20Tourism%2C%20Wildlife%20and%20Antiquities.pdf
## Downloading 668 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Lira%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Lira%20Referral%20Hospital.pdf
## Downloading 669 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Tourism%2C%20Trade%20and%20Industry_Uganda%20Industrial%20Research%20Institute.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Tourism%2C%20Trade%20and%20Industry_Uganda%20Industrial%20Research%20Institute.pdf
## Downloading 670 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Masaka%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Masaka%20Referral%20Hospital.pdf
## Downloading 671 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Tourism%2C%20Trade%20and%20Industry_Uganda%20Toursim%20Board.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Tourism%2C%20Trade%20and%20Industry_Uganda%20Toursim%20Board.pdf
## Downloading 672 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Mbale%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Mbale%20Referral%20Hospital.pdf
## Downloading 673 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Accountability_Auditor%20General.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Accountability_Auditor%20General.pdf
## Downloading 674 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Water%20and%20Environment_Ministry%20of%20Water%20and%20Environment.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Water%20and%20Environment_Ministry%20of%20Water%20and%20Environment.pdf
## Downloading 675 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Mbarara%20Referral%20Hospital.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Mbarara%20Referral%20Hospital.pdf
## Downloading 676 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202011-12_Accountability_Auditor%20General.pdf
## Downloaded: Approved%20Budget%20Estimates%202011-12_Accountability_Auditor%20General.pdf
## Downloading 677 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_582_Buikwe%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_582_Buikwe%20District_.pdf
## Downloading 678 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2021-2022_ApprovedBudgetEstimates_561_Kaliro%20District_60_13072021072028_0.pdf
## Downloaded: 2021-2022_ApprovedBudgetEstimates_561_Kaliro%20District_60_13072021072028_0.pdf
## Downloading 679 of 680 : https://budget.finance.go.ug/sites/default/files/Indivisual%20LG%20Budgets/2018-2019_ApprovedBudgetEstimates_593_Luuka%20District_.pdf
## Downloaded: 2018-2019_ApprovedBudgetEstimates_593_Luuka%20District_.pdf
## Downloading 680 of 680 : https://budget.finance.go.ug/sites/default/files/%20Sector%20Spending%20Agency%20Budgets%20and%20Performance/Approved%20Budget%20Estimates%202012-13_Health_Health%20Service%20Commission.pdf
## Downloaded: Approved%20Budget%20Estimates%202012-13_Health_Health%20Service%20Commission.pdf
cat("Download complete. PDFs saved in folder:", output_folder, "\n") # Print completion message
## Download complete. PDFs saved in folder: budget_pdfs
Filtering Links Containing Specific Keywords
filtered_output_folder <- "budget_pdfs_filtered"
if (!dir.exists(filtered_output_folder)) {
dir.create(filtered_output_folder) # Create the folder only if it doesn't exist
}
filtered_links <- all_pdf_links[grepl("(?i)(volume|vol)", all_pdf_links)]
cat("Filtered links containing 'volume', 'vol', 'Vol', 'Volume':\n")
## Filtered links containing 'volume', 'vol', 'Vol', 'Volume':
print(filtered_links)
## [1] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Central%20Governments%2C%20Vol.%201%20FY%202024-25.pdf"
## [2] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20State%20Owned%20Enterprises%20and%20Public%20Corporations%20Vol.%203%20FY%202024-25.pdf"
## [3] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Local%20Governments%20Volume%20-2%20FY%202024-25.pdf"
## [4] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Central%20Governments%20Vol.%201%20FY%202023-24.pdf"
## [5] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/BUDGET%20ESTIMATES%20APPROVED%20VOL.III_.pdf"
## [6] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20FY%202022-23%20Volume%201-%20Central%20Government.pdf"
## [7] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%202018-19%20Volume%201..pdf"
## [8] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/APPROVED%20BUDGET%20ESTIMATES%20%20Vol-1%20FY%202016-17.pdf"
## [9] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20FY%202016-17-Volume%203.pdf"
## [10] "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates-Volume%20I%20FY%202015-16.pdf"
Function to Download Filtered PDFs
download_filtered_pdf <- function(url, retries = 3) {
file_name <- basename(url) # Extract the file name from the URL
save_path <- file.path(filtered_output_folder, file_name) # Define the path to save the PDF
for (attempt in 1:retries) { # Retry loop
tryCatch({
GET(url, write_disk(save_path, overwrite = TRUE)) # Download the PDF
if (file.info(save_path)$size > 0) { # Check if the file has content
cat("Downloaded:", file_name, "\n") # Print success message
return(TRUE) # Return TRUE if download is successful
}
}, error = function(e) {
cat("Error downloading:", file_name, "-", e$message, "\nRetrying...(", attempt, "/", retries, ")\n")
Sys.sleep(3) # Wait before retrying
})
}
cat("Failed to download:", file_name, "after", retries, "attempts.\n") # Print failure message
return(FALSE) # Return FALSE if all attempts fail
}
Downloading Filtered PDFs
cat("Starting downloads of filtered links...\n")
## Starting downloads of filtered links...
for (i in seq_along(filtered_links)) { # Loop through each filtered link
cat("Downloading", i, "of", length(filtered_links), ":", filtered_links[i], "\n") # Print status for each download
download_filtered_pdf(filtered_links[i]) # Call the download function
}
## Downloading 1 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Central%20Governments%2C%20Vol.%201%20FY%202024-25.pdf
## Downloaded: Approved%20Budget%20Estimates%20for%20Central%20Governments%2C%20Vol.%201%20FY%202024-25.pdf
## Downloading 2 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20State%20Owned%20Enterprises%20and%20Public%20Corporations%20Vol.%203%20FY%202024-25.pdf
## Downloaded: Approved%20Budget%20Estimates%20for%20State%20Owned%20Enterprises%20and%20Public%20Corporations%20Vol.%203%20FY%202024-25.pdf
## Downloading 3 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Local%20Governments%20Volume%20-2%20FY%202024-25.pdf
## Downloaded: Approved%20Budget%20Estimates%20for%20Local%20Governments%20Volume%20-2%20FY%202024-25.pdf
## Downloading 4 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20for%20Central%20Governments%20Vol.%201%20FY%202023-24.pdf
## Downloaded: Approved%20Budget%20Estimates%20for%20Central%20Governments%20Vol.%201%20FY%202023-24.pdf
## Downloading 5 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/BUDGET%20ESTIMATES%20APPROVED%20VOL.III_.pdf
## Downloaded: BUDGET%20ESTIMATES%20APPROVED%20VOL.III_.pdf
## Downloading 6 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20FY%202022-23%20Volume%201-%20Central%20Government.pdf
## Downloaded: Approved%20Budget%20Estimates%20FY%202022-23%20Volume%201-%20Central%20Government.pdf
## Downloading 7 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%202018-19%20Volume%201..pdf
## Downloaded: Approved%20Budget%20Estimates%202018-19%20Volume%201..pdf
## Downloading 8 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/APPROVED%20BUDGET%20ESTIMATES%20%20Vol-1%20FY%202016-17.pdf
## Downloaded: APPROVED%20BUDGET%20ESTIMATES%20%20Vol-1%20FY%202016-17.pdf
## Downloading 9 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%20FY%202016-17-Volume%203.pdf
## Downloaded: Approved%20Budget%20Estimates%20FY%202016-17-Volume%203.pdf
## Downloading 10 of 10 : https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates-Volume%20I%20FY%202015-16.pdf
## Downloaded: Approved%20Budget%20Estimates-Volume%20I%20FY%202015-16.pdf
cat("Download complete. Filtered PDFs saved in folder:", filtered_output_folder, "\n") # Print completion message
## Download complete. Filtered PDFs saved in folder: budget_pdfs_filtered
Checking for a Specific Link
link_to_check <- "https://budget.finance.go.ug/sites/default/files/National%20Budget%20docs/Approved%20Budget%20Estimates%202018-19%20Volume%201..pdf"
if (link_to_check %in% all_pdf_links) {
cat("The link is present in the scraped data.\n")
} else {
cat("The link is NOT present in the scraped data.\n")
}
## The link is present in the scraped data.
Saving the Workspace
save.image("uganda.RData") # Saves all objects in the current R environment