commit ae3d58874623b15a58555e08f2a33676f0ce1800 Author: Riceball LEE Date: Thu Sep 8 14:02:36 2022 +0800 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..d75df44 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Pride Country Flags Mod + +Pride Country Flags adds a variety of animated country flags in [Minetest](https://minetest.net/). + +The flags are named by their 2-letter [ISO-3166 country code](https://www.iso.org/iso-3166-country-codes.html). + +## Credits + +* All country flags come from [flag-icons](https://github.com/lipis/flag-icons). +* The Pride Country Flags Mod depends on [Pride Flags Mod](https://content.minetest.net/packages/Wuzzy/pride_flags/) diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..0c40665 --- /dev/null +++ b/init.lua @@ -0,0 +1,26 @@ +local minetest, DIR_DELIM = minetest, DIR_DELIM +local add_flag = pride_flags.add_flag +local get_dir_list = minetest.get_dir_list + +local MOD_NAME = minetest.get_current_modname() +local MOD_PATH = minetest.get_modpath(MOD_NAME) .. DIR_DELIM +local MOD_TEXTURES_PATH = MOD_PATH .. DIR_DELIM .. "textures" + +local function get_flags(path) + local result = {} + for _, v in ipairs(get_dir_list(path, false)) do + local name = v:match("^prideflag_(.+)%..+$") + -- print(v,i1,i2,name) + table.insert(result, name) + end + table.sort(result) + return result +end + +local flagNames = get_flags(MOD_TEXTURES_PATH) + +for _, name in ipairs(flagNames) do + add_flag(name) +end + +print(MOD_NAME, "DONE") diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..d469868 --- /dev/null +++ b/mod.conf @@ -0,0 +1,7 @@ +name = pride_flags_country +title = Pride Country Flags +author = Riceball +license = MIT +depends = pride_flags +description = Add all country flags to pride_flags + diff --git a/textures/prideflag_cnt_ac.png b/textures/prideflag_cnt_ac.png new file mode 100644 index 0000000..86c1860 Binary files /dev/null and b/textures/prideflag_cnt_ac.png differ diff --git a/textures/prideflag_cnt_ad.png b/textures/prideflag_cnt_ad.png new file mode 100644 index 0000000..350202d Binary files /dev/null and b/textures/prideflag_cnt_ad.png differ diff --git a/textures/prideflag_cnt_ae.png b/textures/prideflag_cnt_ae.png new file mode 100644 index 0000000..29b2bb8 Binary files /dev/null and b/textures/prideflag_cnt_ae.png differ diff --git a/textures/prideflag_cnt_af.png b/textures/prideflag_cnt_af.png new file mode 100644 index 0000000..271ea2c Binary files /dev/null and b/textures/prideflag_cnt_af.png differ diff --git a/textures/prideflag_cnt_ag.png b/textures/prideflag_cnt_ag.png new file mode 100644 index 0000000..71d7e3f Binary files /dev/null and b/textures/prideflag_cnt_ag.png differ diff --git a/textures/prideflag_cnt_ai.png b/textures/prideflag_cnt_ai.png new file mode 100644 index 0000000..d1f9ea5 Binary files /dev/null and b/textures/prideflag_cnt_ai.png differ diff --git a/textures/prideflag_cnt_al.png b/textures/prideflag_cnt_al.png new file mode 100644 index 0000000..b77df8d Binary files /dev/null and b/textures/prideflag_cnt_al.png differ diff --git a/textures/prideflag_cnt_am.png b/textures/prideflag_cnt_am.png new file mode 100644 index 0000000..4311151 Binary files /dev/null and b/textures/prideflag_cnt_am.png differ diff --git a/textures/prideflag_cnt_ao.png b/textures/prideflag_cnt_ao.png new file mode 100644 index 0000000..f7c4dd8 Binary files /dev/null and b/textures/prideflag_cnt_ao.png differ diff --git a/textures/prideflag_cnt_aq.png b/textures/prideflag_cnt_aq.png new file mode 100644 index 0000000..d580331 Binary files /dev/null and b/textures/prideflag_cnt_aq.png differ diff --git a/textures/prideflag_cnt_ar.png b/textures/prideflag_cnt_ar.png new file mode 100644 index 0000000..0ac9738 Binary files /dev/null and b/textures/prideflag_cnt_ar.png differ diff --git a/textures/prideflag_cnt_as.png b/textures/prideflag_cnt_as.png new file mode 100644 index 0000000..89728ce Binary files /dev/null and b/textures/prideflag_cnt_as.png differ diff --git a/textures/prideflag_cnt_at.png b/textures/prideflag_cnt_at.png new file mode 100644 index 0000000..5bf7228 Binary files /dev/null and b/textures/prideflag_cnt_at.png differ diff --git a/textures/prideflag_cnt_au.png b/textures/prideflag_cnt_au.png new file mode 100644 index 0000000..14a093e Binary files /dev/null and b/textures/prideflag_cnt_au.png differ diff --git a/textures/prideflag_cnt_aw.png b/textures/prideflag_cnt_aw.png new file mode 100644 index 0000000..0514fbe Binary files /dev/null and b/textures/prideflag_cnt_aw.png differ diff --git a/textures/prideflag_cnt_ax.png b/textures/prideflag_cnt_ax.png new file mode 100644 index 0000000..3cbae19 Binary files /dev/null and b/textures/prideflag_cnt_ax.png differ diff --git a/textures/prideflag_cnt_az.png b/textures/prideflag_cnt_az.png new file mode 100644 index 0000000..8d890a2 Binary files /dev/null and b/textures/prideflag_cnt_az.png differ diff --git a/textures/prideflag_cnt_ba.png b/textures/prideflag_cnt_ba.png new file mode 100644 index 0000000..8195c98 Binary files /dev/null and b/textures/prideflag_cnt_ba.png differ diff --git a/textures/prideflag_cnt_bb.png b/textures/prideflag_cnt_bb.png new file mode 100644 index 0000000..38f1060 Binary files /dev/null and b/textures/prideflag_cnt_bb.png differ diff --git a/textures/prideflag_cnt_bd.png b/textures/prideflag_cnt_bd.png new file mode 100644 index 0000000..52ec19d Binary files /dev/null and b/textures/prideflag_cnt_bd.png differ diff --git a/textures/prideflag_cnt_be.png b/textures/prideflag_cnt_be.png new file mode 100644 index 0000000..a071d01 Binary files /dev/null and b/textures/prideflag_cnt_be.png differ diff --git a/textures/prideflag_cnt_bf.png b/textures/prideflag_cnt_bf.png new file mode 100644 index 0000000..349dda0 Binary files /dev/null and b/textures/prideflag_cnt_bf.png differ diff --git a/textures/prideflag_cnt_bg.png b/textures/prideflag_cnt_bg.png new file mode 100644 index 0000000..43d4ae3 Binary files /dev/null and b/textures/prideflag_cnt_bg.png differ diff --git a/textures/prideflag_cnt_bh.png b/textures/prideflag_cnt_bh.png new file mode 100644 index 0000000..fe492da Binary files /dev/null and b/textures/prideflag_cnt_bh.png differ diff --git a/textures/prideflag_cnt_bi.png b/textures/prideflag_cnt_bi.png new file mode 100644 index 0000000..47e2f45 Binary files /dev/null and b/textures/prideflag_cnt_bi.png differ diff --git a/textures/prideflag_cnt_bj.png b/textures/prideflag_cnt_bj.png new file mode 100644 index 0000000..8bc1de8 Binary files /dev/null and b/textures/prideflag_cnt_bj.png differ diff --git a/textures/prideflag_cnt_bl.png b/textures/prideflag_cnt_bl.png new file mode 100644 index 0000000..593460d Binary files /dev/null and b/textures/prideflag_cnt_bl.png differ diff --git a/textures/prideflag_cnt_bm.png b/textures/prideflag_cnt_bm.png new file mode 100644 index 0000000..4a619fa Binary files /dev/null and b/textures/prideflag_cnt_bm.png differ diff --git a/textures/prideflag_cnt_bn.png b/textures/prideflag_cnt_bn.png new file mode 100644 index 0000000..f70d576 Binary files /dev/null and b/textures/prideflag_cnt_bn.png differ diff --git a/textures/prideflag_cnt_bo.png b/textures/prideflag_cnt_bo.png new file mode 100644 index 0000000..cdcc6a4 Binary files /dev/null and b/textures/prideflag_cnt_bo.png differ diff --git a/textures/prideflag_cnt_bq.png b/textures/prideflag_cnt_bq.png new file mode 100644 index 0000000..994bcb5 Binary files /dev/null and b/textures/prideflag_cnt_bq.png differ diff --git a/textures/prideflag_cnt_br.png b/textures/prideflag_cnt_br.png new file mode 100644 index 0000000..3b61ed8 Binary files /dev/null and b/textures/prideflag_cnt_br.png differ diff --git a/textures/prideflag_cnt_bs.png b/textures/prideflag_cnt_bs.png new file mode 100644 index 0000000..a63746d Binary files /dev/null and b/textures/prideflag_cnt_bs.png differ diff --git a/textures/prideflag_cnt_bt.png b/textures/prideflag_cnt_bt.png new file mode 100644 index 0000000..d4d687e Binary files /dev/null and b/textures/prideflag_cnt_bt.png differ diff --git a/textures/prideflag_cnt_bv.png b/textures/prideflag_cnt_bv.png new file mode 100644 index 0000000..9447628 Binary files /dev/null and b/textures/prideflag_cnt_bv.png differ diff --git a/textures/prideflag_cnt_bw.png b/textures/prideflag_cnt_bw.png new file mode 100644 index 0000000..10cb486 Binary files /dev/null and b/textures/prideflag_cnt_bw.png differ diff --git a/textures/prideflag_cnt_by.png b/textures/prideflag_cnt_by.png new file mode 100644 index 0000000..01ad7c9 Binary files /dev/null and b/textures/prideflag_cnt_by.png differ diff --git a/textures/prideflag_cnt_bz.png b/textures/prideflag_cnt_bz.png new file mode 100644 index 0000000..a4a36a9 Binary files /dev/null and b/textures/prideflag_cnt_bz.png differ diff --git a/textures/prideflag_cnt_ca.png b/textures/prideflag_cnt_ca.png new file mode 100644 index 0000000..ea39322 Binary files /dev/null and b/textures/prideflag_cnt_ca.png differ diff --git a/textures/prideflag_cnt_cc.png b/textures/prideflag_cnt_cc.png new file mode 100644 index 0000000..50e8fbf Binary files /dev/null and b/textures/prideflag_cnt_cc.png differ diff --git a/textures/prideflag_cnt_cd.png b/textures/prideflag_cnt_cd.png new file mode 100644 index 0000000..668284c Binary files /dev/null and b/textures/prideflag_cnt_cd.png differ diff --git a/textures/prideflag_cnt_cefta.png b/textures/prideflag_cnt_cefta.png new file mode 100644 index 0000000..7965abd Binary files /dev/null and b/textures/prideflag_cnt_cefta.png differ diff --git a/textures/prideflag_cnt_cf.png b/textures/prideflag_cnt_cf.png new file mode 100644 index 0000000..d4f53a3 Binary files /dev/null and b/textures/prideflag_cnt_cf.png differ diff --git a/textures/prideflag_cnt_cg.png b/textures/prideflag_cnt_cg.png new file mode 100644 index 0000000..1ef8922 Binary files /dev/null and b/textures/prideflag_cnt_cg.png differ diff --git a/textures/prideflag_cnt_ch.png b/textures/prideflag_cnt_ch.png new file mode 100644 index 0000000..b3e8882 Binary files /dev/null and b/textures/prideflag_cnt_ch.png differ diff --git a/textures/prideflag_cnt_ci.png b/textures/prideflag_cnt_ci.png new file mode 100644 index 0000000..bca1bed Binary files /dev/null and b/textures/prideflag_cnt_ci.png differ diff --git a/textures/prideflag_cnt_ck.png b/textures/prideflag_cnt_ck.png new file mode 100644 index 0000000..285c5fc Binary files /dev/null and b/textures/prideflag_cnt_ck.png differ diff --git a/textures/prideflag_cnt_cl.png b/textures/prideflag_cnt_cl.png new file mode 100644 index 0000000..78893d3 Binary files /dev/null and b/textures/prideflag_cnt_cl.png differ diff --git a/textures/prideflag_cnt_cm.png b/textures/prideflag_cnt_cm.png new file mode 100644 index 0000000..36a070d Binary files /dev/null and b/textures/prideflag_cnt_cm.png differ diff --git a/textures/prideflag_cnt_cn.png b/textures/prideflag_cnt_cn.png new file mode 100644 index 0000000..219be2f Binary files /dev/null and b/textures/prideflag_cnt_cn.png differ diff --git a/textures/prideflag_cnt_co.png b/textures/prideflag_cnt_co.png new file mode 100644 index 0000000..d5fde5b Binary files /dev/null and b/textures/prideflag_cnt_co.png differ diff --git a/textures/prideflag_cnt_cp.png b/textures/prideflag_cnt_cp.png new file mode 100644 index 0000000..c038210 Binary files /dev/null and b/textures/prideflag_cnt_cp.png differ diff --git a/textures/prideflag_cnt_cr.png b/textures/prideflag_cnt_cr.png new file mode 100644 index 0000000..32f03b8 Binary files /dev/null and b/textures/prideflag_cnt_cr.png differ diff --git a/textures/prideflag_cnt_cu.png b/textures/prideflag_cnt_cu.png new file mode 100644 index 0000000..816d6d5 Binary files /dev/null and b/textures/prideflag_cnt_cu.png differ diff --git a/textures/prideflag_cnt_cv.png b/textures/prideflag_cnt_cv.png new file mode 100644 index 0000000..803c4fd Binary files /dev/null and b/textures/prideflag_cnt_cv.png differ diff --git a/textures/prideflag_cnt_cw.png b/textures/prideflag_cnt_cw.png new file mode 100644 index 0000000..8b51fe3 Binary files /dev/null and b/textures/prideflag_cnt_cw.png differ diff --git a/textures/prideflag_cnt_cx.png b/textures/prideflag_cnt_cx.png new file mode 100644 index 0000000..188d0e2 Binary files /dev/null and b/textures/prideflag_cnt_cx.png differ diff --git a/textures/prideflag_cnt_cy.png b/textures/prideflag_cnt_cy.png new file mode 100644 index 0000000..3e01631 Binary files /dev/null and b/textures/prideflag_cnt_cy.png differ diff --git a/textures/prideflag_cnt_cz.png b/textures/prideflag_cnt_cz.png new file mode 100644 index 0000000..02b33ea Binary files /dev/null and b/textures/prideflag_cnt_cz.png differ diff --git a/textures/prideflag_cnt_de.png b/textures/prideflag_cnt_de.png new file mode 100644 index 0000000..8819c3a Binary files /dev/null and b/textures/prideflag_cnt_de.png differ diff --git a/textures/prideflag_cnt_dg.png b/textures/prideflag_cnt_dg.png new file mode 100644 index 0000000..4bb5f3f Binary files /dev/null and b/textures/prideflag_cnt_dg.png differ diff --git a/textures/prideflag_cnt_dj.png b/textures/prideflag_cnt_dj.png new file mode 100644 index 0000000..dfed802 Binary files /dev/null and b/textures/prideflag_cnt_dj.png differ diff --git a/textures/prideflag_cnt_dk.png b/textures/prideflag_cnt_dk.png new file mode 100644 index 0000000..56aeb05 Binary files /dev/null and b/textures/prideflag_cnt_dk.png differ diff --git a/textures/prideflag_cnt_dm.png b/textures/prideflag_cnt_dm.png new file mode 100644 index 0000000..e17da73 Binary files /dev/null and b/textures/prideflag_cnt_dm.png differ diff --git a/textures/prideflag_cnt_do.png b/textures/prideflag_cnt_do.png new file mode 100644 index 0000000..a44c573 Binary files /dev/null and b/textures/prideflag_cnt_do.png differ diff --git a/textures/prideflag_cnt_dz.png b/textures/prideflag_cnt_dz.png new file mode 100644 index 0000000..52a42f7 Binary files /dev/null and b/textures/prideflag_cnt_dz.png differ diff --git a/textures/prideflag_cnt_ea.png b/textures/prideflag_cnt_ea.png new file mode 100644 index 0000000..1332413 Binary files /dev/null and b/textures/prideflag_cnt_ea.png differ diff --git a/textures/prideflag_cnt_ec.png b/textures/prideflag_cnt_ec.png new file mode 100644 index 0000000..271b73d Binary files /dev/null and b/textures/prideflag_cnt_ec.png differ diff --git a/textures/prideflag_cnt_ee.png b/textures/prideflag_cnt_ee.png new file mode 100644 index 0000000..99ba906 Binary files /dev/null and b/textures/prideflag_cnt_ee.png differ diff --git a/textures/prideflag_cnt_eg.png b/textures/prideflag_cnt_eg.png new file mode 100644 index 0000000..d59e862 Binary files /dev/null and b/textures/prideflag_cnt_eg.png differ diff --git a/textures/prideflag_cnt_eh.png b/textures/prideflag_cnt_eh.png new file mode 100644 index 0000000..2e76897 Binary files /dev/null and b/textures/prideflag_cnt_eh.png differ diff --git a/textures/prideflag_cnt_er.png b/textures/prideflag_cnt_er.png new file mode 100644 index 0000000..0ce5f1a Binary files /dev/null and b/textures/prideflag_cnt_er.png differ diff --git a/textures/prideflag_cnt_es-ct.png b/textures/prideflag_cnt_es-ct.png new file mode 100644 index 0000000..2ed509d Binary files /dev/null and b/textures/prideflag_cnt_es-ct.png differ diff --git a/textures/prideflag_cnt_es-ga.png b/textures/prideflag_cnt_es-ga.png new file mode 100644 index 0000000..5ecfd92 Binary files /dev/null and b/textures/prideflag_cnt_es-ga.png differ diff --git a/textures/prideflag_cnt_es.png b/textures/prideflag_cnt_es.png new file mode 100644 index 0000000..1332413 Binary files /dev/null and b/textures/prideflag_cnt_es.png differ diff --git a/textures/prideflag_cnt_et.png b/textures/prideflag_cnt_et.png new file mode 100644 index 0000000..c1146f1 Binary files /dev/null and b/textures/prideflag_cnt_et.png differ diff --git a/textures/prideflag_cnt_eu.png b/textures/prideflag_cnt_eu.png new file mode 100644 index 0000000..8f76470 Binary files /dev/null and b/textures/prideflag_cnt_eu.png differ diff --git a/textures/prideflag_cnt_fi.png b/textures/prideflag_cnt_fi.png new file mode 100644 index 0000000..af20a27 Binary files /dev/null and b/textures/prideflag_cnt_fi.png differ diff --git a/textures/prideflag_cnt_fj.png b/textures/prideflag_cnt_fj.png new file mode 100644 index 0000000..794e4e2 Binary files /dev/null and b/textures/prideflag_cnt_fj.png differ diff --git a/textures/prideflag_cnt_fk.png b/textures/prideflag_cnt_fk.png new file mode 100644 index 0000000..ea21f31 Binary files /dev/null and b/textures/prideflag_cnt_fk.png differ diff --git a/textures/prideflag_cnt_fm.png b/textures/prideflag_cnt_fm.png new file mode 100644 index 0000000..004ee72 Binary files /dev/null and b/textures/prideflag_cnt_fm.png differ diff --git a/textures/prideflag_cnt_fo.png b/textures/prideflag_cnt_fo.png new file mode 100644 index 0000000..61e7c1e Binary files /dev/null and b/textures/prideflag_cnt_fo.png differ diff --git a/textures/prideflag_cnt_fr.png b/textures/prideflag_cnt_fr.png new file mode 100644 index 0000000..c038210 Binary files /dev/null and b/textures/prideflag_cnt_fr.png differ diff --git a/textures/prideflag_cnt_ga.png b/textures/prideflag_cnt_ga.png new file mode 100644 index 0000000..288bca1 Binary files /dev/null and b/textures/prideflag_cnt_ga.png differ diff --git a/textures/prideflag_cnt_gb-eng.png b/textures/prideflag_cnt_gb-eng.png new file mode 100644 index 0000000..788b207 Binary files /dev/null and b/textures/prideflag_cnt_gb-eng.png differ diff --git a/textures/prideflag_cnt_gb-nir.png b/textures/prideflag_cnt_gb-nir.png new file mode 100644 index 0000000..5e8b354 Binary files /dev/null and b/textures/prideflag_cnt_gb-nir.png differ diff --git a/textures/prideflag_cnt_gb-sct.png b/textures/prideflag_cnt_gb-sct.png new file mode 100644 index 0000000..8432d3f Binary files /dev/null and b/textures/prideflag_cnt_gb-sct.png differ diff --git a/textures/prideflag_cnt_gb-wls.png b/textures/prideflag_cnt_gb-wls.png new file mode 100644 index 0000000..50710a1 Binary files /dev/null and b/textures/prideflag_cnt_gb-wls.png differ diff --git a/textures/prideflag_cnt_gb.png b/textures/prideflag_cnt_gb.png new file mode 100644 index 0000000..36f67be Binary files /dev/null and b/textures/prideflag_cnt_gb.png differ diff --git a/textures/prideflag_cnt_gd.png b/textures/prideflag_cnt_gd.png new file mode 100644 index 0000000..66da64d Binary files /dev/null and b/textures/prideflag_cnt_gd.png differ diff --git a/textures/prideflag_cnt_ge.png b/textures/prideflag_cnt_ge.png new file mode 100644 index 0000000..7e49e3b Binary files /dev/null and b/textures/prideflag_cnt_ge.png differ diff --git a/textures/prideflag_cnt_gf.png b/textures/prideflag_cnt_gf.png new file mode 100644 index 0000000..c038210 Binary files /dev/null and b/textures/prideflag_cnt_gf.png differ diff --git a/textures/prideflag_cnt_gg.png b/textures/prideflag_cnt_gg.png new file mode 100644 index 0000000..e0bcf74 Binary files /dev/null and b/textures/prideflag_cnt_gg.png differ diff --git a/textures/prideflag_cnt_gh.png b/textures/prideflag_cnt_gh.png new file mode 100644 index 0000000..d3b8147 Binary files /dev/null and b/textures/prideflag_cnt_gh.png differ diff --git a/textures/prideflag_cnt_gi.png b/textures/prideflag_cnt_gi.png new file mode 100644 index 0000000..7c76e56 Binary files /dev/null and b/textures/prideflag_cnt_gi.png differ diff --git a/textures/prideflag_cnt_gl.png b/textures/prideflag_cnt_gl.png new file mode 100644 index 0000000..6b03524 Binary files /dev/null and b/textures/prideflag_cnt_gl.png differ diff --git a/textures/prideflag_cnt_gm.png b/textures/prideflag_cnt_gm.png new file mode 100644 index 0000000..d40d9ee Binary files /dev/null and b/textures/prideflag_cnt_gm.png differ diff --git a/textures/prideflag_cnt_gn.png b/textures/prideflag_cnt_gn.png new file mode 100644 index 0000000..38c23f7 Binary files /dev/null and b/textures/prideflag_cnt_gn.png differ diff --git a/textures/prideflag_cnt_gp.png b/textures/prideflag_cnt_gp.png new file mode 100644 index 0000000..c038210 Binary files /dev/null and b/textures/prideflag_cnt_gp.png differ diff --git a/textures/prideflag_cnt_gq.png b/textures/prideflag_cnt_gq.png new file mode 100644 index 0000000..04504bf Binary files /dev/null and b/textures/prideflag_cnt_gq.png differ diff --git a/textures/prideflag_cnt_gr.png b/textures/prideflag_cnt_gr.png new file mode 100644 index 0000000..b282174 Binary files /dev/null and b/textures/prideflag_cnt_gr.png differ diff --git a/textures/prideflag_cnt_gs.png b/textures/prideflag_cnt_gs.png new file mode 100644 index 0000000..ec44bc3 Binary files /dev/null and b/textures/prideflag_cnt_gs.png differ diff --git a/textures/prideflag_cnt_gt.png b/textures/prideflag_cnt_gt.png new file mode 100644 index 0000000..5e23951 Binary files /dev/null and b/textures/prideflag_cnt_gt.png differ diff --git a/textures/prideflag_cnt_gu.png b/textures/prideflag_cnt_gu.png new file mode 100644 index 0000000..f900cfe Binary files /dev/null and b/textures/prideflag_cnt_gu.png differ diff --git a/textures/prideflag_cnt_gw.png b/textures/prideflag_cnt_gw.png new file mode 100644 index 0000000..a37f63d Binary files /dev/null and b/textures/prideflag_cnt_gw.png differ diff --git a/textures/prideflag_cnt_gy.png b/textures/prideflag_cnt_gy.png new file mode 100644 index 0000000..f266dd6 Binary files /dev/null and b/textures/prideflag_cnt_gy.png differ diff --git a/textures/prideflag_cnt_hk.png b/textures/prideflag_cnt_hk.png new file mode 100644 index 0000000..7082dc5 Binary files /dev/null and b/textures/prideflag_cnt_hk.png differ diff --git a/textures/prideflag_cnt_hm.png b/textures/prideflag_cnt_hm.png new file mode 100644 index 0000000..14a093e Binary files /dev/null and b/textures/prideflag_cnt_hm.png differ diff --git a/textures/prideflag_cnt_hn.png b/textures/prideflag_cnt_hn.png new file mode 100644 index 0000000..a88e8fe Binary files /dev/null and b/textures/prideflag_cnt_hn.png differ diff --git a/textures/prideflag_cnt_hr.png b/textures/prideflag_cnt_hr.png new file mode 100644 index 0000000..c5ef6ff Binary files /dev/null and b/textures/prideflag_cnt_hr.png differ diff --git a/textures/prideflag_cnt_ht.png b/textures/prideflag_cnt_ht.png new file mode 100644 index 0000000..20201f2 Binary files /dev/null and b/textures/prideflag_cnt_ht.png differ diff --git a/textures/prideflag_cnt_hu.png b/textures/prideflag_cnt_hu.png new file mode 100644 index 0000000..1d929b3 Binary files /dev/null and b/textures/prideflag_cnt_hu.png differ diff --git a/textures/prideflag_cnt_ic.png b/textures/prideflag_cnt_ic.png new file mode 100644 index 0000000..9e684d9 Binary files /dev/null and b/textures/prideflag_cnt_ic.png differ diff --git a/textures/prideflag_cnt_id.png b/textures/prideflag_cnt_id.png new file mode 100644 index 0000000..3bec125 Binary files /dev/null and b/textures/prideflag_cnt_id.png differ diff --git a/textures/prideflag_cnt_ie.png b/textures/prideflag_cnt_ie.png new file mode 100644 index 0000000..68e4207 Binary files /dev/null and b/textures/prideflag_cnt_ie.png differ diff --git a/textures/prideflag_cnt_il.png b/textures/prideflag_cnt_il.png new file mode 100644 index 0000000..d36b798 Binary files /dev/null and b/textures/prideflag_cnt_il.png differ diff --git a/textures/prideflag_cnt_im.png b/textures/prideflag_cnt_im.png new file mode 100644 index 0000000..86246e6 Binary files /dev/null and b/textures/prideflag_cnt_im.png differ diff --git a/textures/prideflag_cnt_in.png b/textures/prideflag_cnt_in.png new file mode 100644 index 0000000..093fb49 Binary files /dev/null and b/textures/prideflag_cnt_in.png differ diff --git a/textures/prideflag_cnt_io.png b/textures/prideflag_cnt_io.png new file mode 100644 index 0000000..4bb5f3f Binary files /dev/null and b/textures/prideflag_cnt_io.png differ diff --git a/textures/prideflag_cnt_iq.png b/textures/prideflag_cnt_iq.png new file mode 100644 index 0000000..6ccad2a Binary files /dev/null and b/textures/prideflag_cnt_iq.png differ diff --git a/textures/prideflag_cnt_ir.png b/textures/prideflag_cnt_ir.png new file mode 100644 index 0000000..cbb9ca6 Binary files /dev/null and b/textures/prideflag_cnt_ir.png differ diff --git a/textures/prideflag_cnt_is.png b/textures/prideflag_cnt_is.png new file mode 100644 index 0000000..bd18625 Binary files /dev/null and b/textures/prideflag_cnt_is.png differ diff --git a/textures/prideflag_cnt_it.png b/textures/prideflag_cnt_it.png new file mode 100644 index 0000000..9b53153 Binary files /dev/null and b/textures/prideflag_cnt_it.png differ diff --git a/textures/prideflag_cnt_je.png b/textures/prideflag_cnt_je.png new file mode 100644 index 0000000..064487e Binary files /dev/null and b/textures/prideflag_cnt_je.png differ diff --git a/textures/prideflag_cnt_jm.png b/textures/prideflag_cnt_jm.png new file mode 100644 index 0000000..d851697 Binary files /dev/null and b/textures/prideflag_cnt_jm.png differ diff --git a/textures/prideflag_cnt_jo.png b/textures/prideflag_cnt_jo.png new file mode 100644 index 0000000..eb3c354 Binary files /dev/null and b/textures/prideflag_cnt_jo.png differ diff --git a/textures/prideflag_cnt_jp.png b/textures/prideflag_cnt_jp.png new file mode 100644 index 0000000..c6d6d7e Binary files /dev/null and b/textures/prideflag_cnt_jp.png differ diff --git a/textures/prideflag_cnt_ke.png b/textures/prideflag_cnt_ke.png new file mode 100644 index 0000000..cf4ee48 Binary files /dev/null and b/textures/prideflag_cnt_ke.png differ diff --git a/textures/prideflag_cnt_kg.png b/textures/prideflag_cnt_kg.png new file mode 100644 index 0000000..0f9694f Binary files /dev/null and b/textures/prideflag_cnt_kg.png differ diff --git a/textures/prideflag_cnt_kh.png b/textures/prideflag_cnt_kh.png new file mode 100644 index 0000000..33cff25 Binary files /dev/null and b/textures/prideflag_cnt_kh.png differ diff --git a/textures/prideflag_cnt_ki.png b/textures/prideflag_cnt_ki.png new file mode 100644 index 0000000..ffa45b1 Binary files /dev/null and b/textures/prideflag_cnt_ki.png differ diff --git a/textures/prideflag_cnt_km.png b/textures/prideflag_cnt_km.png new file mode 100644 index 0000000..8d91846 Binary files /dev/null and b/textures/prideflag_cnt_km.png differ diff --git a/textures/prideflag_cnt_kn.png b/textures/prideflag_cnt_kn.png new file mode 100644 index 0000000..de7de76 Binary files /dev/null and b/textures/prideflag_cnt_kn.png differ diff --git a/textures/prideflag_cnt_kp.png b/textures/prideflag_cnt_kp.png new file mode 100644 index 0000000..e815e6a Binary files /dev/null and b/textures/prideflag_cnt_kp.png differ diff --git a/textures/prideflag_cnt_kr.png b/textures/prideflag_cnt_kr.png new file mode 100644 index 0000000..648a362 Binary files /dev/null and b/textures/prideflag_cnt_kr.png differ diff --git a/textures/prideflag_cnt_kw.png b/textures/prideflag_cnt_kw.png new file mode 100644 index 0000000..7f0209b Binary files /dev/null and b/textures/prideflag_cnt_kw.png differ diff --git a/textures/prideflag_cnt_ky.png b/textures/prideflag_cnt_ky.png new file mode 100644 index 0000000..2d76a1a Binary files /dev/null and b/textures/prideflag_cnt_ky.png differ diff --git a/textures/prideflag_cnt_kz.png b/textures/prideflag_cnt_kz.png new file mode 100644 index 0000000..d1c8a3c Binary files /dev/null and b/textures/prideflag_cnt_kz.png differ diff --git a/textures/prideflag_cnt_la.png b/textures/prideflag_cnt_la.png new file mode 100644 index 0000000..d3e411d Binary files /dev/null and b/textures/prideflag_cnt_la.png differ diff --git a/textures/prideflag_cnt_lb.png b/textures/prideflag_cnt_lb.png new file mode 100644 index 0000000..3a361ff Binary files /dev/null and b/textures/prideflag_cnt_lb.png differ diff --git a/textures/prideflag_cnt_lc.png b/textures/prideflag_cnt_lc.png new file mode 100644 index 0000000..5f366ac Binary files /dev/null and b/textures/prideflag_cnt_lc.png differ diff --git a/textures/prideflag_cnt_li.png b/textures/prideflag_cnt_li.png new file mode 100644 index 0000000..40cdb34 Binary files /dev/null and b/textures/prideflag_cnt_li.png differ diff --git a/textures/prideflag_cnt_lk.png b/textures/prideflag_cnt_lk.png new file mode 100644 index 0000000..a3d3c6f Binary files /dev/null and b/textures/prideflag_cnt_lk.png differ diff --git a/textures/prideflag_cnt_lr.png b/textures/prideflag_cnt_lr.png new file mode 100644 index 0000000..37e1265 Binary files /dev/null and b/textures/prideflag_cnt_lr.png differ diff --git a/textures/prideflag_cnt_ls.png b/textures/prideflag_cnt_ls.png new file mode 100644 index 0000000..59dd4a9 Binary files /dev/null and b/textures/prideflag_cnt_ls.png differ diff --git a/textures/prideflag_cnt_lt.png b/textures/prideflag_cnt_lt.png new file mode 100644 index 0000000..32b24b5 Binary files /dev/null and b/textures/prideflag_cnt_lt.png differ diff --git a/textures/prideflag_cnt_lu.png b/textures/prideflag_cnt_lu.png new file mode 100644 index 0000000..2a8033a Binary files /dev/null and b/textures/prideflag_cnt_lu.png differ diff --git a/textures/prideflag_cnt_lv.png b/textures/prideflag_cnt_lv.png new file mode 100644 index 0000000..bf8ea91 Binary files /dev/null and b/textures/prideflag_cnt_lv.png differ diff --git a/textures/prideflag_cnt_ly.png b/textures/prideflag_cnt_ly.png new file mode 100644 index 0000000..f594622 Binary files /dev/null and b/textures/prideflag_cnt_ly.png differ diff --git a/textures/prideflag_cnt_ma.png b/textures/prideflag_cnt_ma.png new file mode 100644 index 0000000..deddbfb Binary files /dev/null and b/textures/prideflag_cnt_ma.png differ diff --git a/textures/prideflag_cnt_mc.png b/textures/prideflag_cnt_mc.png new file mode 100644 index 0000000..16fe067 Binary files /dev/null and b/textures/prideflag_cnt_mc.png differ diff --git a/textures/prideflag_cnt_md.png b/textures/prideflag_cnt_md.png new file mode 100644 index 0000000..370d1f4 Binary files /dev/null and b/textures/prideflag_cnt_md.png differ diff --git a/textures/prideflag_cnt_me.png b/textures/prideflag_cnt_me.png new file mode 100644 index 0000000..7f9c86d Binary files /dev/null and b/textures/prideflag_cnt_me.png differ diff --git a/textures/prideflag_cnt_mf.png b/textures/prideflag_cnt_mf.png new file mode 100644 index 0000000..c038210 Binary files /dev/null and b/textures/prideflag_cnt_mf.png differ diff --git a/textures/prideflag_cnt_mg.png b/textures/prideflag_cnt_mg.png new file mode 100644 index 0000000..fc5c35b Binary files /dev/null and b/textures/prideflag_cnt_mg.png differ diff --git a/textures/prideflag_cnt_mh.png b/textures/prideflag_cnt_mh.png new file mode 100644 index 0000000..cbaf3e7 Binary files /dev/null and b/textures/prideflag_cnt_mh.png differ diff --git a/textures/prideflag_cnt_mk.png b/textures/prideflag_cnt_mk.png new file mode 100644 index 0000000..1c55ab3 Binary files /dev/null and b/textures/prideflag_cnt_mk.png differ diff --git a/textures/prideflag_cnt_ml.png b/textures/prideflag_cnt_ml.png new file mode 100644 index 0000000..623db76 Binary files /dev/null and b/textures/prideflag_cnt_ml.png differ diff --git a/textures/prideflag_cnt_mm.png b/textures/prideflag_cnt_mm.png new file mode 100644 index 0000000..6c8cdad Binary files /dev/null and b/textures/prideflag_cnt_mm.png differ diff --git a/textures/prideflag_cnt_mn.png b/textures/prideflag_cnt_mn.png new file mode 100644 index 0000000..e8b3cc9 Binary files /dev/null and b/textures/prideflag_cnt_mn.png differ diff --git a/textures/prideflag_cnt_mo.png b/textures/prideflag_cnt_mo.png new file mode 100644 index 0000000..3e3d819 Binary files /dev/null and b/textures/prideflag_cnt_mo.png differ diff --git a/textures/prideflag_cnt_mp.png b/textures/prideflag_cnt_mp.png new file mode 100644 index 0000000..0ea262e Binary files /dev/null and b/textures/prideflag_cnt_mp.png differ diff --git a/textures/prideflag_cnt_mq.png b/textures/prideflag_cnt_mq.png new file mode 100644 index 0000000..593460d Binary files /dev/null and b/textures/prideflag_cnt_mq.png differ diff --git a/textures/prideflag_cnt_mr.png b/textures/prideflag_cnt_mr.png new file mode 100644 index 0000000..66f2886 Binary files /dev/null and b/textures/prideflag_cnt_mr.png differ diff --git a/textures/prideflag_cnt_ms.png b/textures/prideflag_cnt_ms.png new file mode 100644 index 0000000..649c3b0 Binary files /dev/null and b/textures/prideflag_cnt_ms.png differ diff --git a/textures/prideflag_cnt_mt.png b/textures/prideflag_cnt_mt.png new file mode 100644 index 0000000..f98e6d1 Binary files /dev/null and b/textures/prideflag_cnt_mt.png differ diff --git a/textures/prideflag_cnt_mu.png b/textures/prideflag_cnt_mu.png new file mode 100644 index 0000000..1e4e3db Binary files /dev/null and b/textures/prideflag_cnt_mu.png differ diff --git a/textures/prideflag_cnt_mv.png b/textures/prideflag_cnt_mv.png new file mode 100644 index 0000000..223be39 Binary files /dev/null and b/textures/prideflag_cnt_mv.png differ diff --git a/textures/prideflag_cnt_mw.png b/textures/prideflag_cnt_mw.png new file mode 100644 index 0000000..39345cb Binary files /dev/null and b/textures/prideflag_cnt_mw.png differ diff --git a/textures/prideflag_cnt_mx.png b/textures/prideflag_cnt_mx.png new file mode 100644 index 0000000..f18e29e Binary files /dev/null and b/textures/prideflag_cnt_mx.png differ diff --git a/textures/prideflag_cnt_my.png b/textures/prideflag_cnt_my.png new file mode 100644 index 0000000..52e282a Binary files /dev/null and b/textures/prideflag_cnt_my.png differ diff --git a/textures/prideflag_cnt_mz.png b/textures/prideflag_cnt_mz.png new file mode 100644 index 0000000..fcd1ba6 Binary files /dev/null and b/textures/prideflag_cnt_mz.png differ diff --git a/textures/prideflag_cnt_na.png b/textures/prideflag_cnt_na.png new file mode 100644 index 0000000..eaa966a Binary files /dev/null and b/textures/prideflag_cnt_na.png differ diff --git a/textures/prideflag_cnt_nc.png b/textures/prideflag_cnt_nc.png new file mode 100644 index 0000000..755ad94 Binary files /dev/null and b/textures/prideflag_cnt_nc.png differ diff --git a/textures/prideflag_cnt_ne.png b/textures/prideflag_cnt_ne.png new file mode 100644 index 0000000..454efd4 Binary files /dev/null and b/textures/prideflag_cnt_ne.png differ diff --git a/textures/prideflag_cnt_nf.png b/textures/prideflag_cnt_nf.png new file mode 100644 index 0000000..2491730 Binary files /dev/null and b/textures/prideflag_cnt_nf.png differ diff --git a/textures/prideflag_cnt_ng.png b/textures/prideflag_cnt_ng.png new file mode 100644 index 0000000..da84ce1 Binary files /dev/null and b/textures/prideflag_cnt_ng.png differ diff --git a/textures/prideflag_cnt_ni.png b/textures/prideflag_cnt_ni.png new file mode 100644 index 0000000..2843461 Binary files /dev/null and b/textures/prideflag_cnt_ni.png differ diff --git a/textures/prideflag_cnt_nl.png b/textures/prideflag_cnt_nl.png new file mode 100644 index 0000000..994bcb5 Binary files /dev/null and b/textures/prideflag_cnt_nl.png differ diff --git a/textures/prideflag_cnt_no.png b/textures/prideflag_cnt_no.png new file mode 100644 index 0000000..a5f68c0 Binary files /dev/null and b/textures/prideflag_cnt_no.png differ diff --git a/textures/prideflag_cnt_np.png b/textures/prideflag_cnt_np.png new file mode 100644 index 0000000..043315b Binary files /dev/null and b/textures/prideflag_cnt_np.png differ diff --git a/textures/prideflag_cnt_nr.png b/textures/prideflag_cnt_nr.png new file mode 100644 index 0000000..8ba5317 Binary files /dev/null and b/textures/prideflag_cnt_nr.png differ diff --git a/textures/prideflag_cnt_nu.png b/textures/prideflag_cnt_nu.png new file mode 100644 index 0000000..3a869b5 Binary files /dev/null and b/textures/prideflag_cnt_nu.png differ diff --git a/textures/prideflag_cnt_nz.png b/textures/prideflag_cnt_nz.png new file mode 100644 index 0000000..36ddbbf Binary files /dev/null and b/textures/prideflag_cnt_nz.png differ diff --git a/textures/prideflag_cnt_om.png b/textures/prideflag_cnt_om.png new file mode 100644 index 0000000..c047bf3 Binary files /dev/null and b/textures/prideflag_cnt_om.png differ diff --git a/textures/prideflag_cnt_pa.png b/textures/prideflag_cnt_pa.png new file mode 100644 index 0000000..3b580a5 Binary files /dev/null and b/textures/prideflag_cnt_pa.png differ diff --git a/textures/prideflag_cnt_pe.png b/textures/prideflag_cnt_pe.png new file mode 100644 index 0000000..2c9dab2 Binary files /dev/null and b/textures/prideflag_cnt_pe.png differ diff --git a/textures/prideflag_cnt_pf.png b/textures/prideflag_cnt_pf.png new file mode 100644 index 0000000..441857f Binary files /dev/null and b/textures/prideflag_cnt_pf.png differ diff --git a/textures/prideflag_cnt_pg.png b/textures/prideflag_cnt_pg.png new file mode 100644 index 0000000..09f95f8 Binary files /dev/null and b/textures/prideflag_cnt_pg.png differ diff --git a/textures/prideflag_cnt_ph.png b/textures/prideflag_cnt_ph.png new file mode 100644 index 0000000..93c0aa3 Binary files /dev/null and b/textures/prideflag_cnt_ph.png differ diff --git a/textures/prideflag_cnt_pk.png b/textures/prideflag_cnt_pk.png new file mode 100644 index 0000000..e24df9b Binary files /dev/null and b/textures/prideflag_cnt_pk.png differ diff --git a/textures/prideflag_cnt_pl.png b/textures/prideflag_cnt_pl.png new file mode 100644 index 0000000..553f607 Binary files /dev/null and b/textures/prideflag_cnt_pl.png differ diff --git a/textures/prideflag_cnt_pm.png b/textures/prideflag_cnt_pm.png new file mode 100644 index 0000000..c038210 Binary files /dev/null and b/textures/prideflag_cnt_pm.png differ diff --git a/textures/prideflag_cnt_pn.png b/textures/prideflag_cnt_pn.png new file mode 100644 index 0000000..cff0847 Binary files /dev/null and b/textures/prideflag_cnt_pn.png differ diff --git a/textures/prideflag_cnt_pr.png b/textures/prideflag_cnt_pr.png new file mode 100644 index 0000000..1bf946d Binary files /dev/null and b/textures/prideflag_cnt_pr.png differ diff --git a/textures/prideflag_cnt_ps.png b/textures/prideflag_cnt_ps.png new file mode 100644 index 0000000..1b58491 Binary files /dev/null and b/textures/prideflag_cnt_ps.png differ diff --git a/textures/prideflag_cnt_pt.png b/textures/prideflag_cnt_pt.png new file mode 100644 index 0000000..1b69925 Binary files /dev/null and b/textures/prideflag_cnt_pt.png differ diff --git a/textures/prideflag_cnt_pw.png b/textures/prideflag_cnt_pw.png new file mode 100644 index 0000000..8943ae2 Binary files /dev/null and b/textures/prideflag_cnt_pw.png differ diff --git a/textures/prideflag_cnt_py.png b/textures/prideflag_cnt_py.png new file mode 100644 index 0000000..ed59b20 Binary files /dev/null and b/textures/prideflag_cnt_py.png differ diff --git a/textures/prideflag_cnt_qa.png b/textures/prideflag_cnt_qa.png new file mode 100644 index 0000000..1bff6b7 Binary files /dev/null and b/textures/prideflag_cnt_qa.png differ diff --git a/textures/prideflag_cnt_re.png b/textures/prideflag_cnt_re.png new file mode 100644 index 0000000..593460d Binary files /dev/null and b/textures/prideflag_cnt_re.png differ diff --git a/textures/prideflag_cnt_ro.png b/textures/prideflag_cnt_ro.png new file mode 100644 index 0000000..f093acf Binary files /dev/null and b/textures/prideflag_cnt_ro.png differ diff --git a/textures/prideflag_cnt_rs.png b/textures/prideflag_cnt_rs.png new file mode 100644 index 0000000..b09a885 Binary files /dev/null and b/textures/prideflag_cnt_rs.png differ diff --git a/textures/prideflag_cnt_ru.png b/textures/prideflag_cnt_ru.png new file mode 100644 index 0000000..a64e3f8 Binary files /dev/null and b/textures/prideflag_cnt_ru.png differ diff --git a/textures/prideflag_cnt_rw.png b/textures/prideflag_cnt_rw.png new file mode 100644 index 0000000..5d41578 Binary files /dev/null and b/textures/prideflag_cnt_rw.png differ diff --git a/textures/prideflag_cnt_sa.png b/textures/prideflag_cnt_sa.png new file mode 100644 index 0000000..a21a7ed Binary files /dev/null and b/textures/prideflag_cnt_sa.png differ diff --git a/textures/prideflag_cnt_sb.png b/textures/prideflag_cnt_sb.png new file mode 100644 index 0000000..87fbd7b Binary files /dev/null and b/textures/prideflag_cnt_sb.png differ diff --git a/textures/prideflag_cnt_sc.png b/textures/prideflag_cnt_sc.png new file mode 100644 index 0000000..8940644 Binary files /dev/null and b/textures/prideflag_cnt_sc.png differ diff --git a/textures/prideflag_cnt_sd.png b/textures/prideflag_cnt_sd.png new file mode 100644 index 0000000..2c3de4e Binary files /dev/null and b/textures/prideflag_cnt_sd.png differ diff --git a/textures/prideflag_cnt_se.png b/textures/prideflag_cnt_se.png new file mode 100644 index 0000000..d8c3642 Binary files /dev/null and b/textures/prideflag_cnt_se.png differ diff --git a/textures/prideflag_cnt_sg.png b/textures/prideflag_cnt_sg.png new file mode 100644 index 0000000..abb2947 Binary files /dev/null and b/textures/prideflag_cnt_sg.png differ diff --git a/textures/prideflag_cnt_sh.png b/textures/prideflag_cnt_sh.png new file mode 100644 index 0000000..86c1860 Binary files /dev/null and b/textures/prideflag_cnt_sh.png differ diff --git a/textures/prideflag_cnt_si.png b/textures/prideflag_cnt_si.png new file mode 100644 index 0000000..f2f09c8 Binary files /dev/null and b/textures/prideflag_cnt_si.png differ diff --git a/textures/prideflag_cnt_sj.png b/textures/prideflag_cnt_sj.png new file mode 100644 index 0000000..1b93152 Binary files /dev/null and b/textures/prideflag_cnt_sj.png differ diff --git a/textures/prideflag_cnt_sk.png b/textures/prideflag_cnt_sk.png new file mode 100644 index 0000000..20c4eb3 Binary files /dev/null and b/textures/prideflag_cnt_sk.png differ diff --git a/textures/prideflag_cnt_sl.png b/textures/prideflag_cnt_sl.png new file mode 100644 index 0000000..effed28 Binary files /dev/null and b/textures/prideflag_cnt_sl.png differ diff --git a/textures/prideflag_cnt_sm.png b/textures/prideflag_cnt_sm.png new file mode 100644 index 0000000..e0bb0e2 Binary files /dev/null and b/textures/prideflag_cnt_sm.png differ diff --git a/textures/prideflag_cnt_sn.png b/textures/prideflag_cnt_sn.png new file mode 100644 index 0000000..9e86276 Binary files /dev/null and b/textures/prideflag_cnt_sn.png differ diff --git a/textures/prideflag_cnt_so.png b/textures/prideflag_cnt_so.png new file mode 100644 index 0000000..f04fe0c Binary files /dev/null and b/textures/prideflag_cnt_so.png differ diff --git a/textures/prideflag_cnt_sr.png b/textures/prideflag_cnt_sr.png new file mode 100644 index 0000000..54b04c4 Binary files /dev/null and b/textures/prideflag_cnt_sr.png differ diff --git a/textures/prideflag_cnt_ss.png b/textures/prideflag_cnt_ss.png new file mode 100644 index 0000000..32af7a7 Binary files /dev/null and b/textures/prideflag_cnt_ss.png differ diff --git a/textures/prideflag_cnt_st.png b/textures/prideflag_cnt_st.png new file mode 100644 index 0000000..41057f1 Binary files /dev/null and b/textures/prideflag_cnt_st.png differ diff --git a/textures/prideflag_cnt_sv.png b/textures/prideflag_cnt_sv.png new file mode 100644 index 0000000..974640a Binary files /dev/null and b/textures/prideflag_cnt_sv.png differ diff --git a/textures/prideflag_cnt_sx.png b/textures/prideflag_cnt_sx.png new file mode 100644 index 0000000..3d9f05b Binary files /dev/null and b/textures/prideflag_cnt_sx.png differ diff --git a/textures/prideflag_cnt_sy.png b/textures/prideflag_cnt_sy.png new file mode 100644 index 0000000..b40207c Binary files /dev/null and b/textures/prideflag_cnt_sy.png differ diff --git a/textures/prideflag_cnt_sz.png b/textures/prideflag_cnt_sz.png new file mode 100644 index 0000000..84adfed Binary files /dev/null and b/textures/prideflag_cnt_sz.png differ diff --git a/textures/prideflag_cnt_ta.png b/textures/prideflag_cnt_ta.png new file mode 100644 index 0000000..86c1860 Binary files /dev/null and b/textures/prideflag_cnt_ta.png differ diff --git a/textures/prideflag_cnt_tc.png b/textures/prideflag_cnt_tc.png new file mode 100644 index 0000000..21baacb Binary files /dev/null and b/textures/prideflag_cnt_tc.png differ diff --git a/textures/prideflag_cnt_td.png b/textures/prideflag_cnt_td.png new file mode 100644 index 0000000..fd85bae Binary files /dev/null and b/textures/prideflag_cnt_td.png differ diff --git a/textures/prideflag_cnt_tf.png b/textures/prideflag_cnt_tf.png new file mode 100644 index 0000000..9cfcb54 Binary files /dev/null and b/textures/prideflag_cnt_tf.png differ diff --git a/textures/prideflag_cnt_tg.png b/textures/prideflag_cnt_tg.png new file mode 100644 index 0000000..a4ffe71 Binary files /dev/null and b/textures/prideflag_cnt_tg.png differ diff --git a/textures/prideflag_cnt_th.png b/textures/prideflag_cnt_th.png new file mode 100644 index 0000000..f650c88 Binary files /dev/null and b/textures/prideflag_cnt_th.png differ diff --git a/textures/prideflag_cnt_tj.png b/textures/prideflag_cnt_tj.png new file mode 100644 index 0000000..3af893a Binary files /dev/null and b/textures/prideflag_cnt_tj.png differ diff --git a/textures/prideflag_cnt_tk.png b/textures/prideflag_cnt_tk.png new file mode 100644 index 0000000..c174edb Binary files /dev/null and b/textures/prideflag_cnt_tk.png differ diff --git a/textures/prideflag_cnt_tl.png b/textures/prideflag_cnt_tl.png new file mode 100644 index 0000000..486ed3d Binary files /dev/null and b/textures/prideflag_cnt_tl.png differ diff --git a/textures/prideflag_cnt_tm.png b/textures/prideflag_cnt_tm.png new file mode 100644 index 0000000..e11476e Binary files /dev/null and b/textures/prideflag_cnt_tm.png differ diff --git a/textures/prideflag_cnt_tn.png b/textures/prideflag_cnt_tn.png new file mode 100644 index 0000000..c903fe7 Binary files /dev/null and b/textures/prideflag_cnt_tn.png differ diff --git a/textures/prideflag_cnt_to.png b/textures/prideflag_cnt_to.png new file mode 100644 index 0000000..f7c64f4 Binary files /dev/null and b/textures/prideflag_cnt_to.png differ diff --git a/textures/prideflag_cnt_tr.png b/textures/prideflag_cnt_tr.png new file mode 100644 index 0000000..ef780fc Binary files /dev/null and b/textures/prideflag_cnt_tr.png differ diff --git a/textures/prideflag_cnt_tt.png b/textures/prideflag_cnt_tt.png new file mode 100644 index 0000000..bef08e6 Binary files /dev/null and b/textures/prideflag_cnt_tt.png differ diff --git a/textures/prideflag_cnt_tv.png b/textures/prideflag_cnt_tv.png new file mode 100644 index 0000000..e1b5707 Binary files /dev/null and b/textures/prideflag_cnt_tv.png differ diff --git a/textures/prideflag_cnt_tw.png b/textures/prideflag_cnt_tw.png new file mode 100644 index 0000000..7a19abd Binary files /dev/null and b/textures/prideflag_cnt_tw.png differ diff --git a/textures/prideflag_cnt_tz.png b/textures/prideflag_cnt_tz.png new file mode 100644 index 0000000..5e4d225 Binary files /dev/null and b/textures/prideflag_cnt_tz.png differ diff --git a/textures/prideflag_cnt_ua.png b/textures/prideflag_cnt_ua.png new file mode 100644 index 0000000..54a4ee2 Binary files /dev/null and b/textures/prideflag_cnt_ua.png differ diff --git a/textures/prideflag_cnt_ug.png b/textures/prideflag_cnt_ug.png new file mode 100644 index 0000000..cb0facf Binary files /dev/null and b/textures/prideflag_cnt_ug.png differ diff --git a/textures/prideflag_cnt_um.png b/textures/prideflag_cnt_um.png new file mode 100644 index 0000000..39dd1f4 Binary files /dev/null and b/textures/prideflag_cnt_um.png differ diff --git a/textures/prideflag_cnt_un.png b/textures/prideflag_cnt_un.png new file mode 100644 index 0000000..9d711e3 Binary files /dev/null and b/textures/prideflag_cnt_un.png differ diff --git a/textures/prideflag_cnt_us.png b/textures/prideflag_cnt_us.png new file mode 100644 index 0000000..1dc8094 Binary files /dev/null and b/textures/prideflag_cnt_us.png differ diff --git a/textures/prideflag_cnt_uy.png b/textures/prideflag_cnt_uy.png new file mode 100644 index 0000000..7ede795 Binary files /dev/null and b/textures/prideflag_cnt_uy.png differ diff --git a/textures/prideflag_cnt_uz.png b/textures/prideflag_cnt_uz.png new file mode 100644 index 0000000..cd73d1d Binary files /dev/null and b/textures/prideflag_cnt_uz.png differ diff --git a/textures/prideflag_cnt_va.png b/textures/prideflag_cnt_va.png new file mode 100644 index 0000000..b909bee Binary files /dev/null and b/textures/prideflag_cnt_va.png differ diff --git a/textures/prideflag_cnt_vc.png b/textures/prideflag_cnt_vc.png new file mode 100644 index 0000000..0e31648 Binary files /dev/null and b/textures/prideflag_cnt_vc.png differ diff --git a/textures/prideflag_cnt_ve.png b/textures/prideflag_cnt_ve.png new file mode 100644 index 0000000..14f99de Binary files /dev/null and b/textures/prideflag_cnt_ve.png differ diff --git a/textures/prideflag_cnt_vg.png b/textures/prideflag_cnt_vg.png new file mode 100644 index 0000000..d378b8f Binary files /dev/null and b/textures/prideflag_cnt_vg.png differ diff --git a/textures/prideflag_cnt_vi.png b/textures/prideflag_cnt_vi.png new file mode 100644 index 0000000..af35c77 Binary files /dev/null and b/textures/prideflag_cnt_vi.png differ diff --git a/textures/prideflag_cnt_vn.png b/textures/prideflag_cnt_vn.png new file mode 100644 index 0000000..893544a Binary files /dev/null and b/textures/prideflag_cnt_vn.png differ diff --git a/textures/prideflag_cnt_vu.png b/textures/prideflag_cnt_vu.png new file mode 100644 index 0000000..4a24ff6 Binary files /dev/null and b/textures/prideflag_cnt_vu.png differ diff --git a/textures/prideflag_cnt_wf.png b/textures/prideflag_cnt_wf.png new file mode 100644 index 0000000..c038210 Binary files /dev/null and b/textures/prideflag_cnt_wf.png differ diff --git a/textures/prideflag_cnt_ws.png b/textures/prideflag_cnt_ws.png new file mode 100644 index 0000000..b4ad567 Binary files /dev/null and b/textures/prideflag_cnt_ws.png differ diff --git a/textures/prideflag_cnt_xk.png b/textures/prideflag_cnt_xk.png new file mode 100644 index 0000000..ff9fa83 Binary files /dev/null and b/textures/prideflag_cnt_xk.png differ diff --git a/textures/prideflag_cnt_xx.png b/textures/prideflag_cnt_xx.png new file mode 100644 index 0000000..3f788c5 Binary files /dev/null and b/textures/prideflag_cnt_xx.png differ diff --git a/textures/prideflag_cnt_ye.png b/textures/prideflag_cnt_ye.png new file mode 100644 index 0000000..431ebb8 Binary files /dev/null and b/textures/prideflag_cnt_ye.png differ diff --git a/textures/prideflag_cnt_yt.png b/textures/prideflag_cnt_yt.png new file mode 100644 index 0000000..c038210 Binary files /dev/null and b/textures/prideflag_cnt_yt.png differ diff --git a/textures/prideflag_cnt_za.png b/textures/prideflag_cnt_za.png new file mode 100644 index 0000000..df37029 Binary files /dev/null and b/textures/prideflag_cnt_za.png differ diff --git a/textures/prideflag_cnt_zm.png b/textures/prideflag_cnt_zm.png new file mode 100644 index 0000000..fce0da5 Binary files /dev/null and b/textures/prideflag_cnt_zm.png differ diff --git a/textures/prideflag_cnt_zw.png b/textures/prideflag_cnt_zw.png new file mode 100644 index 0000000..a52a399 Binary files /dev/null and b/textures/prideflag_cnt_zw.png differ