diff --git a/index.html b/index.html index 79cfd8d..2b804c7 100644 --- a/index.html +++ b/index.html @@ -1,236 +1,429 @@ + + - - + +
+
Lessons learned
+ scaleOrdinal vs scaleLinear (only 2 colors!) vs interpolateCool vs d3.schemeColor20c
+ ribbon source vs index (change fill them differently) + + https://github.com/d3/d3-scale-chromatic + + https://bost.ocks.org/mike/uberdata/ + http://bl.ocks.org/mbostock/1046712 + https://bl.ocks.org/mbostock/4062006 + http://projects.delimited.io/experiments/chord-transitions/demos/trade.html + + https://github.com/jokecamp/sportdb-build-scripts + https://groups.google.com/forum/#!topic/opensport/593H1O7yIdE + https://github.com/openfootball/datafile/blob/master/worldcup.rb + https://openfootball.github.io/questions.html - return "Unknown"; -}; - -const endpoints = ['teams.json', 'rounds.json', 'games.json']; - -const main = (data) => { - const lookup = buildLookup(endpoints, data); - const chordMatrix = buildChordMatrix(lookup.games, lookup.reducedTeams) - const metaMatrix = buildMetaMatrix(lookup.games, lookup.reducedTeams) - - const svg = d3.select("svg"), - width = +svg.attr("width"), - height = +svg.attr("height"), - outerArcThickness = 5, - outerRadius = Math.min(width, height) * 0.5 - 100, - innerRadius = outerRadius - outerArcThickness; - - const chord = d3.chord() - .padAngle(0.05); - - const arc = d3.arc() - .innerRadius(innerRadius) - .outerRadius(outerRadius); - - const ribbon = d3.ribbon() - .radius(innerRadius); - - // const color = d3.scaleOrdinal(d3.schemeCategory20); - // const color = d3.scaleOrdinal(d3.schemeCategory10); - // const color = d3.scaleOrdinal(d3.interpolateCool); - // const color = d3.scaleSequential(d3.interpolateRainbow); - - const color = d3.scaleLinear().domain([0,10]).range(["red", "blue"]).interpolate(d3.interpolateRgb) - - // const colors = ["#f1eef6","#d4b9da","#c994c7","#df65b0","#e7298a","#ce1256","#91003f"]; - // const colors = ["#ffffcc","#c7e9b4","#7fcdbb","#41b6c4","#1d91c0","#225ea8","#0c2c84"]; - // const colors = ["#7fcdbb","#41b6c4","#1d91c0","#225ea8","#253494","#081d58"]; - // const colors = ["#1B9E77", "#D95F02", "#7570B3", "#E7298A", "#66A61E", "#E6AB02", "#A6761D", "#666666"]; - // const color = i => colors[i % colors.length]; - - const g = svg.append("g") - .attr("transform", "translate(" + width / 2 + "," + height / 2 + ")") - .datum(chord(chordMatrix)); - - const group = g.append("g") - .attr("class", "groups") - .selectAll("g") - .data(function(chords) { return chords.groups; }) - .enter().append("g"); - - group.append("path") - .style("fill", function(d) { return color(d.index); }) - .style("stroke", function(d) { return d3.rgb(color(d.index)).darker(); }) - .attr("d", arc) - - group.append("text") - .each(function(d) { d.angle = (d.startAngle + d.endAngle) / 2; }) - .attr("dy", ".35em") - .attr("transform", function(d) { - return "rotate(" + (d.angle * 180 / Math.PI - 90) + ")" - + "translate(" + (innerRadius + 26) + ")" - + (d.angle > Math.PI ? "rotate(180)" : ""); - }) - .style("text-anchor", function(d) { return d.angle > Math.PI ? "end" : null; }) - .text(function(d) { - // SORT BY GOALS SCORED - // SORT BY ALPHABETICAL - // SORT BY COUNTRY SIZE - // SORT BY COUNTRY POPULATION - // COLOR BY CONTINENT - // STRANGE EXTENDED TIME CHILE-BRAZIL - FIX BY HAND? - return teamNameFromIndex(lookup, d.index); - }); - - g.append("g") - .attr("class", "ribbons") - .selectAll("path") - .data(function(chords) { return chords; }) - .enter().append("path") - .attr("d", ribbon) - .style("fill", function(d) { return color(d.target.index); }) - .style("stroke", function(d) { return d3.rgb(color(d.target.index)).darker(); }) - .attr("class", "ribbon") - .append("title") - .text(function(d) { - const meta1 = metaMatrix[d.target.index][d.source.index]; - const meta2 = metaMatrix[d.source.index][d.target.index]; - - const g = meta1.game; - - const t1 = lookup.teams[g.t1]; - const t2 = lookup.teams[g.t2]; - - const e1 = g.s1e ? `(+${g.s1e} in extended time)` : ''; - const e2 = g.s2e ? `(+${g.s2e} in extended time)` : ''; - - const p1 = g.s1p ? `(+${g.s1p} in penalties)` : ''; - const p2 = g.s2p ? `(+${g.s2p} in penalties)` : ''; - - return `${t1}: ${g.s1} ${e1} ${p1}\n${t2}: ${g.s2} ${e2} ${p2}`; - }); -}; - -//===== Entry point -Promise.all(endpoints.map(get)).then(main); - - - -
-
Lessons learned
- scaleOrdinal vs scaleLinear (only 2 colors!) vs interpolateCool vs d3.schemeColor20c
- ribbon source vs index (change fill them differently) - - https://github.com/d3/d3-scale-chromatic - - https://bost.ocks.org/mike/uberdata/ - http://bl.ocks.org/mbostock/1046712 - https://bl.ocks.org/mbostock/4062006 - http://projects.delimited.io/experiments/chord-transitions/demos/trade.html - - https://github.com/jokecamp/sportdb-build-scripts - https://groups.google.com/forum/#!topic/opensport/593H1O7yIdE - https://github.com/openfootball/datafile/blob/master/worldcup.rb - https://openfootball.github.io/questions.html - -
TODO
- add team name to each arc - build dataset - tweet it! -
+
TODO
+ add team name to each arc + build dataset + tweet it! +
+ + +` diff --git a/res/diagram.css b/res/diagram.css new file mode 100644 index 0000000..b7a222e --- /dev/null +++ b/res/diagram.css @@ -0,0 +1,22 @@ +.diagram { + height: 700px; + left: 200px; + position: absolute; + top: 0; + width: 700px; +} + +.group-tick line { + stroke: #ddd; +} + +.ribbon { + fill-opacity: 0.4; + stroke-width: 1; + stroke-opacity: 0.1; +} + +.ribbon:hover { + fill-opacity: 1; + stroke-opacity: 1; +} diff --git a/res/events.css b/res/events.css new file mode 100644 index 0000000..33ec001 --- /dev/null +++ b/res/events.css @@ -0,0 +1,52 @@ +.events { + display: table; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 200px; +} + +.event-item { + background: yellow; + border-radius: 0 16px 16px 0; + cursor: pointer; + filter: grayscale(100%); + height: 24px; + margin-bottom: 4px; + opacity: 0.2; + padding: 4px 4px 4px 44px; + position: relative; +} + +.event-item.active, +.event-item.active:hover { + filter: grayscale(0%); + opacity: 1; +} + +.event-item:hover { + filter: grayscale(0%); + opacity: 0.8; +} + +.event-flag { + font-size: 0; + left: 4px; + position: absolute; + top: 4px; +} + +.event-flag .flag-icon { + font-size: 24px; +} + +.event-location { + font-size: 10px; + line-height: 10px; +} + +.event-year { + font-size: 13px; + line-height: 14px; +} diff --git a/res/flags.min.css b/res/flags.min.css new file mode 100755 index 0000000..0510f08 --- /dev/null +++ b/res/flags.min.css @@ -0,0 +1 @@ +.flag-icon,.flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.flag-icon{position:relative;display:inline-block;width:1.33333333em;line-height:1em}.flag-icon:before{content:"\00a0"}.flag-icon.flag-icon-squared{width:1em}.flag-icon-ad{background-image:url(flags/4x3/ad.svg)}.flag-icon-ad.flag-icon-squared{background-image:url(flags/1x1/ad.svg)}.flag-icon-ae{background-image:url(flags/4x3/ae.svg)}.flag-icon-ae.flag-icon-squared{background-image:url(flags/1x1/ae.svg)}.flag-icon-af{background-image:url(flags/4x3/af.svg)}.flag-icon-af.flag-icon-squared{background-image:url(flags/1x1/af.svg)}.flag-icon-ag{background-image:url(flags/4x3/ag.svg)}.flag-icon-ag.flag-icon-squared{background-image:url(flags/1x1/ag.svg)}.flag-icon-ai{background-image:url(flags/4x3/ai.svg)}.flag-icon-ai.flag-icon-squared{background-image:url(flags/1x1/ai.svg)}.flag-icon-al{background-image:url(flags/4x3/al.svg)}.flag-icon-al.flag-icon-squared{background-image:url(flags/1x1/al.svg)}.flag-icon-am{background-image:url(flags/4x3/am.svg)}.flag-icon-am.flag-icon-squared{background-image:url(flags/1x1/am.svg)}.flag-icon-ao{background-image:url(flags/4x3/ao.svg)}.flag-icon-ao.flag-icon-squared{background-image:url(flags/1x1/ao.svg)}.flag-icon-aq{background-image:url(flags/4x3/aq.svg)}.flag-icon-aq.flag-icon-squared{background-image:url(flags/1x1/aq.svg)}.flag-icon-ar{background-image:url(flags/4x3/ar.svg)}.flag-icon-ar.flag-icon-squared{background-image:url(flags/1x1/ar.svg)}.flag-icon-as{background-image:url(flags/4x3/as.svg)}.flag-icon-as.flag-icon-squared{background-image:url(flags/1x1/as.svg)}.flag-icon-at{background-image:url(flags/4x3/at.svg)}.flag-icon-at.flag-icon-squared{background-image:url(flags/1x1/at.svg)}.flag-icon-au{background-image:url(flags/4x3/au.svg)}.flag-icon-au.flag-icon-squared{background-image:url(flags/1x1/au.svg)}.flag-icon-aw{background-image:url(flags/4x3/aw.svg)}.flag-icon-aw.flag-icon-squared{background-image:url(flags/1x1/aw.svg)}.flag-icon-ax{background-image:url(flags/4x3/ax.svg)}.flag-icon-ax.flag-icon-squared{background-image:url(flags/1x1/ax.svg)}.flag-icon-az{background-image:url(flags/4x3/az.svg)}.flag-icon-az.flag-icon-squared{background-image:url(flags/1x1/az.svg)}.flag-icon-ba{background-image:url(flags/4x3/ba.svg)}.flag-icon-ba.flag-icon-squared{background-image:url(flags/1x1/ba.svg)}.flag-icon-bb{background-image:url(flags/4x3/bb.svg)}.flag-icon-bb.flag-icon-squared{background-image:url(flags/1x1/bb.svg)}.flag-icon-bd{background-image:url(flags/4x3/bd.svg)}.flag-icon-bd.flag-icon-squared{background-image:url(flags/1x1/bd.svg)}.flag-icon-be{background-image:url(flags/4x3/be.svg)}.flag-icon-be.flag-icon-squared{background-image:url(flags/1x1/be.svg)}.flag-icon-bf{background-image:url(flags/4x3/bf.svg)}.flag-icon-bf.flag-icon-squared{background-image:url(flags/1x1/bf.svg)}.flag-icon-bg{background-image:url(flags/4x3/bg.svg)}.flag-icon-bg.flag-icon-squared{background-image:url(flags/1x1/bg.svg)}.flag-icon-bh{background-image:url(flags/4x3/bh.svg)}.flag-icon-bh.flag-icon-squared{background-image:url(flags/1x1/bh.svg)}.flag-icon-bi{background-image:url(flags/4x3/bi.svg)}.flag-icon-bi.flag-icon-squared{background-image:url(flags/1x1/bi.svg)}.flag-icon-bj{background-image:url(flags/4x3/bj.svg)}.flag-icon-bj.flag-icon-squared{background-image:url(flags/1x1/bj.svg)}.flag-icon-bl{background-image:url(flags/4x3/bl.svg)}.flag-icon-bl.flag-icon-squared{background-image:url(flags/1x1/bl.svg)}.flag-icon-bm{background-image:url(flags/4x3/bm.svg)}.flag-icon-bm.flag-icon-squared{background-image:url(flags/1x1/bm.svg)}.flag-icon-bn{background-image:url(flags/4x3/bn.svg)}.flag-icon-bn.flag-icon-squared{background-image:url(flags/1x1/bn.svg)}.flag-icon-bo{background-image:url(flags/4x3/bo.svg)}.flag-icon-bo.flag-icon-squared{background-image:url(flags/1x1/bo.svg)}.flag-icon-bq{background-image:url(flags/4x3/bq.svg)}.flag-icon-bq.flag-icon-squared{background-image:url(flags/1x1/bq.svg)}.flag-icon-br{background-image:url(flags/4x3/br.svg)}.flag-icon-br.flag-icon-squared{background-image:url(flags/1x1/br.svg)}.flag-icon-bs{background-image:url(flags/4x3/bs.svg)}.flag-icon-bs.flag-icon-squared{background-image:url(flags/1x1/bs.svg)}.flag-icon-bt{background-image:url(flags/4x3/bt.svg)}.flag-icon-bt.flag-icon-squared{background-image:url(flags/1x1/bt.svg)}.flag-icon-bv{background-image:url(flags/4x3/bv.svg)}.flag-icon-bv.flag-icon-squared{background-image:url(flags/1x1/bv.svg)}.flag-icon-bw{background-image:url(flags/4x3/bw.svg)}.flag-icon-bw.flag-icon-squared{background-image:url(flags/1x1/bw.svg)}.flag-icon-by{background-image:url(flags/4x3/by.svg)}.flag-icon-by.flag-icon-squared{background-image:url(flags/1x1/by.svg)}.flag-icon-bz{background-image:url(flags/4x3/bz.svg)}.flag-icon-bz.flag-icon-squared{background-image:url(flags/1x1/bz.svg)}.flag-icon-ca{background-image:url(flags/4x3/ca.svg)}.flag-icon-ca.flag-icon-squared{background-image:url(flags/1x1/ca.svg)}.flag-icon-cc{background-image:url(flags/4x3/cc.svg)}.flag-icon-cc.flag-icon-squared{background-image:url(flags/1x1/cc.svg)}.flag-icon-cd{background-image:url(flags/4x3/cd.svg)}.flag-icon-cd.flag-icon-squared{background-image:url(flags/1x1/cd.svg)}.flag-icon-cf{background-image:url(flags/4x3/cf.svg)}.flag-icon-cf.flag-icon-squared{background-image:url(flags/1x1/cf.svg)}.flag-icon-cg{background-image:url(flags/4x3/cg.svg)}.flag-icon-cg.flag-icon-squared{background-image:url(flags/1x1/cg.svg)}.flag-icon-ch{background-image:url(flags/4x3/ch.svg)}.flag-icon-ch.flag-icon-squared{background-image:url(flags/1x1/ch.svg)}.flag-icon-ci{background-image:url(flags/4x3/ci.svg)}.flag-icon-ci.flag-icon-squared{background-image:url(flags/1x1/ci.svg)}.flag-icon-ck{background-image:url(flags/4x3/ck.svg)}.flag-icon-ck.flag-icon-squared{background-image:url(flags/1x1/ck.svg)}.flag-icon-cl{background-image:url(flags/4x3/cl.svg)}.flag-icon-cl.flag-icon-squared{background-image:url(flags/1x1/cl.svg)}.flag-icon-cm{background-image:url(flags/4x3/cm.svg)}.flag-icon-cm.flag-icon-squared{background-image:url(flags/1x1/cm.svg)}.flag-icon-cn{background-image:url(flags/4x3/cn.svg)}.flag-icon-cn.flag-icon-squared{background-image:url(flags/1x1/cn.svg)}.flag-icon-co{background-image:url(flags/4x3/co.svg)}.flag-icon-co.flag-icon-squared{background-image:url(flags/1x1/co.svg)}.flag-icon-cr{background-image:url(flags/4x3/cr.svg)}.flag-icon-cr.flag-icon-squared{background-image:url(flags/1x1/cr.svg)}.flag-icon-cu{background-image:url(flags/4x3/cu.svg)}.flag-icon-cu.flag-icon-squared{background-image:url(flags/1x1/cu.svg)}.flag-icon-cv{background-image:url(flags/4x3/cv.svg)}.flag-icon-cv.flag-icon-squared{background-image:url(flags/1x1/cv.svg)}.flag-icon-cw{background-image:url(flags/4x3/cw.svg)}.flag-icon-cw.flag-icon-squared{background-image:url(flags/1x1/cw.svg)}.flag-icon-cx{background-image:url(flags/4x3/cx.svg)}.flag-icon-cx.flag-icon-squared{background-image:url(flags/1x1/cx.svg)}.flag-icon-cy{background-image:url(flags/4x3/cy.svg)}.flag-icon-cy.flag-icon-squared{background-image:url(flags/1x1/cy.svg)}.flag-icon-cz{background-image:url(flags/4x3/cz.svg)}.flag-icon-cz.flag-icon-squared{background-image:url(flags/1x1/cz.svg)}.flag-icon-de{background-image:url(flags/4x3/de.svg)}.flag-icon-de.flag-icon-squared{background-image:url(flags/1x1/de.svg)}.flag-icon-dj{background-image:url(flags/4x3/dj.svg)}.flag-icon-dj.flag-icon-squared{background-image:url(flags/1x1/dj.svg)}.flag-icon-dk{background-image:url(flags/4x3/dk.svg)}.flag-icon-dk.flag-icon-squared{background-image:url(flags/1x1/dk.svg)}.flag-icon-dm{background-image:url(flags/4x3/dm.svg)}.flag-icon-dm.flag-icon-squared{background-image:url(flags/1x1/dm.svg)}.flag-icon-do{background-image:url(flags/4x3/do.svg)}.flag-icon-do.flag-icon-squared{background-image:url(flags/1x1/do.svg)}.flag-icon-dz{background-image:url(flags/4x3/dz.svg)}.flag-icon-dz.flag-icon-squared{background-image:url(flags/1x1/dz.svg)}.flag-icon-ec{background-image:url(flags/4x3/ec.svg)}.flag-icon-ec.flag-icon-squared{background-image:url(flags/1x1/ec.svg)}.flag-icon-ee{background-image:url(flags/4x3/ee.svg)}.flag-icon-ee.flag-icon-squared{background-image:url(flags/1x1/ee.svg)}.flag-icon-eg{background-image:url(flags/4x3/eg.svg)}.flag-icon-eg.flag-icon-squared{background-image:url(flags/1x1/eg.svg)}.flag-icon-eh{background-image:url(flags/4x3/eh.svg)}.flag-icon-eh.flag-icon-squared{background-image:url(flags/1x1/eh.svg)}.flag-icon-er{background-image:url(flags/4x3/er.svg)}.flag-icon-er.flag-icon-squared{background-image:url(flags/1x1/er.svg)}.flag-icon-es{background-image:url(flags/4x3/es.svg)}.flag-icon-es.flag-icon-squared{background-image:url(flags/1x1/es.svg)}.flag-icon-et{background-image:url(flags/4x3/et.svg)}.flag-icon-et.flag-icon-squared{background-image:url(flags/1x1/et.svg)}.flag-icon-fi{background-image:url(flags/4x3/fi.svg)}.flag-icon-fi.flag-icon-squared{background-image:url(flags/1x1/fi.svg)}.flag-icon-fj{background-image:url(flags/4x3/fj.svg)}.flag-icon-fj.flag-icon-squared{background-image:url(flags/1x1/fj.svg)}.flag-icon-fk{background-image:url(flags/4x3/fk.svg)}.flag-icon-fk.flag-icon-squared{background-image:url(flags/1x1/fk.svg)}.flag-icon-fm{background-image:url(flags/4x3/fm.svg)}.flag-icon-fm.flag-icon-squared{background-image:url(flags/1x1/fm.svg)}.flag-icon-fo{background-image:url(flags/4x3/fo.svg)}.flag-icon-fo.flag-icon-squared{background-image:url(flags/1x1/fo.svg)}.flag-icon-fr{background-image:url(flags/4x3/fr.svg)}.flag-icon-fr.flag-icon-squared{background-image:url(flags/1x1/fr.svg)}.flag-icon-ga{background-image:url(flags/4x3/ga.svg)}.flag-icon-ga.flag-icon-squared{background-image:url(flags/1x1/ga.svg)}.flag-icon-gb{background-image:url(flags/4x3/gb.svg)}.flag-icon-gb.flag-icon-squared{background-image:url(flags/1x1/gb.svg)}.flag-icon-gd{background-image:url(flags/4x3/gd.svg)}.flag-icon-gd.flag-icon-squared{background-image:url(flags/1x1/gd.svg)}.flag-icon-ge{background-image:url(flags/4x3/ge.svg)}.flag-icon-ge.flag-icon-squared{background-image:url(flags/1x1/ge.svg)}.flag-icon-gf{background-image:url(flags/4x3/gf.svg)}.flag-icon-gf.flag-icon-squared{background-image:url(flags/1x1/gf.svg)}.flag-icon-gg{background-image:url(flags/4x3/gg.svg)}.flag-icon-gg.flag-icon-squared{background-image:url(flags/1x1/gg.svg)}.flag-icon-gh{background-image:url(flags/4x3/gh.svg)}.flag-icon-gh.flag-icon-squared{background-image:url(flags/1x1/gh.svg)}.flag-icon-gi{background-image:url(flags/4x3/gi.svg)}.flag-icon-gi.flag-icon-squared{background-image:url(flags/1x1/gi.svg)}.flag-icon-gl{background-image:url(flags/4x3/gl.svg)}.flag-icon-gl.flag-icon-squared{background-image:url(flags/1x1/gl.svg)}.flag-icon-gm{background-image:url(flags/4x3/gm.svg)}.flag-icon-gm.flag-icon-squared{background-image:url(flags/1x1/gm.svg)}.flag-icon-gn{background-image:url(flags/4x3/gn.svg)}.flag-icon-gn.flag-icon-squared{background-image:url(flags/1x1/gn.svg)}.flag-icon-gp{background-image:url(flags/4x3/gp.svg)}.flag-icon-gp.flag-icon-squared{background-image:url(flags/1x1/gp.svg)}.flag-icon-gq{background-image:url(flags/4x3/gq.svg)}.flag-icon-gq.flag-icon-squared{background-image:url(flags/1x1/gq.svg)}.flag-icon-gr{background-image:url(flags/4x3/gr.svg)}.flag-icon-gr.flag-icon-squared{background-image:url(flags/1x1/gr.svg)}.flag-icon-gs{background-image:url(flags/4x3/gs.svg)}.flag-icon-gs.flag-icon-squared{background-image:url(flags/1x1/gs.svg)}.flag-icon-gt{background-image:url(flags/4x3/gt.svg)}.flag-icon-gt.flag-icon-squared{background-image:url(flags/1x1/gt.svg)}.flag-icon-gu{background-image:url(flags/4x3/gu.svg)}.flag-icon-gu.flag-icon-squared{background-image:url(flags/1x1/gu.svg)}.flag-icon-gw{background-image:url(flags/4x3/gw.svg)}.flag-icon-gw.flag-icon-squared{background-image:url(flags/1x1/gw.svg)}.flag-icon-gy{background-image:url(flags/4x3/gy.svg)}.flag-icon-gy.flag-icon-squared{background-image:url(flags/1x1/gy.svg)}.flag-icon-hk{background-image:url(flags/4x3/hk.svg)}.flag-icon-hk.flag-icon-squared{background-image:url(flags/1x1/hk.svg)}.flag-icon-hm{background-image:url(flags/4x3/hm.svg)}.flag-icon-hm.flag-icon-squared{background-image:url(flags/1x1/hm.svg)}.flag-icon-hn{background-image:url(flags/4x3/hn.svg)}.flag-icon-hn.flag-icon-squared{background-image:url(flags/1x1/hn.svg)}.flag-icon-hr{background-image:url(flags/4x3/hr.svg)}.flag-icon-hr.flag-icon-squared{background-image:url(flags/1x1/hr.svg)}.flag-icon-ht{background-image:url(flags/4x3/ht.svg)}.flag-icon-ht.flag-icon-squared{background-image:url(flags/1x1/ht.svg)}.flag-icon-hu{background-image:url(flags/4x3/hu.svg)}.flag-icon-hu.flag-icon-squared{background-image:url(flags/1x1/hu.svg)}.flag-icon-id{background-image:url(flags/4x3/id.svg)}.flag-icon-id.flag-icon-squared{background-image:url(flags/1x1/id.svg)}.flag-icon-ie{background-image:url(flags/4x3/ie.svg)}.flag-icon-ie.flag-icon-squared{background-image:url(flags/1x1/ie.svg)}.flag-icon-il{background-image:url(flags/4x3/il.svg)}.flag-icon-il.flag-icon-squared{background-image:url(flags/1x1/il.svg)}.flag-icon-im{background-image:url(flags/4x3/im.svg)}.flag-icon-im.flag-icon-squared{background-image:url(flags/1x1/im.svg)}.flag-icon-in{background-image:url(flags/4x3/in.svg)}.flag-icon-in.flag-icon-squared{background-image:url(flags/1x1/in.svg)}.flag-icon-io{background-image:url(flags/4x3/io.svg)}.flag-icon-io.flag-icon-squared{background-image:url(flags/1x1/io.svg)}.flag-icon-iq{background-image:url(flags/4x3/iq.svg)}.flag-icon-iq.flag-icon-squared{background-image:url(flags/1x1/iq.svg)}.flag-icon-ir{background-image:url(flags/4x3/ir.svg)}.flag-icon-ir.flag-icon-squared{background-image:url(flags/1x1/ir.svg)}.flag-icon-is{background-image:url(flags/4x3/is.svg)}.flag-icon-is.flag-icon-squared{background-image:url(flags/1x1/is.svg)}.flag-icon-it{background-image:url(flags/4x3/it.svg)}.flag-icon-it.flag-icon-squared{background-image:url(flags/1x1/it.svg)}.flag-icon-je{background-image:url(flags/4x3/je.svg)}.flag-icon-je.flag-icon-squared{background-image:url(flags/1x1/je.svg)}.flag-icon-jm{background-image:url(flags/4x3/jm.svg)}.flag-icon-jm.flag-icon-squared{background-image:url(flags/1x1/jm.svg)}.flag-icon-jo{background-image:url(flags/4x3/jo.svg)}.flag-icon-jo.flag-icon-squared{background-image:url(flags/1x1/jo.svg)}.flag-icon-jp{background-image:url(flags/4x3/jp.svg)}.flag-icon-jp.flag-icon-squared{background-image:url(flags/1x1/jp.svg)}.flag-icon-ke{background-image:url(flags/4x3/ke.svg)}.flag-icon-ke.flag-icon-squared{background-image:url(flags/1x1/ke.svg)}.flag-icon-kg{background-image:url(flags/4x3/kg.svg)}.flag-icon-kg.flag-icon-squared{background-image:url(flags/1x1/kg.svg)}.flag-icon-kh{background-image:url(flags/4x3/kh.svg)}.flag-icon-kh.flag-icon-squared{background-image:url(flags/1x1/kh.svg)}.flag-icon-ki{background-image:url(flags/4x3/ki.svg)}.flag-icon-ki.flag-icon-squared{background-image:url(flags/1x1/ki.svg)}.flag-icon-km{background-image:url(flags/4x3/km.svg)}.flag-icon-km.flag-icon-squared{background-image:url(flags/1x1/km.svg)}.flag-icon-kn{background-image:url(flags/4x3/kn.svg)}.flag-icon-kn.flag-icon-squared{background-image:url(flags/1x1/kn.svg)}.flag-icon-kp{background-image:url(flags/4x3/kp.svg)}.flag-icon-kp.flag-icon-squared{background-image:url(flags/1x1/kp.svg)}.flag-icon-kr{background-image:url(flags/4x3/kr.svg)}.flag-icon-kr.flag-icon-squared{background-image:url(flags/1x1/kr.svg)}.flag-icon-kw{background-image:url(flags/4x3/kw.svg)}.flag-icon-kw.flag-icon-squared{background-image:url(flags/1x1/kw.svg)}.flag-icon-ky{background-image:url(flags/4x3/ky.svg)}.flag-icon-ky.flag-icon-squared{background-image:url(flags/1x1/ky.svg)}.flag-icon-kz{background-image:url(flags/4x3/kz.svg)}.flag-icon-kz.flag-icon-squared{background-image:url(flags/1x1/kz.svg)}.flag-icon-la{background-image:url(flags/4x3/la.svg)}.flag-icon-la.flag-icon-squared{background-image:url(flags/1x1/la.svg)}.flag-icon-lb{background-image:url(flags/4x3/lb.svg)}.flag-icon-lb.flag-icon-squared{background-image:url(flags/1x1/lb.svg)}.flag-icon-lc{background-image:url(flags/4x3/lc.svg)}.flag-icon-lc.flag-icon-squared{background-image:url(flags/1x1/lc.svg)}.flag-icon-li{background-image:url(flags/4x3/li.svg)}.flag-icon-li.flag-icon-squared{background-image:url(flags/1x1/li.svg)}.flag-icon-lk{background-image:url(flags/4x3/lk.svg)}.flag-icon-lk.flag-icon-squared{background-image:url(flags/1x1/lk.svg)}.flag-icon-lr{background-image:url(flags/4x3/lr.svg)}.flag-icon-lr.flag-icon-squared{background-image:url(flags/1x1/lr.svg)}.flag-icon-ls{background-image:url(flags/4x3/ls.svg)}.flag-icon-ls.flag-icon-squared{background-image:url(flags/1x1/ls.svg)}.flag-icon-lt{background-image:url(flags/4x3/lt.svg)}.flag-icon-lt.flag-icon-squared{background-image:url(flags/1x1/lt.svg)}.flag-icon-lu{background-image:url(flags/4x3/lu.svg)}.flag-icon-lu.flag-icon-squared{background-image:url(flags/1x1/lu.svg)}.flag-icon-lv{background-image:url(flags/4x3/lv.svg)}.flag-icon-lv.flag-icon-squared{background-image:url(flags/1x1/lv.svg)}.flag-icon-ly{background-image:url(flags/4x3/ly.svg)}.flag-icon-ly.flag-icon-squared{background-image:url(flags/1x1/ly.svg)}.flag-icon-ma{background-image:url(flags/4x3/ma.svg)}.flag-icon-ma.flag-icon-squared{background-image:url(flags/1x1/ma.svg)}.flag-icon-mc{background-image:url(flags/4x3/mc.svg)}.flag-icon-mc.flag-icon-squared{background-image:url(flags/1x1/mc.svg)}.flag-icon-md{background-image:url(flags/4x3/md.svg)}.flag-icon-md.flag-icon-squared{background-image:url(flags/1x1/md.svg)}.flag-icon-me{background-image:url(flags/4x3/me.svg)}.flag-icon-me.flag-icon-squared{background-image:url(flags/1x1/me.svg)}.flag-icon-mf{background-image:url(flags/4x3/mf.svg)}.flag-icon-mf.flag-icon-squared{background-image:url(flags/1x1/mf.svg)}.flag-icon-mg{background-image:url(flags/4x3/mg.svg)}.flag-icon-mg.flag-icon-squared{background-image:url(flags/1x1/mg.svg)}.flag-icon-mh{background-image:url(flags/4x3/mh.svg)}.flag-icon-mh.flag-icon-squared{background-image:url(flags/1x1/mh.svg)}.flag-icon-mk{background-image:url(flags/4x3/mk.svg)}.flag-icon-mk.flag-icon-squared{background-image:url(flags/1x1/mk.svg)}.flag-icon-ml{background-image:url(flags/4x3/ml.svg)}.flag-icon-ml.flag-icon-squared{background-image:url(flags/1x1/ml.svg)}.flag-icon-mm{background-image:url(flags/4x3/mm.svg)}.flag-icon-mm.flag-icon-squared{background-image:url(flags/1x1/mm.svg)}.flag-icon-mn{background-image:url(flags/4x3/mn.svg)}.flag-icon-mn.flag-icon-squared{background-image:url(flags/1x1/mn.svg)}.flag-icon-mo{background-image:url(flags/4x3/mo.svg)}.flag-icon-mo.flag-icon-squared{background-image:url(flags/1x1/mo.svg)}.flag-icon-mp{background-image:url(flags/4x3/mp.svg)}.flag-icon-mp.flag-icon-squared{background-image:url(flags/1x1/mp.svg)}.flag-icon-mq{background-image:url(flags/4x3/mq.svg)}.flag-icon-mq.flag-icon-squared{background-image:url(flags/1x1/mq.svg)}.flag-icon-mr{background-image:url(flags/4x3/mr.svg)}.flag-icon-mr.flag-icon-squared{background-image:url(flags/1x1/mr.svg)}.flag-icon-ms{background-image:url(flags/4x3/ms.svg)}.flag-icon-ms.flag-icon-squared{background-image:url(flags/1x1/ms.svg)}.flag-icon-mt{background-image:url(flags/4x3/mt.svg)}.flag-icon-mt.flag-icon-squared{background-image:url(flags/1x1/mt.svg)}.flag-icon-mu{background-image:url(flags/4x3/mu.svg)}.flag-icon-mu.flag-icon-squared{background-image:url(flags/1x1/mu.svg)}.flag-icon-mv{background-image:url(flags/4x3/mv.svg)}.flag-icon-mv.flag-icon-squared{background-image:url(flags/1x1/mv.svg)}.flag-icon-mw{background-image:url(flags/4x3/mw.svg)}.flag-icon-mw.flag-icon-squared{background-image:url(flags/1x1/mw.svg)}.flag-icon-mx{background-image:url(flags/4x3/mx.svg)}.flag-icon-mx.flag-icon-squared{background-image:url(flags/1x1/mx.svg)}.flag-icon-my{background-image:url(flags/4x3/my.svg)}.flag-icon-my.flag-icon-squared{background-image:url(flags/1x1/my.svg)}.flag-icon-mz{background-image:url(flags/4x3/mz.svg)}.flag-icon-mz.flag-icon-squared{background-image:url(flags/1x1/mz.svg)}.flag-icon-na{background-image:url(flags/4x3/na.svg)}.flag-icon-na.flag-icon-squared{background-image:url(flags/1x1/na.svg)}.flag-icon-nc{background-image:url(flags/4x3/nc.svg)}.flag-icon-nc.flag-icon-squared{background-image:url(flags/1x1/nc.svg)}.flag-icon-ne{background-image:url(flags/4x3/ne.svg)}.flag-icon-ne.flag-icon-squared{background-image:url(flags/1x1/ne.svg)}.flag-icon-nf{background-image:url(flags/4x3/nf.svg)}.flag-icon-nf.flag-icon-squared{background-image:url(flags/1x1/nf.svg)}.flag-icon-ng{background-image:url(flags/4x3/ng.svg)}.flag-icon-ng.flag-icon-squared{background-image:url(flags/1x1/ng.svg)}.flag-icon-ni{background-image:url(flags/4x3/ni.svg)}.flag-icon-ni.flag-icon-squared{background-image:url(flags/1x1/ni.svg)}.flag-icon-nl{background-image:url(flags/4x3/nl.svg)}.flag-icon-nl.flag-icon-squared{background-image:url(flags/1x1/nl.svg)}.flag-icon-no{background-image:url(flags/4x3/no.svg)}.flag-icon-no.flag-icon-squared{background-image:url(flags/1x1/no.svg)}.flag-icon-np{background-image:url(flags/4x3/np.svg)}.flag-icon-np.flag-icon-squared{background-image:url(flags/1x1/np.svg)}.flag-icon-nr{background-image:url(flags/4x3/nr.svg)}.flag-icon-nr.flag-icon-squared{background-image:url(flags/1x1/nr.svg)}.flag-icon-nu{background-image:url(flags/4x3/nu.svg)}.flag-icon-nu.flag-icon-squared{background-image:url(flags/1x1/nu.svg)}.flag-icon-nz{background-image:url(flags/4x3/nz.svg)}.flag-icon-nz.flag-icon-squared{background-image:url(flags/1x1/nz.svg)}.flag-icon-om{background-image:url(flags/4x3/om.svg)}.flag-icon-om.flag-icon-squared{background-image:url(flags/1x1/om.svg)}.flag-icon-pa{background-image:url(flags/4x3/pa.svg)}.flag-icon-pa.flag-icon-squared{background-image:url(flags/1x1/pa.svg)}.flag-icon-pe{background-image:url(flags/4x3/pe.svg)}.flag-icon-pe.flag-icon-squared{background-image:url(flags/1x1/pe.svg)}.flag-icon-pf{background-image:url(flags/4x3/pf.svg)}.flag-icon-pf.flag-icon-squared{background-image:url(flags/1x1/pf.svg)}.flag-icon-pg{background-image:url(flags/4x3/pg.svg)}.flag-icon-pg.flag-icon-squared{background-image:url(flags/1x1/pg.svg)}.flag-icon-ph{background-image:url(flags/4x3/ph.svg)}.flag-icon-ph.flag-icon-squared{background-image:url(flags/1x1/ph.svg)}.flag-icon-pk{background-image:url(flags/4x3/pk.svg)}.flag-icon-pk.flag-icon-squared{background-image:url(flags/1x1/pk.svg)}.flag-icon-pl{background-image:url(flags/4x3/pl.svg)}.flag-icon-pl.flag-icon-squared{background-image:url(flags/1x1/pl.svg)}.flag-icon-pm{background-image:url(flags/4x3/pm.svg)}.flag-icon-pm.flag-icon-squared{background-image:url(flags/1x1/pm.svg)}.flag-icon-pn{background-image:url(flags/4x3/pn.svg)}.flag-icon-pn.flag-icon-squared{background-image:url(flags/1x1/pn.svg)}.flag-icon-pr{background-image:url(flags/4x3/pr.svg)}.flag-icon-pr.flag-icon-squared{background-image:url(flags/1x1/pr.svg)}.flag-icon-ps{background-image:url(flags/4x3/ps.svg)}.flag-icon-ps.flag-icon-squared{background-image:url(flags/1x1/ps.svg)}.flag-icon-pt{background-image:url(flags/4x3/pt.svg)}.flag-icon-pt.flag-icon-squared{background-image:url(flags/1x1/pt.svg)}.flag-icon-pw{background-image:url(flags/4x3/pw.svg)}.flag-icon-pw.flag-icon-squared{background-image:url(flags/1x1/pw.svg)}.flag-icon-py{background-image:url(flags/4x3/py.svg)}.flag-icon-py.flag-icon-squared{background-image:url(flags/1x1/py.svg)}.flag-icon-qa{background-image:url(flags/4x3/qa.svg)}.flag-icon-qa.flag-icon-squared{background-image:url(flags/1x1/qa.svg)}.flag-icon-re{background-image:url(flags/4x3/re.svg)}.flag-icon-re.flag-icon-squared{background-image:url(flags/1x1/re.svg)}.flag-icon-ro{background-image:url(flags/4x3/ro.svg)}.flag-icon-ro.flag-icon-squared{background-image:url(flags/1x1/ro.svg)}.flag-icon-rs{background-image:url(flags/4x3/rs.svg)}.flag-icon-rs.flag-icon-squared{background-image:url(flags/1x1/rs.svg)}.flag-icon-ru{background-image:url(flags/4x3/ru.svg)}.flag-icon-ru.flag-icon-squared{background-image:url(flags/1x1/ru.svg)}.flag-icon-rw{background-image:url(flags/4x3/rw.svg)}.flag-icon-rw.flag-icon-squared{background-image:url(flags/1x1/rw.svg)}.flag-icon-sa{background-image:url(flags/4x3/sa.svg)}.flag-icon-sa.flag-icon-squared{background-image:url(flags/1x1/sa.svg)}.flag-icon-sb{background-image:url(flags/4x3/sb.svg)}.flag-icon-sb.flag-icon-squared{background-image:url(flags/1x1/sb.svg)}.flag-icon-sc{background-image:url(flags/4x3/sc.svg)}.flag-icon-sc.flag-icon-squared{background-image:url(flags/1x1/sc.svg)}.flag-icon-sd{background-image:url(flags/4x3/sd.svg)}.flag-icon-sd.flag-icon-squared{background-image:url(flags/1x1/sd.svg)}.flag-icon-se{background-image:url(flags/4x3/se.svg)}.flag-icon-se.flag-icon-squared{background-image:url(flags/1x1/se.svg)}.flag-icon-sg{background-image:url(flags/4x3/sg.svg)}.flag-icon-sg.flag-icon-squared{background-image:url(flags/1x1/sg.svg)}.flag-icon-sh{background-image:url(flags/4x3/sh.svg)}.flag-icon-sh.flag-icon-squared{background-image:url(flags/1x1/sh.svg)}.flag-icon-si{background-image:url(flags/4x3/si.svg)}.flag-icon-si.flag-icon-squared{background-image:url(flags/1x1/si.svg)}.flag-icon-sj{background-image:url(flags/4x3/sj.svg)}.flag-icon-sj.flag-icon-squared{background-image:url(flags/1x1/sj.svg)}.flag-icon-sk{background-image:url(flags/4x3/sk.svg)}.flag-icon-sk.flag-icon-squared{background-image:url(flags/1x1/sk.svg)}.flag-icon-sl{background-image:url(flags/4x3/sl.svg)}.flag-icon-sl.flag-icon-squared{background-image:url(flags/1x1/sl.svg)}.flag-icon-sm{background-image:url(flags/4x3/sm.svg)}.flag-icon-sm.flag-icon-squared{background-image:url(flags/1x1/sm.svg)}.flag-icon-sn{background-image:url(flags/4x3/sn.svg)}.flag-icon-sn.flag-icon-squared{background-image:url(flags/1x1/sn.svg)}.flag-icon-so{background-image:url(flags/4x3/so.svg)}.flag-icon-so.flag-icon-squared{background-image:url(flags/1x1/so.svg)}.flag-icon-sr{background-image:url(flags/4x3/sr.svg)}.flag-icon-sr.flag-icon-squared{background-image:url(flags/1x1/sr.svg)}.flag-icon-ss{background-image:url(flags/4x3/ss.svg)}.flag-icon-ss.flag-icon-squared{background-image:url(flags/1x1/ss.svg)}.flag-icon-st{background-image:url(flags/4x3/st.svg)}.flag-icon-st.flag-icon-squared{background-image:url(flags/1x1/st.svg)}.flag-icon-sv{background-image:url(flags/4x3/sv.svg)}.flag-icon-sv.flag-icon-squared{background-image:url(flags/1x1/sv.svg)}.flag-icon-sx{background-image:url(flags/4x3/sx.svg)}.flag-icon-sx.flag-icon-squared{background-image:url(flags/1x1/sx.svg)}.flag-icon-sy{background-image:url(flags/4x3/sy.svg)}.flag-icon-sy.flag-icon-squared{background-image:url(flags/1x1/sy.svg)}.flag-icon-sz{background-image:url(flags/4x3/sz.svg)}.flag-icon-sz.flag-icon-squared{background-image:url(flags/1x1/sz.svg)}.flag-icon-tc{background-image:url(flags/4x3/tc.svg)}.flag-icon-tc.flag-icon-squared{background-image:url(flags/1x1/tc.svg)}.flag-icon-td{background-image:url(flags/4x3/td.svg)}.flag-icon-td.flag-icon-squared{background-image:url(flags/1x1/td.svg)}.flag-icon-tf{background-image:url(flags/4x3/tf.svg)}.flag-icon-tf.flag-icon-squared{background-image:url(flags/1x1/tf.svg)}.flag-icon-tg{background-image:url(flags/4x3/tg.svg)}.flag-icon-tg.flag-icon-squared{background-image:url(flags/1x1/tg.svg)}.flag-icon-th{background-image:url(flags/4x3/th.svg)}.flag-icon-th.flag-icon-squared{background-image:url(flags/1x1/th.svg)}.flag-icon-tj{background-image:url(flags/4x3/tj.svg)}.flag-icon-tj.flag-icon-squared{background-image:url(flags/1x1/tj.svg)}.flag-icon-tk{background-image:url(flags/4x3/tk.svg)}.flag-icon-tk.flag-icon-squared{background-image:url(flags/1x1/tk.svg)}.flag-icon-tl{background-image:url(flags/4x3/tl.svg)}.flag-icon-tl.flag-icon-squared{background-image:url(flags/1x1/tl.svg)}.flag-icon-tm{background-image:url(flags/4x3/tm.svg)}.flag-icon-tm.flag-icon-squared{background-image:url(flags/1x1/tm.svg)}.flag-icon-tn{background-image:url(flags/4x3/tn.svg)}.flag-icon-tn.flag-icon-squared{background-image:url(flags/1x1/tn.svg)}.flag-icon-to{background-image:url(flags/4x3/to.svg)}.flag-icon-to.flag-icon-squared{background-image:url(flags/1x1/to.svg)}.flag-icon-tr{background-image:url(flags/4x3/tr.svg)}.flag-icon-tr.flag-icon-squared{background-image:url(flags/1x1/tr.svg)}.flag-icon-tt{background-image:url(flags/4x3/tt.svg)}.flag-icon-tt.flag-icon-squared{background-image:url(flags/1x1/tt.svg)}.flag-icon-tv{background-image:url(flags/4x3/tv.svg)}.flag-icon-tv.flag-icon-squared{background-image:url(flags/1x1/tv.svg)}.flag-icon-tw{background-image:url(flags/4x3/tw.svg)}.flag-icon-tw.flag-icon-squared{background-image:url(flags/1x1/tw.svg)}.flag-icon-tz{background-image:url(flags/4x3/tz.svg)}.flag-icon-tz.flag-icon-squared{background-image:url(flags/1x1/tz.svg)}.flag-icon-ua{background-image:url(flags/4x3/ua.svg)}.flag-icon-ua.flag-icon-squared{background-image:url(flags/1x1/ua.svg)}.flag-icon-ug{background-image:url(flags/4x3/ug.svg)}.flag-icon-ug.flag-icon-squared{background-image:url(flags/1x1/ug.svg)}.flag-icon-um{background-image:url(flags/4x3/um.svg)}.flag-icon-um.flag-icon-squared{background-image:url(flags/1x1/um.svg)}.flag-icon-us{background-image:url(flags/4x3/us.svg)}.flag-icon-us.flag-icon-squared{background-image:url(flags/1x1/us.svg)}.flag-icon-uy{background-image:url(flags/4x3/uy.svg)}.flag-icon-uy.flag-icon-squared{background-image:url(flags/1x1/uy.svg)}.flag-icon-uz{background-image:url(flags/4x3/uz.svg)}.flag-icon-uz.flag-icon-squared{background-image:url(flags/1x1/uz.svg)}.flag-icon-va{background-image:url(flags/4x3/va.svg)}.flag-icon-va.flag-icon-squared{background-image:url(flags/1x1/va.svg)}.flag-icon-vc{background-image:url(flags/4x3/vc.svg)}.flag-icon-vc.flag-icon-squared{background-image:url(flags/1x1/vc.svg)}.flag-icon-ve{background-image:url(flags/4x3/ve.svg)}.flag-icon-ve.flag-icon-squared{background-image:url(flags/1x1/ve.svg)}.flag-icon-vg{background-image:url(flags/4x3/vg.svg)}.flag-icon-vg.flag-icon-squared{background-image:url(flags/1x1/vg.svg)}.flag-icon-vi{background-image:url(flags/4x3/vi.svg)}.flag-icon-vi.flag-icon-squared{background-image:url(flags/1x1/vi.svg)}.flag-icon-vn{background-image:url(flags/4x3/vn.svg)}.flag-icon-vn.flag-icon-squared{background-image:url(flags/1x1/vn.svg)}.flag-icon-vu{background-image:url(flags/4x3/vu.svg)}.flag-icon-vu.flag-icon-squared{background-image:url(flags/1x1/vu.svg)}.flag-icon-wf{background-image:url(flags/4x3/wf.svg)}.flag-icon-wf.flag-icon-squared{background-image:url(flags/1x1/wf.svg)}.flag-icon-ws{background-image:url(flags/4x3/ws.svg)}.flag-icon-ws.flag-icon-squared{background-image:url(flags/1x1/ws.svg)}.flag-icon-ye{background-image:url(flags/4x3/ye.svg)}.flag-icon-ye.flag-icon-squared{background-image:url(flags/1x1/ye.svg)}.flag-icon-yt{background-image:url(flags/4x3/yt.svg)}.flag-icon-yt.flag-icon-squared{background-image:url(flags/1x1/yt.svg)}.flag-icon-za{background-image:url(flags/4x3/za.svg)}.flag-icon-za.flag-icon-squared{background-image:url(flags/1x1/za.svg)}.flag-icon-zm{background-image:url(flags/4x3/zm.svg)}.flag-icon-zm.flag-icon-squared{background-image:url(flags/1x1/zm.svg)}.flag-icon-zw{background-image:url(flags/4x3/zw.svg)}.flag-icon-zw.flag-icon-squared{background-image:url(flags/1x1/zw.svg)}.flag-icon-eu{background-image:url(flags/4x3/eu.svg)}.flag-icon-eu.flag-icon-squared{background-image:url(flags/1x1/eu.svg)}.flag-icon-gb-eng{background-image:url(flags/4x3/gb-eng.svg)}.flag-icon-gb-eng.flag-icon-squared{background-image:url(flags/1x1/gb-eng.svg)}.flag-icon-gb-nir{background-image:url(flags/4x3/gb-nir.svg)}.flag-icon-gb-nir.flag-icon-squared{background-image:url(flags/1x1/gb-nir.svg)}.flag-icon-gb-sct{background-image:url(flags/4x3/gb-sct.svg)}.flag-icon-gb-sct.flag-icon-squared{background-image:url(flags/1x1/gb-sct.svg)}.flag-icon-gb-wls{background-image:url(flags/4x3/gb-wls.svg)}.flag-icon-gb-wls.flag-icon-squared{background-image:url(flags/1x1/gb-wls.svg)}.flag-icon-un{background-image:url(flags/4x3/un.svg)}.flag-icon-un.flag-icon-squared{background-image:url(flags/1x1/un.svg)} diff --git a/res/flags/1x1/ad.svg b/res/flags/1x1/ad.svg new file mode 100755 index 0000000..cafda60 --- /dev/null +++ b/res/flags/1x1/ad.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ae.svg b/res/flags/1x1/ae.svg new file mode 100755 index 0000000..9ac2866 --- /dev/null +++ b/res/flags/1x1/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/af.svg b/res/flags/1x1/af.svg new file mode 100755 index 0000000..a7592e2 --- /dev/null +++ b/res/flags/1x1/af.svg @@ -0,0 +1,431 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ag.svg b/res/flags/1x1/ag.svg new file mode 100755 index 0000000..0b5d4fd --- /dev/null +++ b/res/flags/1x1/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ai.svg b/res/flags/1x1/ai.svg new file mode 100755 index 0000000..bbecfad --- /dev/null +++ b/res/flags/1x1/ai.svg @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/al.svg b/res/flags/1x1/al.svg new file mode 100755 index 0000000..93bce4a --- /dev/null +++ b/res/flags/1x1/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/am.svg b/res/flags/1x1/am.svg new file mode 100755 index 0000000..150db22 --- /dev/null +++ b/res/flags/1x1/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/ao.svg b/res/flags/1x1/ao.svg new file mode 100755 index 0000000..3bbd6ce --- /dev/null +++ b/res/flags/1x1/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/aq.svg b/res/flags/1x1/aq.svg new file mode 100755 index 0000000..043f1e0 --- /dev/null +++ b/res/flags/1x1/aq.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/ar.svg b/res/flags/1x1/ar.svg new file mode 100755 index 0000000..566984f --- /dev/null +++ b/res/flags/1x1/ar.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/as.svg b/res/flags/1x1/as.svg new file mode 100755 index 0000000..81e28e2 --- /dev/null +++ b/res/flags/1x1/as.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/at.svg b/res/flags/1x1/at.svg new file mode 100755 index 0000000..fc25f26 --- /dev/null +++ b/res/flags/1x1/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/au.svg b/res/flags/1x1/au.svg new file mode 100755 index 0000000..b868658 --- /dev/null +++ b/res/flags/1x1/au.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/aw.svg b/res/flags/1x1/aw.svg new file mode 100755 index 0000000..e7994af --- /dev/null +++ b/res/flags/1x1/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ax.svg b/res/flags/1x1/ax.svg new file mode 100755 index 0000000..680dd1d --- /dev/null +++ b/res/flags/1x1/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/az.svg b/res/flags/1x1/az.svg new file mode 100755 index 0000000..df5a172 --- /dev/null +++ b/res/flags/1x1/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/ba.svg b/res/flags/1x1/ba.svg new file mode 100755 index 0000000..62a0c73 --- /dev/null +++ b/res/flags/1x1/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/bb.svg b/res/flags/1x1/bb.svg new file mode 100755 index 0000000..bb0daec --- /dev/null +++ b/res/flags/1x1/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/bd.svg b/res/flags/1x1/bd.svg new file mode 100755 index 0000000..b8866da --- /dev/null +++ b/res/flags/1x1/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/flags/1x1/be.svg b/res/flags/1x1/be.svg new file mode 100755 index 0000000..92f51fc --- /dev/null +++ b/res/flags/1x1/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/bf.svg b/res/flags/1x1/bf.svg new file mode 100755 index 0000000..54c86ce --- /dev/null +++ b/res/flags/1x1/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/bg.svg b/res/flags/1x1/bg.svg new file mode 100755 index 0000000..4b5d091 --- /dev/null +++ b/res/flags/1x1/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/bh.svg b/res/flags/1x1/bh.svg new file mode 100755 index 0000000..beaefe9 --- /dev/null +++ b/res/flags/1x1/bh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/1x1/bi.svg b/res/flags/1x1/bi.svg new file mode 100755 index 0000000..b4268f6 --- /dev/null +++ b/res/flags/1x1/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/bj.svg b/res/flags/1x1/bj.svg new file mode 100755 index 0000000..0306fd0 --- /dev/null +++ b/res/flags/1x1/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/bl.svg b/res/flags/1x1/bl.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/bm.svg b/res/flags/1x1/bm.svg new file mode 100755 index 0000000..f6239cc --- /dev/null +++ b/res/flags/1x1/bm.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/bn.svg b/res/flags/1x1/bn.svg new file mode 100755 index 0000000..43bcabc --- /dev/null +++ b/res/flags/1x1/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/bo.svg b/res/flags/1x1/bo.svg new file mode 100755 index 0000000..7b27d90 --- /dev/null +++ b/res/flags/1x1/bo.svg @@ -0,0 +1,685 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/bq.svg b/res/flags/1x1/bq.svg new file mode 100755 index 0000000..29b5af6 --- /dev/null +++ b/res/flags/1x1/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/br.svg b/res/flags/1x1/br.svg new file mode 100755 index 0000000..3421e38 --- /dev/null +++ b/res/flags/1x1/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/bs.svg b/res/flags/1x1/bs.svg new file mode 100755 index 0000000..d4e24ad --- /dev/null +++ b/res/flags/1x1/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/bt.svg b/res/flags/1x1/bt.svg new file mode 100755 index 0000000..37f60c9 --- /dev/null +++ b/res/flags/1x1/bt.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/bv.svg b/res/flags/1x1/bv.svg new file mode 100755 index 0000000..6dd0007 --- /dev/null +++ b/res/flags/1x1/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/bw.svg b/res/flags/1x1/bw.svg new file mode 100755 index 0000000..fa886bb --- /dev/null +++ b/res/flags/1x1/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/by.svg b/res/flags/1x1/by.svg new file mode 100755 index 0000000..e0ba400 --- /dev/null +++ b/res/flags/1x1/by.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/bz.svg b/res/flags/1x1/bz.svg new file mode 100755 index 0000000..1d8d6b3 --- /dev/null +++ b/res/flags/1x1/bz.svg @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ca.svg b/res/flags/1x1/ca.svg new file mode 100755 index 0000000..acc3a3f --- /dev/null +++ b/res/flags/1x1/ca.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/cc.svg b/res/flags/1x1/cc.svg new file mode 100755 index 0000000..e2ab9cd --- /dev/null +++ b/res/flags/1x1/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/cd.svg b/res/flags/1x1/cd.svg new file mode 100755 index 0000000..44b3c09 --- /dev/null +++ b/res/flags/1x1/cd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/cf.svg b/res/flags/1x1/cf.svg new file mode 100755 index 0000000..d48e669 --- /dev/null +++ b/res/flags/1x1/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/cg.svg b/res/flags/1x1/cg.svg new file mode 100755 index 0000000..021f36d --- /dev/null +++ b/res/flags/1x1/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/ch.svg b/res/flags/1x1/ch.svg new file mode 100755 index 0000000..2009774 --- /dev/null +++ b/res/flags/1x1/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/ci.svg b/res/flags/1x1/ci.svg new file mode 100755 index 0000000..048e8b5 --- /dev/null +++ b/res/flags/1x1/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/ck.svg b/res/flags/1x1/ck.svg new file mode 100755 index 0000000..cfb93b9 --- /dev/null +++ b/res/flags/1x1/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/cl.svg b/res/flags/1x1/cl.svg new file mode 100755 index 0000000..fd2f344 --- /dev/null +++ b/res/flags/1x1/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/cm.svg b/res/flags/1x1/cm.svg new file mode 100755 index 0000000..72a7c8a --- /dev/null +++ b/res/flags/1x1/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/cn.svg b/res/flags/1x1/cn.svg new file mode 100755 index 0000000..36a7f81 --- /dev/null +++ b/res/flags/1x1/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/1x1/co.svg b/res/flags/1x1/co.svg new file mode 100755 index 0000000..ccaa606 --- /dev/null +++ b/res/flags/1x1/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/cr.svg b/res/flags/1x1/cr.svg new file mode 100755 index 0000000..e100d16 --- /dev/null +++ b/res/flags/1x1/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/cu.svg b/res/flags/1x1/cu.svg new file mode 100755 index 0000000..2fadf06 --- /dev/null +++ b/res/flags/1x1/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/cv.svg b/res/flags/1x1/cv.svg new file mode 100755 index 0000000..03610d2 --- /dev/null +++ b/res/flags/1x1/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/cw.svg b/res/flags/1x1/cw.svg new file mode 100755 index 0000000..3c8803a --- /dev/null +++ b/res/flags/1x1/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/cx.svg b/res/flags/1x1/cx.svg new file mode 100755 index 0000000..c151611 --- /dev/null +++ b/res/flags/1x1/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/cy.svg b/res/flags/1x1/cy.svg new file mode 100755 index 0000000..dd51fa4 --- /dev/null +++ b/res/flags/1x1/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/cz.svg b/res/flags/1x1/cz.svg new file mode 100755 index 0000000..c8ad655 --- /dev/null +++ b/res/flags/1x1/cz.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/de.svg b/res/flags/1x1/de.svg new file mode 100755 index 0000000..7af71b9 --- /dev/null +++ b/res/flags/1x1/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/dj.svg b/res/flags/1x1/dj.svg new file mode 100755 index 0000000..2cf2b9f --- /dev/null +++ b/res/flags/1x1/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/dk.svg b/res/flags/1x1/dk.svg new file mode 100755 index 0000000..0b4ee37 --- /dev/null +++ b/res/flags/1x1/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/dm.svg b/res/flags/1x1/dm.svg new file mode 100755 index 0000000..54f6732 --- /dev/null +++ b/res/flags/1x1/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/do.svg b/res/flags/1x1/do.svg new file mode 100755 index 0000000..428e564 --- /dev/null +++ b/res/flags/1x1/do.svg @@ -0,0 +1,6745 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/dz.svg b/res/flags/1x1/dz.svg new file mode 100755 index 0000000..d2d436a --- /dev/null +++ b/res/flags/1x1/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/ec.svg b/res/flags/1x1/ec.svg new file mode 100755 index 0000000..715c301 --- /dev/null +++ b/res/flags/1x1/ec.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ee.svg b/res/flags/1x1/ee.svg new file mode 100755 index 0000000..42d5807 --- /dev/null +++ b/res/flags/1x1/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/eg.svg b/res/flags/1x1/eg.svg new file mode 100755 index 0000000..b138d58 --- /dev/null +++ b/res/flags/1x1/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/eh.svg b/res/flags/1x1/eh.svg new file mode 100755 index 0000000..29eb21e --- /dev/null +++ b/res/flags/1x1/eh.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/er.svg b/res/flags/1x1/er.svg new file mode 100755 index 0000000..ef48578 --- /dev/null +++ b/res/flags/1x1/er.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/es.svg b/res/flags/1x1/es.svg new file mode 100755 index 0000000..9a7e10c --- /dev/null +++ b/res/flags/1x1/es.svg @@ -0,0 +1,581 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/et.svg b/res/flags/1x1/et.svg new file mode 100755 index 0000000..7b07563 --- /dev/null +++ b/res/flags/1x1/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/eu.svg b/res/flags/1x1/eu.svg new file mode 100755 index 0000000..80d96b7 --- /dev/null +++ b/res/flags/1x1/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/fi.svg b/res/flags/1x1/fi.svg new file mode 100755 index 0000000..736a548 --- /dev/null +++ b/res/flags/1x1/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/fj.svg b/res/flags/1x1/fj.svg new file mode 100755 index 0000000..04486bd --- /dev/null +++ b/res/flags/1x1/fj.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/fk.svg b/res/flags/1x1/fk.svg new file mode 100755 index 0000000..9e1c388 --- /dev/null +++ b/res/flags/1x1/fk.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/fm.svg b/res/flags/1x1/fm.svg new file mode 100755 index 0000000..ee33a4c --- /dev/null +++ b/res/flags/1x1/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/1x1/fo.svg b/res/flags/1x1/fo.svg new file mode 100755 index 0000000..8be250d --- /dev/null +++ b/res/flags/1x1/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/fr.svg b/res/flags/1x1/fr.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/fr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/ga.svg b/res/flags/1x1/ga.svg new file mode 100755 index 0000000..621ef95 --- /dev/null +++ b/res/flags/1x1/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/gb-eng.svg b/res/flags/1x1/gb-eng.svg new file mode 100755 index 0000000..0141bfd --- /dev/null +++ b/res/flags/1x1/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/gb-nir.svg b/res/flags/1x1/gb-nir.svg new file mode 100755 index 0000000..f35c38d --- /dev/null +++ b/res/flags/1x1/gb-nir.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/gb-sct.svg b/res/flags/1x1/gb-sct.svg new file mode 100755 index 0000000..ff49ecc --- /dev/null +++ b/res/flags/1x1/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/flags/1x1/gb-wls.svg b/res/flags/1x1/gb-wls.svg new file mode 100755 index 0000000..705ac63 --- /dev/null +++ b/res/flags/1x1/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/gb.svg b/res/flags/1x1/gb.svg new file mode 100755 index 0000000..4018e2a --- /dev/null +++ b/res/flags/1x1/gb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/gd.svg b/res/flags/1x1/gd.svg new file mode 100755 index 0000000..a2ed2ce --- /dev/null +++ b/res/flags/1x1/gd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/ge.svg b/res/flags/1x1/ge.svg new file mode 100755 index 0000000..e6108fc --- /dev/null +++ b/res/flags/1x1/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/gf.svg b/res/flags/1x1/gf.svg new file mode 100755 index 0000000..054d94e --- /dev/null +++ b/res/flags/1x1/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/gg.svg b/res/flags/1x1/gg.svg new file mode 100755 index 0000000..73e0b60 --- /dev/null +++ b/res/flags/1x1/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/gh.svg b/res/flags/1x1/gh.svg new file mode 100755 index 0000000..8e26562 --- /dev/null +++ b/res/flags/1x1/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/gi.svg b/res/flags/1x1/gi.svg new file mode 100755 index 0000000..e0403dd --- /dev/null +++ b/res/flags/1x1/gi.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/gl.svg b/res/flags/1x1/gl.svg new file mode 100755 index 0000000..db612be --- /dev/null +++ b/res/flags/1x1/gl.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/gm.svg b/res/flags/1x1/gm.svg new file mode 100755 index 0000000..a3b62e8 --- /dev/null +++ b/res/flags/1x1/gm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/gn.svg b/res/flags/1x1/gn.svg new file mode 100755 index 0000000..e10e240 --- /dev/null +++ b/res/flags/1x1/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/gp.svg b/res/flags/1x1/gp.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/gp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/gq.svg b/res/flags/1x1/gq.svg new file mode 100755 index 0000000..b093994 --- /dev/null +++ b/res/flags/1x1/gq.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/gr.svg b/res/flags/1x1/gr.svg new file mode 100755 index 0000000..4240e9c --- /dev/null +++ b/res/flags/1x1/gr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/gs.svg b/res/flags/1x1/gs.svg new file mode 100755 index 0000000..d5a7d46 --- /dev/null +++ b/res/flags/1x1/gs.svg @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + E + + + O + + + T + + + E + + + R + + + R + + + R + + + R + + + R + + + E + + + O + + + O + + + A + + + A + + + A + + + M + + + P + + + P + + + P + + + I + + + T + + + T + + + M + + + G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/gt.svg b/res/flags/1x1/gt.svg new file mode 100755 index 0000000..8ce5e46 --- /dev/null +++ b/res/flags/1x1/gt.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/gu.svg b/res/flags/1x1/gu.svg new file mode 100755 index 0000000..855e1a9 --- /dev/null +++ b/res/flags/1x1/gu.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + G + + + U + + + A + + + M + + + + + + + + G + + + U + + + A + + + M + + diff --git a/res/flags/1x1/gw.svg b/res/flags/1x1/gw.svg new file mode 100755 index 0000000..0d2b8a4 --- /dev/null +++ b/res/flags/1x1/gw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/gy.svg b/res/flags/1x1/gy.svg new file mode 100755 index 0000000..64104b5 --- /dev/null +++ b/res/flags/1x1/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/hk.svg b/res/flags/1x1/hk.svg new file mode 100755 index 0000000..b1b8f79 --- /dev/null +++ b/res/flags/1x1/hk.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/hm.svg b/res/flags/1x1/hm.svg new file mode 100755 index 0000000..c97d4f1 --- /dev/null +++ b/res/flags/1x1/hm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/hn.svg b/res/flags/1x1/hn.svg new file mode 100755 index 0000000..cee1714 --- /dev/null +++ b/res/flags/1x1/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/hr.svg b/res/flags/1x1/hr.svg new file mode 100755 index 0000000..24b1854 --- /dev/null +++ b/res/flags/1x1/hr.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ht.svg b/res/flags/1x1/ht.svg new file mode 100755 index 0000000..634b608 --- /dev/null +++ b/res/flags/1x1/ht.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/hu.svg b/res/flags/1x1/hu.svg new file mode 100755 index 0000000..d2b40b4 --- /dev/null +++ b/res/flags/1x1/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/id.svg b/res/flags/1x1/id.svg new file mode 100755 index 0000000..5772afb --- /dev/null +++ b/res/flags/1x1/id.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/ie.svg b/res/flags/1x1/ie.svg new file mode 100755 index 0000000..6b44322 --- /dev/null +++ b/res/flags/1x1/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/il.svg b/res/flags/1x1/il.svg new file mode 100755 index 0000000..1359160 --- /dev/null +++ b/res/flags/1x1/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/im.svg b/res/flags/1x1/im.svg new file mode 100755 index 0000000..6143f5b --- /dev/null +++ b/res/flags/1x1/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/in.svg b/res/flags/1x1/in.svg new file mode 100755 index 0000000..9dbf204 --- /dev/null +++ b/res/flags/1x1/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/io.svg b/res/flags/1x1/io.svg new file mode 100755 index 0000000..585e76e --- /dev/null +++ b/res/flags/1x1/io.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/iq.svg b/res/flags/1x1/iq.svg new file mode 100755 index 0000000..100c336 --- /dev/null +++ b/res/flags/1x1/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/res/flags/1x1/ir.svg b/res/flags/1x1/ir.svg new file mode 100755 index 0000000..a6419b5 --- /dev/null +++ b/res/flags/1x1/ir.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/is.svg b/res/flags/1x1/is.svg new file mode 100755 index 0000000..f0c46ca --- /dev/null +++ b/res/flags/1x1/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/it.svg b/res/flags/1x1/it.svg new file mode 100755 index 0000000..125d41c --- /dev/null +++ b/res/flags/1x1/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/je.svg b/res/flags/1x1/je.svg new file mode 100755 index 0000000..8c3552d --- /dev/null +++ b/res/flags/1x1/je.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/jm.svg b/res/flags/1x1/jm.svg new file mode 100755 index 0000000..f241be7 --- /dev/null +++ b/res/flags/1x1/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/jo.svg b/res/flags/1x1/jo.svg new file mode 100755 index 0000000..4d7fcdd --- /dev/null +++ b/res/flags/1x1/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/jp.svg b/res/flags/1x1/jp.svg new file mode 100755 index 0000000..a7a1cbb --- /dev/null +++ b/res/flags/1x1/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/1x1/ke.svg b/res/flags/1x1/ke.svg new file mode 100755 index 0000000..098c78f --- /dev/null +++ b/res/flags/1x1/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/kg.svg b/res/flags/1x1/kg.svg new file mode 100755 index 0000000..5a4be2b --- /dev/null +++ b/res/flags/1x1/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/kh.svg b/res/flags/1x1/kh.svg new file mode 100755 index 0000000..bc0631d --- /dev/null +++ b/res/flags/1x1/kh.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ki.svg b/res/flags/1x1/ki.svg new file mode 100755 index 0000000..e363667 --- /dev/null +++ b/res/flags/1x1/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/km.svg b/res/flags/1x1/km.svg new file mode 100755 index 0000000..11c3348 --- /dev/null +++ b/res/flags/1x1/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/kn.svg b/res/flags/1x1/kn.svg new file mode 100755 index 0000000..193b236 --- /dev/null +++ b/res/flags/1x1/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/kp.svg b/res/flags/1x1/kp.svg new file mode 100755 index 0000000..0c0521e --- /dev/null +++ b/res/flags/1x1/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/kr.svg b/res/flags/1x1/kr.svg new file mode 100755 index 0000000..72f42c4 --- /dev/null +++ b/res/flags/1x1/kr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/kw.svg b/res/flags/1x1/kw.svg new file mode 100755 index 0000000..f8176f0 --- /dev/null +++ b/res/flags/1x1/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/ky.svg b/res/flags/1x1/ky.svg new file mode 100755 index 0000000..e661613 --- /dev/null +++ b/res/flags/1x1/ky.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/kz.svg b/res/flags/1x1/kz.svg new file mode 100755 index 0000000..7b2bb3c --- /dev/null +++ b/res/flags/1x1/kz.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/la.svg b/res/flags/1x1/la.svg new file mode 100755 index 0000000..b03cc49 --- /dev/null +++ b/res/flags/1x1/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/lb.svg b/res/flags/1x1/lb.svg new file mode 100755 index 0000000..9fc5a64 --- /dev/null +++ b/res/flags/1x1/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/lc.svg b/res/flags/1x1/lc.svg new file mode 100755 index 0000000..9f76562 --- /dev/null +++ b/res/flags/1x1/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/li.svg b/res/flags/1x1/li.svg new file mode 100755 index 0000000..e9ae555 --- /dev/null +++ b/res/flags/1x1/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/lk.svg b/res/flags/1x1/lk.svg new file mode 100755 index 0000000..de6a5ba --- /dev/null +++ b/res/flags/1x1/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/lr.svg b/res/flags/1x1/lr.svg new file mode 100755 index 0000000..4dbc516 --- /dev/null +++ b/res/flags/1x1/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ls.svg b/res/flags/1x1/ls.svg new file mode 100755 index 0000000..b200672 --- /dev/null +++ b/res/flags/1x1/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/lt.svg b/res/flags/1x1/lt.svg new file mode 100755 index 0000000..2f03f7c --- /dev/null +++ b/res/flags/1x1/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/lu.svg b/res/flags/1x1/lu.svg new file mode 100755 index 0000000..505b0d6 --- /dev/null +++ b/res/flags/1x1/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/lv.svg b/res/flags/1x1/lv.svg new file mode 100755 index 0000000..4219876 --- /dev/null +++ b/res/flags/1x1/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/ly.svg b/res/flags/1x1/ly.svg new file mode 100755 index 0000000..98c1103 --- /dev/null +++ b/res/flags/1x1/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/ma.svg b/res/flags/1x1/ma.svg new file mode 100755 index 0000000..40db1ab --- /dev/null +++ b/res/flags/1x1/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/flags/1x1/mc.svg b/res/flags/1x1/mc.svg new file mode 100755 index 0000000..8c53385 --- /dev/null +++ b/res/flags/1x1/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/md.svg b/res/flags/1x1/md.svg new file mode 100755 index 0000000..4851fa4 --- /dev/null +++ b/res/flags/1x1/md.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/me.svg b/res/flags/1x1/me.svg new file mode 100755 index 0000000..dd519bd --- /dev/null +++ b/res/flags/1x1/me.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/mf.svg b/res/flags/1x1/mf.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/mf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/mg.svg b/res/flags/1x1/mg.svg new file mode 100755 index 0000000..ec53b17 --- /dev/null +++ b/res/flags/1x1/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/mh.svg b/res/flags/1x1/mh.svg new file mode 100755 index 0000000..f296605 --- /dev/null +++ b/res/flags/1x1/mh.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/mk.svg b/res/flags/1x1/mk.svg new file mode 100755 index 0000000..9c82c3c --- /dev/null +++ b/res/flags/1x1/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/ml.svg b/res/flags/1x1/ml.svg new file mode 100755 index 0000000..6b54ecb --- /dev/null +++ b/res/flags/1x1/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/mm.svg b/res/flags/1x1/mm.svg new file mode 100755 index 0000000..562c97b --- /dev/null +++ b/res/flags/1x1/mm.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/mn.svg b/res/flags/1x1/mn.svg new file mode 100755 index 0000000..99cfeae --- /dev/null +++ b/res/flags/1x1/mn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/mo.svg b/res/flags/1x1/mo.svg new file mode 100755 index 0000000..70ad7fd --- /dev/null +++ b/res/flags/1x1/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/mp.svg b/res/flags/1x1/mp.svg new file mode 100755 index 0000000..7d9f188 --- /dev/null +++ b/res/flags/1x1/mp.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/mq.svg b/res/flags/1x1/mq.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/mq.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/mr.svg b/res/flags/1x1/mr.svg new file mode 100755 index 0000000..9b3d612 --- /dev/null +++ b/res/flags/1x1/mr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/ms.svg b/res/flags/1x1/ms.svg new file mode 100755 index 0000000..91a4be7 --- /dev/null +++ b/res/flags/1x1/ms.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/mt.svg b/res/flags/1x1/mt.svg new file mode 100755 index 0000000..1e37824 --- /dev/null +++ b/res/flags/1x1/mt.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/mu.svg b/res/flags/1x1/mu.svg new file mode 100755 index 0000000..c84c685 --- /dev/null +++ b/res/flags/1x1/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/mv.svg b/res/flags/1x1/mv.svg new file mode 100755 index 0000000..61d2bfc --- /dev/null +++ b/res/flags/1x1/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/mw.svg b/res/flags/1x1/mw.svg new file mode 100755 index 0000000..ee6be8f --- /dev/null +++ b/res/flags/1x1/mw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/mx.svg b/res/flags/1x1/mx.svg new file mode 100755 index 0000000..1ba00e3 --- /dev/null +++ b/res/flags/1x1/mx.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/my.svg b/res/flags/1x1/my.svg new file mode 100755 index 0000000..bf0783b --- /dev/null +++ b/res/flags/1x1/my.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/mz.svg b/res/flags/1x1/mz.svg new file mode 100755 index 0000000..b6cd89d --- /dev/null +++ b/res/flags/1x1/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/na.svg b/res/flags/1x1/na.svg new file mode 100755 index 0000000..2ccf17f --- /dev/null +++ b/res/flags/1x1/na.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/nc.svg b/res/flags/1x1/nc.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/nc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/ne.svg b/res/flags/1x1/ne.svg new file mode 100755 index 0000000..90179f2 --- /dev/null +++ b/res/flags/1x1/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/nf.svg b/res/flags/1x1/nf.svg new file mode 100755 index 0000000..e1473f6 --- /dev/null +++ b/res/flags/1x1/nf.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/1x1/ng.svg b/res/flags/1x1/ng.svg new file mode 100755 index 0000000..29b7329 --- /dev/null +++ b/res/flags/1x1/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/ni.svg b/res/flags/1x1/ni.svg new file mode 100755 index 0000000..27d49a2 --- /dev/null +++ b/res/flags/1x1/ni.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/nl.svg b/res/flags/1x1/nl.svg new file mode 100755 index 0000000..af31c87 --- /dev/null +++ b/res/flags/1x1/nl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/no.svg b/res/flags/1x1/no.svg new file mode 100755 index 0000000..c8851f9 --- /dev/null +++ b/res/flags/1x1/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/np.svg b/res/flags/1x1/np.svg new file mode 100755 index 0000000..41127bf --- /dev/null +++ b/res/flags/1x1/np.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/nr.svg b/res/flags/1x1/nr.svg new file mode 100755 index 0000000..969f711 --- /dev/null +++ b/res/flags/1x1/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/nu.svg b/res/flags/1x1/nu.svg new file mode 100755 index 0000000..2d9b2fd --- /dev/null +++ b/res/flags/1x1/nu.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/nz.svg b/res/flags/1x1/nz.svg new file mode 100755 index 0000000..9807f1e --- /dev/null +++ b/res/flags/1x1/nz.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/om.svg b/res/flags/1x1/om.svg new file mode 100755 index 0000000..ba4e160 --- /dev/null +++ b/res/flags/1x1/om.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/pa.svg b/res/flags/1x1/pa.svg new file mode 100755 index 0000000..2cf091a --- /dev/null +++ b/res/flags/1x1/pa.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/pe.svg b/res/flags/1x1/pe.svg new file mode 100755 index 0000000..86bf8a7 --- /dev/null +++ b/res/flags/1x1/pe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/pf.svg b/res/flags/1x1/pf.svg new file mode 100755 index 0000000..becd293 --- /dev/null +++ b/res/flags/1x1/pf.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/pg.svg b/res/flags/1x1/pg.svg new file mode 100755 index 0000000..a032732 --- /dev/null +++ b/res/flags/1x1/pg.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ph.svg b/res/flags/1x1/ph.svg new file mode 100755 index 0000000..b9d31b5 --- /dev/null +++ b/res/flags/1x1/ph.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/pk.svg b/res/flags/1x1/pk.svg new file mode 100755 index 0000000..d7722c9 --- /dev/null +++ b/res/flags/1x1/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/pl.svg b/res/flags/1x1/pl.svg new file mode 100755 index 0000000..6818a05 --- /dev/null +++ b/res/flags/1x1/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/pm.svg b/res/flags/1x1/pm.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/pm.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/pn.svg b/res/flags/1x1/pn.svg new file mode 100755 index 0000000..d27d977 --- /dev/null +++ b/res/flags/1x1/pn.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/pr.svg b/res/flags/1x1/pr.svg new file mode 100755 index 0000000..10d4055 --- /dev/null +++ b/res/flags/1x1/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/ps.svg b/res/flags/1x1/ps.svg new file mode 100755 index 0000000..c712700 --- /dev/null +++ b/res/flags/1x1/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/pt.svg b/res/flags/1x1/pt.svg new file mode 100755 index 0000000..bffbfcd --- /dev/null +++ b/res/flags/1x1/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/pw.svg b/res/flags/1x1/pw.svg new file mode 100755 index 0000000..fd8bd35 --- /dev/null +++ b/res/flags/1x1/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/1x1/py.svg b/res/flags/1x1/py.svg new file mode 100755 index 0000000..df61d0c --- /dev/null +++ b/res/flags/1x1/py.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/qa.svg b/res/flags/1x1/qa.svg new file mode 100755 index 0000000..88486de --- /dev/null +++ b/res/flags/1x1/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/flags/1x1/re.svg b/res/flags/1x1/re.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/ro.svg b/res/flags/1x1/ro.svg new file mode 100755 index 0000000..e7cc44c --- /dev/null +++ b/res/flags/1x1/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/rs.svg b/res/flags/1x1/rs.svg new file mode 100755 index 0000000..b06cfdf --- /dev/null +++ b/res/flags/1x1/rs.svg @@ -0,0 +1,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ru.svg b/res/flags/1x1/ru.svg new file mode 100755 index 0000000..78cea08 --- /dev/null +++ b/res/flags/1x1/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/rw.svg b/res/flags/1x1/rw.svg new file mode 100755 index 0000000..33ff031 --- /dev/null +++ b/res/flags/1x1/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/sa.svg b/res/flags/1x1/sa.svg new file mode 100755 index 0000000..a12ae3b --- /dev/null +++ b/res/flags/1x1/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/sb.svg b/res/flags/1x1/sb.svg new file mode 100755 index 0000000..f2b3508 --- /dev/null +++ b/res/flags/1x1/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/sc.svg b/res/flags/1x1/sc.svg new file mode 100755 index 0000000..f13b625 --- /dev/null +++ b/res/flags/1x1/sc.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/sd.svg b/res/flags/1x1/sd.svg new file mode 100755 index 0000000..9d50744 --- /dev/null +++ b/res/flags/1x1/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/se.svg b/res/flags/1x1/se.svg new file mode 100755 index 0000000..0e07503 --- /dev/null +++ b/res/flags/1x1/se.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/sg.svg b/res/flags/1x1/sg.svg new file mode 100755 index 0000000..04b19eb --- /dev/null +++ b/res/flags/1x1/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/sh.svg b/res/flags/1x1/sh.svg new file mode 100755 index 0000000..ad7c2d0 --- /dev/null +++ b/res/flags/1x1/sh.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/si.svg b/res/flags/1x1/si.svg new file mode 100755 index 0000000..fa15217 --- /dev/null +++ b/res/flags/1x1/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/sj.svg b/res/flags/1x1/sj.svg new file mode 100755 index 0000000..c8851f9 --- /dev/null +++ b/res/flags/1x1/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/sk.svg b/res/flags/1x1/sk.svg new file mode 100755 index 0000000..8b4dd8d --- /dev/null +++ b/res/flags/1x1/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/sl.svg b/res/flags/1x1/sl.svg new file mode 100755 index 0000000..42a34ea --- /dev/null +++ b/res/flags/1x1/sl.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/1x1/sm.svg b/res/flags/1x1/sm.svg new file mode 100755 index 0000000..e3afd20 --- /dev/null +++ b/res/flags/1x1/sm.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + I + + + B + + + E + + + R + + + T + + + A + + + S + + + + diff --git a/res/flags/1x1/sn.svg b/res/flags/1x1/sn.svg new file mode 100755 index 0000000..dfc5114 --- /dev/null +++ b/res/flags/1x1/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/so.svg b/res/flags/1x1/so.svg new file mode 100755 index 0000000..032dc58 --- /dev/null +++ b/res/flags/1x1/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/1x1/sr.svg b/res/flags/1x1/sr.svg new file mode 100755 index 0000000..f020a22 --- /dev/null +++ b/res/flags/1x1/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/ss.svg b/res/flags/1x1/ss.svg new file mode 100755 index 0000000..ce272c0 --- /dev/null +++ b/res/flags/1x1/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/st.svg b/res/flags/1x1/st.svg new file mode 100755 index 0000000..95ca6f6 --- /dev/null +++ b/res/flags/1x1/st.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/sv.svg b/res/flags/1x1/sv.svg new file mode 100755 index 0000000..c902f40 --- /dev/null +++ b/res/flags/1x1/sv.svg @@ -0,0 +1,621 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/sx.svg b/res/flags/1x1/sx.svg new file mode 100755 index 0000000..e0ac27e --- /dev/null +++ b/res/flags/1x1/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/sy.svg b/res/flags/1x1/sy.svg new file mode 100755 index 0000000..b8d910d --- /dev/null +++ b/res/flags/1x1/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/sz.svg b/res/flags/1x1/sz.svg new file mode 100755 index 0000000..d2529e9 --- /dev/null +++ b/res/flags/1x1/sz.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/tc.svg b/res/flags/1x1/tc.svg new file mode 100755 index 0000000..6d7332b --- /dev/null +++ b/res/flags/1x1/tc.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/td.svg b/res/flags/1x1/td.svg new file mode 100755 index 0000000..4e74705 --- /dev/null +++ b/res/flags/1x1/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/tf.svg b/res/flags/1x1/tf.svg new file mode 100755 index 0000000..e4cb677 --- /dev/null +++ b/res/flags/1x1/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/tg.svg b/res/flags/1x1/tg.svg new file mode 100755 index 0000000..ebab69a --- /dev/null +++ b/res/flags/1x1/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/th.svg b/res/flags/1x1/th.svg new file mode 100755 index 0000000..caa2c57 --- /dev/null +++ b/res/flags/1x1/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/tj.svg b/res/flags/1x1/tj.svg new file mode 100755 index 0000000..be4518d --- /dev/null +++ b/res/flags/1x1/tj.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/tk.svg b/res/flags/1x1/tk.svg new file mode 100755 index 0000000..7b0c888 --- /dev/null +++ b/res/flags/1x1/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/1x1/tl.svg b/res/flags/1x1/tl.svg new file mode 100755 index 0000000..1bdde24 --- /dev/null +++ b/res/flags/1x1/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/tm.svg b/res/flags/1x1/tm.svg new file mode 100755 index 0000000..07b03a9 --- /dev/null +++ b/res/flags/1x1/tm.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/tn.svg b/res/flags/1x1/tn.svg new file mode 100755 index 0000000..4dbf359 --- /dev/null +++ b/res/flags/1x1/tn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/1x1/to.svg b/res/flags/1x1/to.svg new file mode 100755 index 0000000..71c6631 --- /dev/null +++ b/res/flags/1x1/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/res/flags/1x1/tr.svg b/res/flags/1x1/tr.svg new file mode 100755 index 0000000..3b44b79 --- /dev/null +++ b/res/flags/1x1/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/1x1/tt.svg b/res/flags/1x1/tt.svg new file mode 100755 index 0000000..7fd199c --- /dev/null +++ b/res/flags/1x1/tt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/tv.svg b/res/flags/1x1/tv.svg new file mode 100755 index 0000000..c36ce7f --- /dev/null +++ b/res/flags/1x1/tv.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/tw.svg b/res/flags/1x1/tw.svg new file mode 100755 index 0000000..d802078 --- /dev/null +++ b/res/flags/1x1/tw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/1x1/tz.svg b/res/flags/1x1/tz.svg new file mode 100755 index 0000000..58e9e1a --- /dev/null +++ b/res/flags/1x1/tz.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/ua.svg b/res/flags/1x1/ua.svg new file mode 100755 index 0000000..90d8551 --- /dev/null +++ b/res/flags/1x1/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/1x1/ug.svg b/res/flags/1x1/ug.svg new file mode 100755 index 0000000..477edd2 --- /dev/null +++ b/res/flags/1x1/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/um.svg b/res/flags/1x1/um.svg new file mode 100755 index 0000000..037114a --- /dev/null +++ b/res/flags/1x1/um.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/un.svg b/res/flags/1x1/un.svg new file mode 100755 index 0000000..f259213 --- /dev/null +++ b/res/flags/1x1/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/us.svg b/res/flags/1x1/us.svg new file mode 100755 index 0000000..15d50af --- /dev/null +++ b/res/flags/1x1/us.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/uy.svg b/res/flags/1x1/uy.svg new file mode 100755 index 0000000..13eba52 --- /dev/null +++ b/res/flags/1x1/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/uz.svg b/res/flags/1x1/uz.svg new file mode 100755 index 0000000..80a0aa5 --- /dev/null +++ b/res/flags/1x1/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/va.svg b/res/flags/1x1/va.svg new file mode 100755 index 0000000..16fa3fa --- /dev/null +++ b/res/flags/1x1/va.svg @@ -0,0 +1,483 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/vc.svg b/res/flags/1x1/vc.svg new file mode 100755 index 0000000..7dd8df0 --- /dev/null +++ b/res/flags/1x1/vc.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/res/flags/1x1/ve.svg b/res/flags/1x1/ve.svg new file mode 100755 index 0000000..96a8853 --- /dev/null +++ b/res/flags/1x1/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/vg.svg b/res/flags/1x1/vg.svg new file mode 100755 index 0000000..db5fd17 --- /dev/null +++ b/res/flags/1x1/vg.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/vi.svg b/res/flags/1x1/vi.svg new file mode 100755 index 0000000..b99c568 --- /dev/null +++ b/res/flags/1x1/vi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/vn.svg b/res/flags/1x1/vn.svg new file mode 100755 index 0000000..1653281 --- /dev/null +++ b/res/flags/1x1/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/1x1/vu.svg b/res/flags/1x1/vu.svg new file mode 100755 index 0000000..11307f6 --- /dev/null +++ b/res/flags/1x1/vu.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/wf.svg b/res/flags/1x1/wf.svg new file mode 100755 index 0000000..f1725d8 --- /dev/null +++ b/res/flags/1x1/wf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/ws.svg b/res/flags/1x1/ws.svg new file mode 100755 index 0000000..1cc33ab --- /dev/null +++ b/res/flags/1x1/ws.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/1x1/ye.svg b/res/flags/1x1/ye.svg new file mode 100755 index 0000000..cdc7769 --- /dev/null +++ b/res/flags/1x1/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/yt.svg b/res/flags/1x1/yt.svg new file mode 100755 index 0000000..2385562 --- /dev/null +++ b/res/flags/1x1/yt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/1x1/za.svg b/res/flags/1x1/za.svg new file mode 100755 index 0000000..83c3792 --- /dev/null +++ b/res/flags/1x1/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/zm.svg b/res/flags/1x1/zm.svg new file mode 100755 index 0000000..f1f63da --- /dev/null +++ b/res/flags/1x1/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/1x1/zw.svg b/res/flags/1x1/zw.svg new file mode 100755 index 0000000..00eaf58 --- /dev/null +++ b/res/flags/1x1/zw.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ad.svg b/res/flags/4x3/ad.svg new file mode 100755 index 0000000..07ae7e0 --- /dev/null +++ b/res/flags/4x3/ad.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ae.svg b/res/flags/4x3/ae.svg new file mode 100755 index 0000000..ef64730 --- /dev/null +++ b/res/flags/4x3/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/af.svg b/res/flags/4x3/af.svg new file mode 100755 index 0000000..f3bae93 --- /dev/null +++ b/res/flags/4x3/af.svg @@ -0,0 +1,428 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ag.svg b/res/flags/4x3/ag.svg new file mode 100755 index 0000000..f6a9ad4 --- /dev/null +++ b/res/flags/4x3/ag.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ai.svg b/res/flags/4x3/ai.svg new file mode 100755 index 0000000..8cbe796 --- /dev/null +++ b/res/flags/4x3/ai.svg @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/al.svg b/res/flags/4x3/al.svg new file mode 100755 index 0000000..8846696 --- /dev/null +++ b/res/flags/4x3/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/am.svg b/res/flags/4x3/am.svg new file mode 100755 index 0000000..046d22f --- /dev/null +++ b/res/flags/4x3/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/ao.svg b/res/flags/4x3/ao.svg new file mode 100755 index 0000000..32b49ea --- /dev/null +++ b/res/flags/4x3/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/aq.svg b/res/flags/4x3/aq.svg new file mode 100755 index 0000000..656c8b7 --- /dev/null +++ b/res/flags/4x3/aq.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/ar.svg b/res/flags/4x3/ar.svg new file mode 100755 index 0000000..2c5b6ed --- /dev/null +++ b/res/flags/4x3/ar.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/as.svg b/res/flags/4x3/as.svg new file mode 100755 index 0000000..3bdc5bc --- /dev/null +++ b/res/flags/4x3/as.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/at.svg b/res/flags/4x3/at.svg new file mode 100755 index 0000000..0e45da9 --- /dev/null +++ b/res/flags/4x3/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/au.svg b/res/flags/4x3/au.svg new file mode 100755 index 0000000..cd823e1 --- /dev/null +++ b/res/flags/4x3/au.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/aw.svg b/res/flags/4x3/aw.svg new file mode 100755 index 0000000..7e7087d --- /dev/null +++ b/res/flags/4x3/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ax.svg b/res/flags/4x3/ax.svg new file mode 100755 index 0000000..fa9417e --- /dev/null +++ b/res/flags/4x3/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/az.svg b/res/flags/4x3/az.svg new file mode 100755 index 0000000..f563b60 --- /dev/null +++ b/res/flags/4x3/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/ba.svg b/res/flags/4x3/ba.svg new file mode 100755 index 0000000..32ad8ea --- /dev/null +++ b/res/flags/4x3/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/bb.svg b/res/flags/4x3/bb.svg new file mode 100755 index 0000000..da8972e --- /dev/null +++ b/res/flags/4x3/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/bd.svg b/res/flags/4x3/bd.svg new file mode 100755 index 0000000..df9a6d8 --- /dev/null +++ b/res/flags/4x3/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/flags/4x3/be.svg b/res/flags/4x3/be.svg new file mode 100755 index 0000000..4fd48df --- /dev/null +++ b/res/flags/4x3/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/bf.svg b/res/flags/4x3/bf.svg new file mode 100755 index 0000000..46061b9 --- /dev/null +++ b/res/flags/4x3/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/bg.svg b/res/flags/4x3/bg.svg new file mode 100755 index 0000000..bad27bb --- /dev/null +++ b/res/flags/4x3/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/bh.svg b/res/flags/4x3/bh.svg new file mode 100755 index 0000000..42dda2c --- /dev/null +++ b/res/flags/4x3/bh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/4x3/bi.svg b/res/flags/4x3/bi.svg new file mode 100755 index 0000000..dc0e0e7 --- /dev/null +++ b/res/flags/4x3/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/bj.svg b/res/flags/4x3/bj.svg new file mode 100755 index 0000000..a626289 --- /dev/null +++ b/res/flags/4x3/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/bl.svg b/res/flags/4x3/bl.svg new file mode 100755 index 0000000..db651fc --- /dev/null +++ b/res/flags/4x3/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/bm.svg b/res/flags/4x3/bm.svg new file mode 100755 index 0000000..b7c79f2 --- /dev/null +++ b/res/flags/4x3/bm.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/bn.svg b/res/flags/4x3/bn.svg new file mode 100755 index 0000000..109576c --- /dev/null +++ b/res/flags/4x3/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/bo.svg b/res/flags/4x3/bo.svg new file mode 100755 index 0000000..c443ec5 --- /dev/null +++ b/res/flags/4x3/bo.svg @@ -0,0 +1,686 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/bq.svg b/res/flags/4x3/bq.svg new file mode 100755 index 0000000..0a7b5f8 --- /dev/null +++ b/res/flags/4x3/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/br.svg b/res/flags/4x3/br.svg new file mode 100755 index 0000000..c0445ba --- /dev/null +++ b/res/flags/4x3/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/bs.svg b/res/flags/4x3/bs.svg new file mode 100755 index 0000000..321eb19 --- /dev/null +++ b/res/flags/4x3/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/bt.svg b/res/flags/4x3/bt.svg new file mode 100755 index 0000000..05df9c8 --- /dev/null +++ b/res/flags/4x3/bt.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/bv.svg b/res/flags/4x3/bv.svg new file mode 100755 index 0000000..a62e60d --- /dev/null +++ b/res/flags/4x3/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/bw.svg b/res/flags/4x3/bw.svg new file mode 100755 index 0000000..ed161bf --- /dev/null +++ b/res/flags/4x3/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/by.svg b/res/flags/4x3/by.svg new file mode 100755 index 0000000..bfb0f64 --- /dev/null +++ b/res/flags/4x3/by.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/bz.svg b/res/flags/4x3/bz.svg new file mode 100755 index 0000000..440fd9d --- /dev/null +++ b/res/flags/4x3/bz.svg @@ -0,0 +1,166 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ca.svg b/res/flags/4x3/ca.svg new file mode 100755 index 0000000..fb542b0 --- /dev/null +++ b/res/flags/4x3/ca.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/cc.svg b/res/flags/4x3/cc.svg new file mode 100755 index 0000000..0e44596 --- /dev/null +++ b/res/flags/4x3/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/cd.svg b/res/flags/4x3/cd.svg new file mode 100755 index 0000000..d8931c2 --- /dev/null +++ b/res/flags/4x3/cd.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/cf.svg b/res/flags/4x3/cf.svg new file mode 100755 index 0000000..8a67616 --- /dev/null +++ b/res/flags/4x3/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/cg.svg b/res/flags/4x3/cg.svg new file mode 100755 index 0000000..f37bff8 --- /dev/null +++ b/res/flags/4x3/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/ch.svg b/res/flags/4x3/ch.svg new file mode 100755 index 0000000..6157702 --- /dev/null +++ b/res/flags/4x3/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/ci.svg b/res/flags/4x3/ci.svg new file mode 100755 index 0000000..6b4f66e --- /dev/null +++ b/res/flags/4x3/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/ck.svg b/res/flags/4x3/ck.svg new file mode 100755 index 0000000..f3ce1af --- /dev/null +++ b/res/flags/4x3/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/cl.svg b/res/flags/4x3/cl.svg new file mode 100755 index 0000000..63ee47c --- /dev/null +++ b/res/flags/4x3/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/cm.svg b/res/flags/4x3/cm.svg new file mode 100755 index 0000000..1bef2f8 --- /dev/null +++ b/res/flags/4x3/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/cn.svg b/res/flags/4x3/cn.svg new file mode 100755 index 0000000..4381476 --- /dev/null +++ b/res/flags/4x3/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/4x3/co.svg b/res/flags/4x3/co.svg new file mode 100755 index 0000000..671f0a3 --- /dev/null +++ b/res/flags/4x3/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/cr.svg b/res/flags/4x3/cr.svg new file mode 100755 index 0000000..ca6d24f --- /dev/null +++ b/res/flags/4x3/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/cu.svg b/res/flags/4x3/cu.svg new file mode 100755 index 0000000..0e7c323 --- /dev/null +++ b/res/flags/4x3/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/cv.svg b/res/flags/4x3/cv.svg new file mode 100755 index 0000000..bf9427b --- /dev/null +++ b/res/flags/4x3/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/cw.svg b/res/flags/4x3/cw.svg new file mode 100755 index 0000000..dce07cf --- /dev/null +++ b/res/flags/4x3/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/cx.svg b/res/flags/4x3/cx.svg new file mode 100755 index 0000000..53f0ee8 --- /dev/null +++ b/res/flags/4x3/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/cy.svg b/res/flags/4x3/cy.svg new file mode 100755 index 0000000..aa46cda --- /dev/null +++ b/res/flags/4x3/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/cz.svg b/res/flags/4x3/cz.svg new file mode 100755 index 0000000..236c4ba --- /dev/null +++ b/res/flags/4x3/cz.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/de.svg b/res/flags/4x3/de.svg new file mode 100755 index 0000000..344d6c9 --- /dev/null +++ b/res/flags/4x3/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/dj.svg b/res/flags/4x3/dj.svg new file mode 100755 index 0000000..eb23800 --- /dev/null +++ b/res/flags/4x3/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/dk.svg b/res/flags/4x3/dk.svg new file mode 100755 index 0000000..b29f331 --- /dev/null +++ b/res/flags/4x3/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/dm.svg b/res/flags/4x3/dm.svg new file mode 100755 index 0000000..b060f6f --- /dev/null +++ b/res/flags/4x3/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/do.svg b/res/flags/4x3/do.svg new file mode 100755 index 0000000..2923855 --- /dev/null +++ b/res/flags/4x3/do.svg @@ -0,0 +1,6745 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/dz.svg b/res/flags/4x3/dz.svg new file mode 100755 index 0000000..9971ec6 --- /dev/null +++ b/res/flags/4x3/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/ec.svg b/res/flags/4x3/ec.svg new file mode 100755 index 0000000..01ef340 --- /dev/null +++ b/res/flags/4x3/ec.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ee.svg b/res/flags/4x3/ee.svg new file mode 100755 index 0000000..e4eead4 --- /dev/null +++ b/res/flags/4x3/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/eg.svg b/res/flags/4x3/eg.svg new file mode 100755 index 0000000..d4bed74 --- /dev/null +++ b/res/flags/4x3/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/eh.svg b/res/flags/4x3/eh.svg new file mode 100755 index 0000000..efdd83b --- /dev/null +++ b/res/flags/4x3/eh.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/er.svg b/res/flags/4x3/er.svg new file mode 100755 index 0000000..4a2b17c --- /dev/null +++ b/res/flags/4x3/er.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/es.svg b/res/flags/4x3/es.svg new file mode 100755 index 0000000..3a9dcd2 --- /dev/null +++ b/res/flags/4x3/es.svg @@ -0,0 +1,581 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/et.svg b/res/flags/4x3/et.svg new file mode 100755 index 0000000..09e5d3d --- /dev/null +++ b/res/flags/4x3/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/eu.svg b/res/flags/4x3/eu.svg new file mode 100755 index 0000000..4cf8a66 --- /dev/null +++ b/res/flags/4x3/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/fi.svg b/res/flags/4x3/fi.svg new file mode 100755 index 0000000..a7b58e2 --- /dev/null +++ b/res/flags/4x3/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/fj.svg b/res/flags/4x3/fj.svg new file mode 100755 index 0000000..9f5e2a5 --- /dev/null +++ b/res/flags/4x3/fj.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/fk.svg b/res/flags/4x3/fk.svg new file mode 100755 index 0000000..7864f54 --- /dev/null +++ b/res/flags/4x3/fk.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/fm.svg b/res/flags/4x3/fm.svg new file mode 100755 index 0000000..e9d1f66 --- /dev/null +++ b/res/flags/4x3/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/4x3/fo.svg b/res/flags/4x3/fo.svg new file mode 100755 index 0000000..d22c0cb --- /dev/null +++ b/res/flags/4x3/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/fr.svg b/res/flags/4x3/fr.svg new file mode 100755 index 0000000..b17c8ad --- /dev/null +++ b/res/flags/4x3/fr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/ga.svg b/res/flags/4x3/ga.svg new file mode 100755 index 0000000..1c7fdd3 --- /dev/null +++ b/res/flags/4x3/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/gb-eng.svg b/res/flags/4x3/gb-eng.svg new file mode 100755 index 0000000..7fa48fa --- /dev/null +++ b/res/flags/4x3/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/gb-nir.svg b/res/flags/4x3/gb-nir.svg new file mode 100755 index 0000000..8c26551 --- /dev/null +++ b/res/flags/4x3/gb-nir.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/gb-sct.svg b/res/flags/4x3/gb-sct.svg new file mode 100755 index 0000000..5e47f07 --- /dev/null +++ b/res/flags/4x3/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/flags/4x3/gb-wls.svg b/res/flags/4x3/gb-wls.svg new file mode 100755 index 0000000..59b4181 --- /dev/null +++ b/res/flags/4x3/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/gb.svg b/res/flags/4x3/gb.svg new file mode 100755 index 0000000..7296592 --- /dev/null +++ b/res/flags/4x3/gb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/gd.svg b/res/flags/4x3/gd.svg new file mode 100755 index 0000000..5b0cde1 --- /dev/null +++ b/res/flags/4x3/gd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/ge.svg b/res/flags/4x3/ge.svg new file mode 100755 index 0000000..0a9129c --- /dev/null +++ b/res/flags/4x3/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/gf.svg b/res/flags/4x3/gf.svg new file mode 100755 index 0000000..25d0159 --- /dev/null +++ b/res/flags/4x3/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/gg.svg b/res/flags/4x3/gg.svg new file mode 100755 index 0000000..4869ed6 --- /dev/null +++ b/res/flags/4x3/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/gh.svg b/res/flags/4x3/gh.svg new file mode 100755 index 0000000..56c18f6 --- /dev/null +++ b/res/flags/4x3/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/gi.svg b/res/flags/4x3/gi.svg new file mode 100755 index 0000000..0715e01 --- /dev/null +++ b/res/flags/4x3/gi.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/gl.svg b/res/flags/4x3/gl.svg new file mode 100755 index 0000000..38e9b5c --- /dev/null +++ b/res/flags/4x3/gl.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/gm.svg b/res/flags/4x3/gm.svg new file mode 100755 index 0000000..9d2ce5c --- /dev/null +++ b/res/flags/4x3/gm.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/gn.svg b/res/flags/4x3/gn.svg new file mode 100755 index 0000000..4a3adab --- /dev/null +++ b/res/flags/4x3/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/gp.svg b/res/flags/4x3/gp.svg new file mode 100755 index 0000000..b17c8ad --- /dev/null +++ b/res/flags/4x3/gp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/gq.svg b/res/flags/4x3/gq.svg new file mode 100755 index 0000000..9e3c900 --- /dev/null +++ b/res/flags/4x3/gq.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/gr.svg b/res/flags/4x3/gr.svg new file mode 100755 index 0000000..5126e38 --- /dev/null +++ b/res/flags/4x3/gr.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/gs.svg b/res/flags/4x3/gs.svg new file mode 100755 index 0000000..43b8fd6 --- /dev/null +++ b/res/flags/4x3/gs.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + E + + + O + + + T + + + E + + + R + + + R + + + R + + + R + + + R + + + E + + + O + + + O + + + A + + + A + + + A + + + M + + + P + + + P + + + P + + + I + + + T + + + T + + + M + + + G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/gt.svg b/res/flags/4x3/gt.svg new file mode 100755 index 0000000..0fdaa11 --- /dev/null +++ b/res/flags/4x3/gt.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/gu.svg b/res/flags/4x3/gu.svg new file mode 100755 index 0000000..b4885bd --- /dev/null +++ b/res/flags/4x3/gu.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + G + + + U + + + A + + + M + + + + + + + + G + + + U + + + A + + + M + + diff --git a/res/flags/4x3/gw.svg b/res/flags/4x3/gw.svg new file mode 100755 index 0000000..ee5b2aa --- /dev/null +++ b/res/flags/4x3/gw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/gy.svg b/res/flags/4x3/gy.svg new file mode 100755 index 0000000..218ecce --- /dev/null +++ b/res/flags/4x3/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/hk.svg b/res/flags/4x3/hk.svg new file mode 100755 index 0000000..df8aefd --- /dev/null +++ b/res/flags/4x3/hk.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/hm.svg b/res/flags/4x3/hm.svg new file mode 100755 index 0000000..67cec54 --- /dev/null +++ b/res/flags/4x3/hm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/hn.svg b/res/flags/4x3/hn.svg new file mode 100755 index 0000000..6e9bb25 --- /dev/null +++ b/res/flags/4x3/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/hr.svg b/res/flags/4x3/hr.svg new file mode 100755 index 0000000..bf33cbe --- /dev/null +++ b/res/flags/4x3/hr.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ht.svg b/res/flags/4x3/ht.svg new file mode 100755 index 0000000..4cee314 --- /dev/null +++ b/res/flags/4x3/ht.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/hu.svg b/res/flags/4x3/hu.svg new file mode 100755 index 0000000..cb7e5ee --- /dev/null +++ b/res/flags/4x3/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/id.svg b/res/flags/4x3/id.svg new file mode 100755 index 0000000..4df97ba --- /dev/null +++ b/res/flags/4x3/id.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/ie.svg b/res/flags/4x3/ie.svg new file mode 100755 index 0000000..b295b50 --- /dev/null +++ b/res/flags/4x3/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/il.svg b/res/flags/4x3/il.svg new file mode 100755 index 0000000..b22f792 --- /dev/null +++ b/res/flags/4x3/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/im.svg b/res/flags/4x3/im.svg new file mode 100755 index 0000000..5864dc0 --- /dev/null +++ b/res/flags/4x3/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/in.svg b/res/flags/4x3/in.svg new file mode 100755 index 0000000..7eeb5c3 --- /dev/null +++ b/res/flags/4x3/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/io.svg b/res/flags/4x3/io.svg new file mode 100755 index 0000000..d5c6db5 --- /dev/null +++ b/res/flags/4x3/io.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/iq.svg b/res/flags/4x3/iq.svg new file mode 100755 index 0000000..c1fb196 --- /dev/null +++ b/res/flags/4x3/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/res/flags/4x3/ir.svg b/res/flags/4x3/ir.svg new file mode 100755 index 0000000..9a6feaf --- /dev/null +++ b/res/flags/4x3/ir.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/is.svg b/res/flags/4x3/is.svg new file mode 100755 index 0000000..f5c5c9a --- /dev/null +++ b/res/flags/4x3/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/it.svg b/res/flags/4x3/it.svg new file mode 100755 index 0000000..05d58ec --- /dev/null +++ b/res/flags/4x3/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/je.svg b/res/flags/4x3/je.svg new file mode 100755 index 0000000..c5c1877 --- /dev/null +++ b/res/flags/4x3/je.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/jm.svg b/res/flags/4x3/jm.svg new file mode 100755 index 0000000..bda8cd3 --- /dev/null +++ b/res/flags/4x3/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/jo.svg b/res/flags/4x3/jo.svg new file mode 100755 index 0000000..a321347 --- /dev/null +++ b/res/flags/4x3/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/jp.svg b/res/flags/4x3/jp.svg new file mode 100755 index 0000000..ed5fd40 --- /dev/null +++ b/res/flags/4x3/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/4x3/ke.svg b/res/flags/4x3/ke.svg new file mode 100755 index 0000000..fe8fd0c --- /dev/null +++ b/res/flags/4x3/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/kg.svg b/res/flags/4x3/kg.svg new file mode 100755 index 0000000..fba85f5 --- /dev/null +++ b/res/flags/4x3/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/kh.svg b/res/flags/4x3/kh.svg new file mode 100755 index 0000000..e48f41e --- /dev/null +++ b/res/flags/4x3/kh.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ki.svg b/res/flags/4x3/ki.svg new file mode 100755 index 0000000..11b0d40 --- /dev/null +++ b/res/flags/4x3/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/km.svg b/res/flags/4x3/km.svg new file mode 100755 index 0000000..b3dfb68 --- /dev/null +++ b/res/flags/4x3/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/kn.svg b/res/flags/4x3/kn.svg new file mode 100755 index 0000000..d078161 --- /dev/null +++ b/res/flags/4x3/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/kp.svg b/res/flags/4x3/kp.svg new file mode 100755 index 0000000..f986141 --- /dev/null +++ b/res/flags/4x3/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/kr.svg b/res/flags/4x3/kr.svg new file mode 100755 index 0000000..ee84b6e --- /dev/null +++ b/res/flags/4x3/kr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/kw.svg b/res/flags/4x3/kw.svg new file mode 100755 index 0000000..3217d78 --- /dev/null +++ b/res/flags/4x3/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/ky.svg b/res/flags/4x3/ky.svg new file mode 100755 index 0000000..ac1d318 --- /dev/null +++ b/res/flags/4x3/ky.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/kz.svg b/res/flags/4x3/kz.svg new file mode 100755 index 0000000..7949bce --- /dev/null +++ b/res/flags/4x3/kz.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/la.svg b/res/flags/4x3/la.svg new file mode 100755 index 0000000..72ba65f --- /dev/null +++ b/res/flags/4x3/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/lb.svg b/res/flags/4x3/lb.svg new file mode 100755 index 0000000..a6b1794 --- /dev/null +++ b/res/flags/4x3/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/lc.svg b/res/flags/4x3/lc.svg new file mode 100755 index 0000000..aacce3e --- /dev/null +++ b/res/flags/4x3/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/li.svg b/res/flags/4x3/li.svg new file mode 100755 index 0000000..57ef479 --- /dev/null +++ b/res/flags/4x3/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/lk.svg b/res/flags/4x3/lk.svg new file mode 100755 index 0000000..13b5592 --- /dev/null +++ b/res/flags/4x3/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/lr.svg b/res/flags/4x3/lr.svg new file mode 100755 index 0000000..56fdc62 --- /dev/null +++ b/res/flags/4x3/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ls.svg b/res/flags/4x3/ls.svg new file mode 100755 index 0000000..e7bf1c2 --- /dev/null +++ b/res/flags/4x3/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/lt.svg b/res/flags/4x3/lt.svg new file mode 100755 index 0000000..1ca1cd4 --- /dev/null +++ b/res/flags/4x3/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/lu.svg b/res/flags/4x3/lu.svg new file mode 100755 index 0000000..d7f4a7c --- /dev/null +++ b/res/flags/4x3/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/lv.svg b/res/flags/4x3/lv.svg new file mode 100755 index 0000000..338addd --- /dev/null +++ b/res/flags/4x3/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/ly.svg b/res/flags/4x3/ly.svg new file mode 100755 index 0000000..96ab5ad --- /dev/null +++ b/res/flags/4x3/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/ma.svg b/res/flags/4x3/ma.svg new file mode 100755 index 0000000..10447a4 --- /dev/null +++ b/res/flags/4x3/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/flags/4x3/mc.svg b/res/flags/4x3/mc.svg new file mode 100755 index 0000000..8a4e827 --- /dev/null +++ b/res/flags/4x3/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/md.svg b/res/flags/4x3/md.svg new file mode 100755 index 0000000..8d51756 --- /dev/null +++ b/res/flags/4x3/md.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/me.svg b/res/flags/4x3/me.svg new file mode 100755 index 0000000..ed97b12 --- /dev/null +++ b/res/flags/4x3/me.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/mf.svg b/res/flags/4x3/mf.svg new file mode 100755 index 0000000..b17c8ad --- /dev/null +++ b/res/flags/4x3/mf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/mg.svg b/res/flags/4x3/mg.svg new file mode 100755 index 0000000..cce2bf1 --- /dev/null +++ b/res/flags/4x3/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/mh.svg b/res/flags/4x3/mh.svg new file mode 100755 index 0000000..ed16809 --- /dev/null +++ b/res/flags/4x3/mh.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/mk.svg b/res/flags/4x3/mk.svg new file mode 100755 index 0000000..1bbecc7 --- /dev/null +++ b/res/flags/4x3/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/ml.svg b/res/flags/4x3/ml.svg new file mode 100755 index 0000000..cb24844 --- /dev/null +++ b/res/flags/4x3/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/mm.svg b/res/flags/4x3/mm.svg new file mode 100755 index 0000000..ce897c9 --- /dev/null +++ b/res/flags/4x3/mm.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/mn.svg b/res/flags/4x3/mn.svg new file mode 100755 index 0000000..766d2b1 --- /dev/null +++ b/res/flags/4x3/mn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/mo.svg b/res/flags/4x3/mo.svg new file mode 100755 index 0000000..074c2e9 --- /dev/null +++ b/res/flags/4x3/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/mp.svg b/res/flags/4x3/mp.svg new file mode 100755 index 0000000..0dd4c3e --- /dev/null +++ b/res/flags/4x3/mp.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/mq.svg b/res/flags/4x3/mq.svg new file mode 100755 index 0000000..bde2166 --- /dev/null +++ b/res/flags/4x3/mq.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/mr.svg b/res/flags/4x3/mr.svg new file mode 100755 index 0000000..372e864 --- /dev/null +++ b/res/flags/4x3/mr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/ms.svg b/res/flags/4x3/ms.svg new file mode 100755 index 0000000..2af2479 --- /dev/null +++ b/res/flags/4x3/ms.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/mt.svg b/res/flags/4x3/mt.svg new file mode 100755 index 0000000..74554ce --- /dev/null +++ b/res/flags/4x3/mt.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/mu.svg b/res/flags/4x3/mu.svg new file mode 100755 index 0000000..8178810 --- /dev/null +++ b/res/flags/4x3/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/mv.svg b/res/flags/4x3/mv.svg new file mode 100755 index 0000000..7ca4f38 --- /dev/null +++ b/res/flags/4x3/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/mw.svg b/res/flags/4x3/mw.svg new file mode 100755 index 0000000..f4475eb --- /dev/null +++ b/res/flags/4x3/mw.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/mx.svg b/res/flags/4x3/mx.svg new file mode 100755 index 0000000..30b8f6d --- /dev/null +++ b/res/flags/4x3/mx.svg @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/my.svg b/res/flags/4x3/my.svg new file mode 100755 index 0000000..9acda36 --- /dev/null +++ b/res/flags/4x3/my.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/mz.svg b/res/flags/4x3/mz.svg new file mode 100755 index 0000000..e5458d9 --- /dev/null +++ b/res/flags/4x3/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/na.svg b/res/flags/4x3/na.svg new file mode 100755 index 0000000..215e648 --- /dev/null +++ b/res/flags/4x3/na.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/nc.svg b/res/flags/4x3/nc.svg new file mode 100755 index 0000000..c9abb97 --- /dev/null +++ b/res/flags/4x3/nc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/ne.svg b/res/flags/4x3/ne.svg new file mode 100755 index 0000000..5698fde --- /dev/null +++ b/res/flags/4x3/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/nf.svg b/res/flags/4x3/nf.svg new file mode 100755 index 0000000..30fca25 --- /dev/null +++ b/res/flags/4x3/nf.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/ng.svg b/res/flags/4x3/ng.svg new file mode 100755 index 0000000..3c4fa97 --- /dev/null +++ b/res/flags/4x3/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/ni.svg b/res/flags/4x3/ni.svg new file mode 100755 index 0000000..74d2be8 --- /dev/null +++ b/res/flags/4x3/ni.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/nl.svg b/res/flags/4x3/nl.svg new file mode 100755 index 0000000..c931256 --- /dev/null +++ b/res/flags/4x3/nl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/no.svg b/res/flags/4x3/no.svg new file mode 100755 index 0000000..6f710de --- /dev/null +++ b/res/flags/4x3/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/np.svg b/res/flags/4x3/np.svg new file mode 100755 index 0000000..c0e3de6 --- /dev/null +++ b/res/flags/4x3/np.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/nr.svg b/res/flags/4x3/nr.svg new file mode 100755 index 0000000..c473707 --- /dev/null +++ b/res/flags/4x3/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/res/flags/4x3/nu.svg b/res/flags/4x3/nu.svg new file mode 100755 index 0000000..99859af --- /dev/null +++ b/res/flags/4x3/nu.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/nz.svg b/res/flags/4x3/nz.svg new file mode 100755 index 0000000..35b570c --- /dev/null +++ b/res/flags/4x3/nz.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/om.svg b/res/flags/4x3/om.svg new file mode 100755 index 0000000..707e5fc --- /dev/null +++ b/res/flags/4x3/om.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/pa.svg b/res/flags/4x3/pa.svg new file mode 100755 index 0000000..03e4605 --- /dev/null +++ b/res/flags/4x3/pa.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/pe.svg b/res/flags/4x3/pe.svg new file mode 100755 index 0000000..5daade4 --- /dev/null +++ b/res/flags/4x3/pe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/pf.svg b/res/flags/4x3/pf.svg new file mode 100755 index 0000000..efc4cbe --- /dev/null +++ b/res/flags/4x3/pf.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/pg.svg b/res/flags/4x3/pg.svg new file mode 100755 index 0000000..f24f6bd --- /dev/null +++ b/res/flags/4x3/pg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/ph.svg b/res/flags/4x3/ph.svg new file mode 100755 index 0000000..e8858d6 --- /dev/null +++ b/res/flags/4x3/ph.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/pk.svg b/res/flags/4x3/pk.svg new file mode 100755 index 0000000..96539e8 --- /dev/null +++ b/res/flags/4x3/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/pl.svg b/res/flags/4x3/pl.svg new file mode 100755 index 0000000..84a5950 --- /dev/null +++ b/res/flags/4x3/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/pm.svg b/res/flags/4x3/pm.svg new file mode 100755 index 0000000..c9abb97 --- /dev/null +++ b/res/flags/4x3/pm.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/pn.svg b/res/flags/4x3/pn.svg new file mode 100755 index 0000000..3b80360 --- /dev/null +++ b/res/flags/4x3/pn.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/pr.svg b/res/flags/4x3/pr.svg new file mode 100755 index 0000000..1e0205d --- /dev/null +++ b/res/flags/4x3/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/ps.svg b/res/flags/4x3/ps.svg new file mode 100755 index 0000000..6076ef0 --- /dev/null +++ b/res/flags/4x3/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/pt.svg b/res/flags/4x3/pt.svg new file mode 100755 index 0000000..3a2f131 --- /dev/null +++ b/res/flags/4x3/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/pw.svg b/res/flags/4x3/pw.svg new file mode 100755 index 0000000..4385756 --- /dev/null +++ b/res/flags/4x3/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/4x3/py.svg b/res/flags/4x3/py.svg new file mode 100755 index 0000000..d3ef7fa --- /dev/null +++ b/res/flags/4x3/py.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/qa.svg b/res/flags/4x3/qa.svg new file mode 100755 index 0000000..c7aab30 --- /dev/null +++ b/res/flags/4x3/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/res/flags/4x3/re.svg b/res/flags/4x3/re.svg new file mode 100755 index 0000000..c9abb97 --- /dev/null +++ b/res/flags/4x3/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/ro.svg b/res/flags/4x3/ro.svg new file mode 100755 index 0000000..c913ff3 --- /dev/null +++ b/res/flags/4x3/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/rs.svg b/res/flags/4x3/rs.svg new file mode 100755 index 0000000..1e6db5e --- /dev/null +++ b/res/flags/4x3/rs.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/ru.svg b/res/flags/4x3/ru.svg new file mode 100755 index 0000000..f7bb982 --- /dev/null +++ b/res/flags/4x3/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/rw.svg b/res/flags/4x3/rw.svg new file mode 100755 index 0000000..872873d --- /dev/null +++ b/res/flags/4x3/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/sa.svg b/res/flags/4x3/sa.svg new file mode 100755 index 0000000..28518e8 --- /dev/null +++ b/res/flags/4x3/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/sb.svg b/res/flags/4x3/sb.svg new file mode 100755 index 0000000..27a9ed0 --- /dev/null +++ b/res/flags/4x3/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/sc.svg b/res/flags/4x3/sc.svg new file mode 100755 index 0000000..43b4cdd --- /dev/null +++ b/res/flags/4x3/sc.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/sd.svg b/res/flags/4x3/sd.svg new file mode 100755 index 0000000..bd2a4b4 --- /dev/null +++ b/res/flags/4x3/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/se.svg b/res/flags/4x3/se.svg new file mode 100755 index 0000000..c8ed16e --- /dev/null +++ b/res/flags/4x3/se.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/sg.svg b/res/flags/4x3/sg.svg new file mode 100755 index 0000000..f2284a7 --- /dev/null +++ b/res/flags/4x3/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/sh.svg b/res/flags/4x3/sh.svg new file mode 100755 index 0000000..737a4a3 --- /dev/null +++ b/res/flags/4x3/sh.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/si.svg b/res/flags/4x3/si.svg new file mode 100755 index 0000000..9845d01 --- /dev/null +++ b/res/flags/4x3/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/sj.svg b/res/flags/4x3/sj.svg new file mode 100755 index 0000000..6f710de --- /dev/null +++ b/res/flags/4x3/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/sk.svg b/res/flags/4x3/sk.svg new file mode 100755 index 0000000..5d291f7 --- /dev/null +++ b/res/flags/4x3/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/sl.svg b/res/flags/4x3/sl.svg new file mode 100755 index 0000000..4050254 --- /dev/null +++ b/res/flags/4x3/sl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/sm.svg b/res/flags/4x3/sm.svg new file mode 100755 index 0000000..6ba0116 --- /dev/null +++ b/res/flags/4x3/sm.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + I + + + B + + + E + + + R + + + T + + + A + + + S + + + + diff --git a/res/flags/4x3/sn.svg b/res/flags/4x3/sn.svg new file mode 100755 index 0000000..52b2d36 --- /dev/null +++ b/res/flags/4x3/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/so.svg b/res/flags/4x3/so.svg new file mode 100755 index 0000000..89e2c08 --- /dev/null +++ b/res/flags/4x3/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/4x3/sr.svg b/res/flags/4x3/sr.svg new file mode 100755 index 0000000..a3ebc23 --- /dev/null +++ b/res/flags/4x3/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/ss.svg b/res/flags/4x3/ss.svg new file mode 100755 index 0000000..fd2875f --- /dev/null +++ b/res/flags/4x3/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/st.svg b/res/flags/4x3/st.svg new file mode 100755 index 0000000..d4b3601 --- /dev/null +++ b/res/flags/4x3/st.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/sv.svg b/res/flags/4x3/sv.svg new file mode 100755 index 0000000..564d2e2 --- /dev/null +++ b/res/flags/4x3/sv.svg @@ -0,0 +1,621 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/sx.svg b/res/flags/4x3/sx.svg new file mode 100755 index 0000000..00736d8 --- /dev/null +++ b/res/flags/4x3/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/sy.svg b/res/flags/4x3/sy.svg new file mode 100755 index 0000000..9003803 --- /dev/null +++ b/res/flags/4x3/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/sz.svg b/res/flags/4x3/sz.svg new file mode 100755 index 0000000..dedaaf5 --- /dev/null +++ b/res/flags/4x3/sz.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/tc.svg b/res/flags/4x3/tc.svg new file mode 100755 index 0000000..fab2d91 --- /dev/null +++ b/res/flags/4x3/tc.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/td.svg b/res/flags/4x3/td.svg new file mode 100755 index 0000000..c164532 --- /dev/null +++ b/res/flags/4x3/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/tf.svg b/res/flags/4x3/tf.svg new file mode 100755 index 0000000..d3253ec --- /dev/null +++ b/res/flags/4x3/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/tg.svg b/res/flags/4x3/tg.svg new file mode 100755 index 0000000..85dfe93 --- /dev/null +++ b/res/flags/4x3/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/th.svg b/res/flags/4x3/th.svg new file mode 100755 index 0000000..33d9b64 --- /dev/null +++ b/res/flags/4x3/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/tj.svg b/res/flags/4x3/tj.svg new file mode 100755 index 0000000..d058b89 --- /dev/null +++ b/res/flags/4x3/tj.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/tk.svg b/res/flags/4x3/tk.svg new file mode 100755 index 0000000..484d854 --- /dev/null +++ b/res/flags/4x3/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/tl.svg b/res/flags/4x3/tl.svg new file mode 100755 index 0000000..47b8491 --- /dev/null +++ b/res/flags/4x3/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/tm.svg b/res/flags/4x3/tm.svg new file mode 100755 index 0000000..f917778 --- /dev/null +++ b/res/flags/4x3/tm.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/tn.svg b/res/flags/4x3/tn.svg new file mode 100755 index 0000000..55e4d5b --- /dev/null +++ b/res/flags/4x3/tn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/to.svg b/res/flags/4x3/to.svg new file mode 100755 index 0000000..50a6fb9 --- /dev/null +++ b/res/flags/4x3/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/res/flags/4x3/tr.svg b/res/flags/4x3/tr.svg new file mode 100755 index 0000000..5300199 --- /dev/null +++ b/res/flags/4x3/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/tt.svg b/res/flags/4x3/tt.svg new file mode 100755 index 0000000..4aac679 --- /dev/null +++ b/res/flags/4x3/tt.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/res/flags/4x3/tv.svg b/res/flags/4x3/tv.svg new file mode 100755 index 0000000..93ae8e5 --- /dev/null +++ b/res/flags/4x3/tv.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/tw.svg b/res/flags/4x3/tw.svg new file mode 100755 index 0000000..6b7bd11 --- /dev/null +++ b/res/flags/4x3/tw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/res/flags/4x3/tz.svg b/res/flags/4x3/tz.svg new file mode 100755 index 0000000..1a811af --- /dev/null +++ b/res/flags/4x3/tz.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/res/flags/4x3/ua.svg b/res/flags/4x3/ua.svg new file mode 100755 index 0000000..2f68876 --- /dev/null +++ b/res/flags/4x3/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/res/flags/4x3/ug.svg b/res/flags/4x3/ug.svg new file mode 100755 index 0000000..b44b45b --- /dev/null +++ b/res/flags/4x3/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/um.svg b/res/flags/4x3/um.svg new file mode 100755 index 0000000..7aab3fd --- /dev/null +++ b/res/flags/4x3/um.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/un.svg b/res/flags/4x3/un.svg new file mode 100755 index 0000000..bc55502 --- /dev/null +++ b/res/flags/4x3/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/us.svg b/res/flags/4x3/us.svg new file mode 100755 index 0000000..95e707b --- /dev/null +++ b/res/flags/4x3/us.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/uy.svg b/res/flags/4x3/uy.svg new file mode 100755 index 0000000..9fc3e5e --- /dev/null +++ b/res/flags/4x3/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/uz.svg b/res/flags/4x3/uz.svg new file mode 100755 index 0000000..6e0472b --- /dev/null +++ b/res/flags/4x3/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/va.svg b/res/flags/4x3/va.svg new file mode 100755 index 0000000..b90ddf1 --- /dev/null +++ b/res/flags/4x3/va.svg @@ -0,0 +1,483 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/vc.svg b/res/flags/4x3/vc.svg new file mode 100755 index 0000000..ed4c1e4 --- /dev/null +++ b/res/flags/4x3/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/res/flags/4x3/ve.svg b/res/flags/4x3/ve.svg new file mode 100755 index 0000000..b71c77f --- /dev/null +++ b/res/flags/4x3/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/vg.svg b/res/flags/4x3/vg.svg new file mode 100755 index 0000000..4f103ae --- /dev/null +++ b/res/flags/4x3/vg.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/vi.svg b/res/flags/4x3/vi.svg new file mode 100755 index 0000000..0c91a25 --- /dev/null +++ b/res/flags/4x3/vi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/vn.svg b/res/flags/4x3/vn.svg new file mode 100755 index 0000000..fcfd7d1 --- /dev/null +++ b/res/flags/4x3/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/res/flags/4x3/vu.svg b/res/flags/4x3/vu.svg new file mode 100755 index 0000000..18dc459 --- /dev/null +++ b/res/flags/4x3/vu.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/wf.svg b/res/flags/4x3/wf.svg new file mode 100755 index 0000000..1b1e81c --- /dev/null +++ b/res/flags/4x3/wf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/ws.svg b/res/flags/4x3/ws.svg new file mode 100755 index 0000000..6e5963d --- /dev/null +++ b/res/flags/4x3/ws.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/res/flags/4x3/ye.svg b/res/flags/4x3/ye.svg new file mode 100755 index 0000000..4a115e5 --- /dev/null +++ b/res/flags/4x3/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/yt.svg b/res/flags/4x3/yt.svg new file mode 100755 index 0000000..c9abb97 --- /dev/null +++ b/res/flags/4x3/yt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/res/flags/4x3/za.svg b/res/flags/4x3/za.svg new file mode 100755 index 0000000..e585fc2 --- /dev/null +++ b/res/flags/4x3/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/zm.svg b/res/flags/4x3/zm.svg new file mode 100755 index 0000000..2d4e3e7 --- /dev/null +++ b/res/flags/4x3/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/flags/4x3/zw.svg b/res/flags/4x3/zw.svg new file mode 100755 index 0000000..903afd3 --- /dev/null +++ b/res/flags/4x3/zw.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/options.css b/res/options.css new file mode 100644 index 0000000..2a3c24e --- /dev/null +++ b/res/options.css @@ -0,0 +1,42 @@ +.options { + left: 900px; + height: 100%; + min-width: 200px; + position: absolute; + text-align: right; + top: 0; + width: 200px; +} + +.option-divider { + margin: 19px 0 19px 25%; + width: 75%; +} + +.option-item { + background: teal; + border-radius: 16px 0 0 16px; + cursor: pointer; + height: 24px; + line-height: 24px; + margin-bottom: 4px; + padding: 4px 16px 4px 4px; +} + +.option-item:hover { + opacity: 0.7; +} + +.option-item.inactive { + opacity: 0.2; +} + +.option-text { + display: inline-block; + font-size: 12px; +} + +.option-toggle { + display: inline-block; + margin-left: 25px; +}