on_actions = {
	on_monthly_UCT = {
		effect = {
			if = {
				# Checks for if it is Janurary (Year of previous month is a different year of current year)
				limit = { NOT = { check_variable = { global.last_year = global.year } } }
				set_variable = { global.last_year = global.year }
				
				# KDE System (System that fires pre-determined events with specified dates)
				add_to_variable = { global.kde_counter = 1 }
				log = "0: [?global.year]"

				#every_country = {
				#	pop_state_update = yes
				#}
				if = {
					limit = { check_variable = { global.kde_counter = 2 } }
					meta_effect = {
						text = {
							KDE_bi_yearly_event_fire_[ID] = yes
						}
						ID = "[?global.year]"
					}
					
					log = "1: [?global.year]"
					set_variable = { global.kde_counter = 0 }
				}
				
				# Other Stuff
				every_country = {
					limit = { is_non_player_tag = no }
					country_event = { id = pssystem.16 }
				}
				clr_global_flag = eoanb_world_fair_held_flag
			}
		}
	}
}