{{ .Title }}
@@ -15,13 +15,13 @@-
{{ range .Pages }}
-
-
+
{{.Title}}
{{ if .Site.Params.dateformShort }}
- {{ .Date.Format .Site.Params.dateformShort }}
+ {{ time.Format .Site.Params.dateformShort .Date }}
{{ else }}
- {{ .Date.Format "Jan 2"}}
+ {{ time.Format "Jan 2" .Date }}
{{ end }}
diff --git a/themes/hello-friend-ng-clone/layouts/_default/single.html b/themes/hello-friend-ng-clone/layouts/_default/single.html
index 8d3e640..f59120d 100644
--- a/themes/hello-friend-ng-clone/layouts/_default/single.html
+++ b/themes/hello-friend-ng-clone/layouts/_default/single.html
@@ -5,7 +5,7 @@
{{ if .IsTranslated }}
{{ i18n "postAvailable" }}
{{ range .Translations }}
-
+
{{ end}}
{{ end }}
diff --git a/themes/hello-friend-ng-clone/layouts/index.html b/themes/hello-friend-ng-clone/layouts/index.html
index 56dc443..3c813d7 100644
--- a/themes/hello-friend-ng-clone/layouts/index.html
+++ b/themes/hello-friend-ng-clone/layouts/index.html
@@ -3,16 +3,15 @@
{{ end }}
{{ define "main" }}
-
+ {{ if .Site.Params.Portrait.Path }}{{ end }}
{{ .Site.Title }}
- {{- with .Site.Params.homeSubtitle }} -{{.}}
- {{- end }} + + {{ partial "subtitle.html" . }} {{- with .Site.Params.social }}diff --git a/themes/hello-friend-ng-clone/layouts/partials/favicons.html b/themes/hello-friend-ng-clone/layouts/partials/favicons.html index 36e2eac..72a10da 100644 --- a/themes/hello-friend-ng-clone/layouts/partials/favicons.html +++ b/themes/hello-friend-ng-clone/layouts/partials/favicons.html @@ -1,10 +1,7 @@ -{{- with .Site.Params.favicon.color }} - + - - -{{ end }} + diff --git a/themes/hello-friend-ng-clone/layouts/partials/footer.html b/themes/hello-friend-ng-clone/layouts/partials/footer.html index 41b83cb..15123a6 100644 --- a/themes/hello-friend-ng-clone/layouts/partials/footer.html +++ b/themes/hello-friend-ng-clone/layouts/partials/footer.html @@ -2,8 +2,8 @@ {{if or (.Site.Params.footer.trademark) (.Site.Params.footer.author) (.Site.Params.footer.copyright) (.Site.Params.footer.rss) (.Site.Params.footer.topText) }}- {{ if .Site.Params.footer.trademark }}© {{ now.Format "2006" }}{{ end }} - {{ if .Site.Params.footer.author }}{{ .Site.Author.name }}{{ end }} + {{ if .Site.Params.footer.trademark }}© {{ .Site.Params.footer.trademark }}{{ end }} + {{ if .Site.Params.footer.author }}{{ .Site.Params.Author.name }}{{ end }} {{ if .Site.Params.footer.copyright }}{{ .Site.Copyright| safeHTML }}{{ end }} {{ if .Site.Params.footer.rss }}{{ end }} {{ range .Site.Params.footer.topText }}{{ . | safeHTML}}{{ end }} diff --git a/themes/hello-friend-ng-clone/layouts/partials/head.html b/themes/hello-friend-ng-clone/layouts/partials/head.html index bfc2cde..b908c41 100644 --- a/themes/hello-friend-ng-clone/layouts/partials/head.html +++ b/themes/hello-friend-ng-clone/layouts/partials/head.html @@ -1,5 +1,8 @@ +{{ if .Params.noindex }} + +{{ end }} @@ -19,12 +22,11 @@ {{ end }} - +{{ $opts := dict "transpiler" "libsass" "targetPath" "main.css" "outputStyle" "compressed" "enableSourceMap" true }} +{{ with resources.Get "scss/main.scss" | toCSS $opts | minify | fingerprint }} + +{{ end }} -{{ $options := (dict "targetPath" "main.css" "outputStyle" "compressed" "enableSourceMap" true) }} -{{ $style := resources.Get "scss/main.scss" | resources.ToCSS $options | resources.Fingerprint }} - {{ range $val := $.Site.Params.customCSS }} {{ if gt (len $val) 0 }} @@ -37,7 +39,6 @@ {{ template "_internal/schema.html" . }} {{ template "_internal/twitter_cards.html" . }} -{{ template "_internal/google_news.html" . }} {{ if isset .Site.Taxonomies "series" }} {{ template "_internal/opengraph.html" . }} @@ -68,6 +69,11 @@ {{- end }} -{{- if .Site.GoogleAnalytics }} +{{- if .Site.Config.Services.GoogleAnalytics.ID }} {{ template "_internal/google_analytics.html" . }} +{{- end }} + + +{{- if $.Site.Params.plausibleDataDomain }} + {{- end}} diff --git a/themes/hello-friend-ng-clone/layouts/partials/header.html b/themes/hello-friend-ng-clone/layouts/partials/header.html index 46651d4..f688b6c 100644 --- a/themes/hello-friend-ng-clone/layouts/partials/header.html +++ b/themes/hello-friend-ng-clone/layouts/partials/header.html @@ -3,7 +3,7 @@ {{ partial "logo.html" . }} - {{ if len .Site.Menus }} + {{- if len .Site.Menus }} {{ partial "menu.html" . }} - {{ end }} + {{- end }} {{- if .Site.Params.EnableThemeToggle }} {{ partial "theme-toggle-icon.html" . }} diff --git a/themes/hello-friend-ng-clone/layouts/partials/javascript.html b/themes/hello-friend-ng-clone/layouts/partials/javascript.html index 69ccb82..d243d16 100644 --- a/themes/hello-friend-ng-clone/layouts/partials/javascript.html +++ b/themes/hello-friend-ng-clone/layouts/partials/javascript.html @@ -9,3 +9,29 @@ {{ end }} {{ end }} + +{{ if .Page.Store.Get "hasMermaid" }} + +{{ end }} \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/layouts/partials/logo.html b/themes/hello-friend-ng-clone/layouts/partials/logo.html index 19777ee..0136aac 100644 --- a/themes/hello-friend-ng-clone/layouts/partials/logo.html +++ b/themes/hello-friend-ng-clone/layouts/partials/logo.html @@ -1,10 +1,11 @@ - +{{ if .Site.Params.Logo.path }}{{ else }} {{ with .Site.Params.Logo.logoMark }}{{ . }}{{ else }}>{{ end }} - {{ with .Site.Params.Logo.logoText }}{{ . }}{{ else }}hello{{ end }} + + {{ with .Site.Params.Logo.logoText }}{{ . }}{{ else }}hello{{ end }}
-
{{- $currentPage := . -}}
- {{ range .Site.Menus.main -}}
+ {{ range sort .Site.Menus.main ".Identifier" -}}
- {{ .Name }} {{- end }} + + {{- if .Site.Params.EnableGlobalLanguageMenu }} +
-
+ {{ .Language }}
+ + {{ if hugo.IsMultilingual }} + {{ range $.Translations }} + {{ .Language }} + {{ end }} + {{ end }} ++
+
++ {{- end }}+ {{ if .Site.Params.ReadOtherPosts }}{{ .Site.Params.ReadOtherPosts }}+ {{ end }}
{{ if .NextInSection }} diff --git a/themes/hello-friend-ng-clone/layouts/partials/social-icons.html b/themes/hello-friend-ng-clone/layouts/partials/social-icons.html index 09ca681..1facd2b 100644 --- a/themes/hello-friend-ng-clone/layouts/partials/social-icons.html +++ b/themes/hello-friend-ng-clone/layouts/partials/social-icons.html @@ -1,3 +1,3 @@ {{ range . -}} - {{ partial "svg.html" . }} + {{ partial "svg.html" . }} {{- end -}} diff --git a/themes/hello-friend-ng-clone/layouts/partials/subtitle.html b/themes/hello-friend-ng-clone/layouts/partials/subtitle.html new file mode 100644 index 0000000..f7f3e24 --- /dev/null +++ b/themes/hello-friend-ng-clone/layouts/partials/subtitle.html @@ -0,0 +1,3 @@ +{{- with .Site.Params.homeSubtitle }} +{{.}}
+{{- end }} \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/layouts/partials/svg.html b/themes/hello-friend-ng-clone/layouts/partials/svg.html index ce853e1..2054b1c 100644 --- a/themes/hello-friend-ng-clone/layouts/partials/svg.html +++ b/themes/hello-friend-ng-clone/layouts/partials/svg.html @@ -4,35 +4,49 @@ {{- else if (eq .name "box") -}} -{{- else if (eq .name "behence") -}} +{{- else if (eq .name "behance") -}} {{- else if (eq .name "bitbucket") -}} -{{- else if (eq .name "case") -}} +{{- else if (eq .name "bluesky") -}} + +{{- else if (eq .name "case") -}} +{{- else if (eq .name "chess") -}} + +{{- else if (eq .name "codeberg") -}} + {{- else if (eq .name "codesandbox") -}} {{- else if (eq .name "codechef") -}} {{- else if (eq .name "codepen") -}} +{{- else if (eq .name "csgo") -}} + +{{- else if (eq .name "cyberdefenders") -}} + {{- else if (eq .name "dev") -}} - + {{- else if (eq .name "deviantart") -}} {{- else if (eq .name "discogs") -}} {{- else if (eq .name "discord") -}} - + {{- else if (eq .name "dribbble") -}} {{- else if (eq .name "docker") -}} +{{- else if (eq .name "duolingo") -}} + {{- else if (eq .name "email") -}} {{- else if (eq .name "facebook") -}} -{{- else if (eq .name "fitbit") -}} +{{- else if (eq .name "facebook-messenger") -}} + +{{- else if (eq .name "fitbit") -}} {{- else if (eq .name "git") -}} @@ -60,19 +74,27 @@ {{- else if (eq .name "hackthebox") -}} +{{- else if (eq .name "imdb") -}} + {{- else if (eq .name "instagram") -}} +{{- else if (eq .name "itchio") -}} + +{{- else if (eq .name "jenkins") -}} + {{- else if (eq .name "kaggle") -}} {{- else if (eq .name "keybase") -}} +{{- else if (eq .name "kofi") -}} + {{- else if (eq .name "lastfm") -}} {{- else if (eq .name "leetcode") -}} {{- else if (eq .name "letterboxd") -}} -{{- else if (eq .name "librepay") -}} +{{- else if (eq .name "librepay") -}} {{- else if (eq .name "lichess") -}} @@ -84,18 +106,28 @@ {{- else if (eq .name "medium") -}} +{{- else if (eq .name "meetup") -}} + {{- else if (eq .name "mixcloud") -}} {{- else if (eq .name "npm") -}} +{{- else if (eq .name "opencollective") -}} + {{- else if (eq .name "orcid") -}} +{{- else if (eq .name "patreon") -}} + +{{- else if (eq .name "paypal") -}} + {{- else if (eq .name "peertube") }} {{- else if (eq .name "pinterest") }} {{- else if (eq .name "pixelfed") }} +{{- else if (eq .name "pleroma") }} + {{- else if (eq .name "podcasts-apple") -}} {{- else if (eq .name "podcasts-google") -}} @@ -104,14 +136,22 @@ {{- else if (eq .name "reddit") -}} +{{- else if (eq .name "repec") -}} + {{- else if (eq .name "researchgate") -}} +{{- else if (eq .name "revolut") -}} + +{{- else if (eq .name "rss") -}} + {{- else if (eq .name "signal") -}} {{- else if (eq .name "slack") -}} {{- else if (eq .name "soundcloud") -}} +{{- else if (eq .name "sourcehut") -}} + {{- else if (eq .name "spotify") -}} {{- else if (eq .name "stackoverflow") -}} @@ -122,22 +162,30 @@ {{- else if (eq .name "telegram") -}} -{{- else if (eq .name "threema") -}} +{{- else if (eq .name "threads") -}} + +{{- else if (eq .name "threema") -}} +{{- else if (eq .name "tiktok") -}} + {{- else if (eq .name "tryhackme") -}} {{- else if (eq .name "tumblr") }} {{- else if (eq .name "twitch") -}} - + {{- else if (eq .name "twitter") -}} {{- else if (eq .name "unsplash") -}} {{- else if (eq .name "whatsapp") }} +{{- else if (eq .name "X") }} + {{- else if (eq .name "xampp") -}} +{{- else if (eq .name "xda") -}} + {{- else if (eq .name "xing") -}} {{- else if (eq .name "xmpp") -}} diff --git a/themes/hello-friend-ng-clone/layouts/posts/single.html b/themes/hello-friend-ng-clone/layouts/posts/single.html index 181d554..3943de2 100644 --- a/themes/hello-friend-ng-clone/layouts/posts/single.html +++ b/themes/hello-friend-ng-clone/layouts/posts/single.html @@ -11,7 +11,7 @@ {{ if .IsTranslated }} | {{ i18n "postAvailable" }} {{ range .Translations }} - + {{ end}} {{ end }} @@ -122,7 +122,7 @@ {{ partial "pagination-single.html" . }} - {{ if .Site.DisqusShortname }} + {{ if .Site.Config.Services.Disqus.Shortname }} {{ if not (eq .Params.Comments "false") }}{{ template "_internal/disqus.html" . }} @@ -135,5 +135,16 @@ {{ end }} + {{ if .Site.Params.Utterances.Repository }} + + {{ end }} + {{ end }} diff --git a/themes/hello-friend-ng-clone/static/css/flag-icons.min.css b/themes/hello-friend-ng-clone/static/css/flag-icons.min.css new file mode 100644 index 0000000..5c19f3f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/css/flag-icons.min.css @@ -0,0 +1 @@ +.fib{background-size:contain;background-position:50%;background-repeat:no-repeat}.fi{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.fi:before{content:'\00a0'}.fi.fis{width:1em}.fi-xx{background-image:url(/flags/4x3/xx.svg)}.fi-xx.fis{background-image:url(/flags/1x1/xx.svg)}.fi-ad{background-image:url(/flags/4x3/ad.svg)}.fi-ad.fis{background-image:url(/flags/1x1/ad.svg)}.fi-ae{background-image:url(/flags/4x3/ae.svg)}.fi-ae.fis{background-image:url(/flags/1x1/ae.svg)}.fi-af{background-image:url(/flags/4x3/af.svg)}.fi-af.fis{background-image:url(/flags/1x1/af.svg)}.fi-ag{background-image:url(/flags/4x3/ag.svg)}.fi-ag.fis{background-image:url(/flags/1x1/ag.svg)}.fi-ai{background-image:url(/flags/4x3/ai.svg)}.fi-ai.fis{background-image:url(/flags/1x1/ai.svg)}.fi-al{background-image:url(/flags/4x3/al.svg)}.fi-al.fis{background-image:url(/flags/1x1/al.svg)}.fi-am{background-image:url(/flags/4x3/am.svg)}.fi-am.fis{background-image:url(/flags/1x1/am.svg)}.fi-ao{background-image:url(/flags/4x3/ao.svg)}.fi-ao.fis{background-image:url(/flags/1x1/ao.svg)}.fi-aq{background-image:url(/flags/4x3/aq.svg)}.fi-aq.fis{background-image:url(/flags/1x1/aq.svg)}.fi-ar{background-image:url(/flags/4x3/ar.svg)}.fi-ar.fis{background-image:url(/flags/1x1/ar.svg)}.fi-as{background-image:url(/flags/4x3/as.svg)}.fi-as.fis{background-image:url(/flags/1x1/as.svg)}.fi-at{background-image:url(/flags/4x3/at.svg)}.fi-at.fis{background-image:url(/flags/1x1/at.svg)}.fi-au{background-image:url(/flags/4x3/au.svg)}.fi-au.fis{background-image:url(/flags/1x1/au.svg)}.fi-aw{background-image:url(/flags/4x3/aw.svg)}.fi-aw.fis{background-image:url(/flags/1x1/aw.svg)}.fi-ax{background-image:url(/flags/4x3/ax.svg)}.fi-ax.fis{background-image:url(/flags/1x1/ax.svg)}.fi-az{background-image:url(/flags/4x3/az.svg)}.fi-az.fis{background-image:url(/flags/1x1/az.svg)}.fi-ba{background-image:url(/flags/4x3/ba.svg)}.fi-ba.fis{background-image:url(/flags/1x1/ba.svg)}.fi-bb{background-image:url(/flags/4x3/bb.svg)}.fi-bb.fis{background-image:url(/flags/1x1/bb.svg)}.fi-bd{background-image:url(/flags/4x3/bd.svg)}.fi-bd.fis{background-image:url(/flags/1x1/bd.svg)}.fi-be{background-image:url(/flags/4x3/be.svg)}.fi-be.fis{background-image:url(/flags/1x1/be.svg)}.fi-bf{background-image:url(/flags/4x3/bf.svg)}.fi-bf.fis{background-image:url(/flags/1x1/bf.svg)}.fi-bg{background-image:url(/flags/4x3/bg.svg)}.fi-bg.fis{background-image:url(/flags/1x1/bg.svg)}.fi-bh{background-image:url(/flags/4x3/bh.svg)}.fi-bh.fis{background-image:url(/flags/1x1/bh.svg)}.fi-bi{background-image:url(/flags/4x3/bi.svg)}.fi-bi.fis{background-image:url(/flags/1x1/bi.svg)}.fi-bj{background-image:url(/flags/4x3/bj.svg)}.fi-bj.fis{background-image:url(/flags/1x1/bj.svg)}.fi-bl{background-image:url(/flags/4x3/bl.svg)}.fi-bl.fis{background-image:url(/flags/1x1/bl.svg)}.fi-bm{background-image:url(/flags/4x3/bm.svg)}.fi-bm.fis{background-image:url(/flags/1x1/bm.svg)}.fi-bn{background-image:url(/flags/4x3/bn.svg)}.fi-bn.fis{background-image:url(/flags/1x1/bn.svg)}.fi-bo{background-image:url(/flags/4x3/bo.svg)}.fi-bo.fis{background-image:url(/flags/1x1/bo.svg)}.fi-bq{background-image:url(/flags/4x3/bq.svg)}.fi-bq.fis{background-image:url(/flags/1x1/bq.svg)}.fi-br{background-image:url(/flags/4x3/br.svg)}.fi-br.fis{background-image:url(/flags/1x1/br.svg)}.fi-bs{background-image:url(/flags/4x3/bs.svg)}.fi-bs.fis{background-image:url(/flags/1x1/bs.svg)}.fi-bt{background-image:url(/flags/4x3/bt.svg)}.fi-bt.fis{background-image:url(/flags/1x1/bt.svg)}.fi-bv{background-image:url(/flags/4x3/bv.svg)}.fi-bv.fis{background-image:url(/flags/1x1/bv.svg)}.fi-bw{background-image:url(/flags/4x3/bw.svg)}.fi-bw.fis{background-image:url(/flags/1x1/bw.svg)}.fi-by{background-image:url(/flags/4x3/by.svg)}.fi-by.fis{background-image:url(/flags/1x1/by.svg)}.fi-bz{background-image:url(/flags/4x3/bz.svg)}.fi-bz.fis{background-image:url(/flags/1x1/bz.svg)}.fi-ca{background-image:url(/flags/4x3/ca.svg)}.fi-ca.fis{background-image:url(/flags/1x1/ca.svg)}.fi-cc{background-image:url(/flags/4x3/cc.svg)}.fi-cc.fis{background-image:url(/flags/1x1/cc.svg)}.fi-cd{background-image:url(/flags/4x3/cd.svg)}.fi-cd.fis{background-image:url(/flags/1x1/cd.svg)}.fi-cf{background-image:url(/flags/4x3/cf.svg)}.fi-cf.fis{background-image:url(/flags/1x1/cf.svg)}.fi-cg{background-image:url(/flags/4x3/cg.svg)}.fi-cg.fis{background-image:url(/flags/1x1/cg.svg)}.fi-ch{background-image:url(/flags/4x3/ch.svg)}.fi-ch.fis{background-image:url(/flags/1x1/ch.svg)}.fi-ci{background-image:url(/flags/4x3/ci.svg)}.fi-ci.fis{background-image:url(/flags/1x1/ci.svg)}.fi-ck{background-image:url(/flags/4x3/ck.svg)}.fi-ck.fis{background-image:url(/flags/1x1/ck.svg)}.fi-cl{background-image:url(/flags/4x3/cl.svg)}.fi-cl.fis{background-image:url(/flags/1x1/cl.svg)}.fi-cm{background-image:url(/flags/4x3/cm.svg)}.fi-cm.fis{background-image:url(/flags/1x1/cm.svg)}.fi-cn{background-image:url(/flags/4x3/cn.svg)}.fi-cn.fis{background-image:url(/flags/1x1/cn.svg)}.fi-co{background-image:url(/flags/4x3/co.svg)}.fi-co.fis{background-image:url(/flags/1x1/co.svg)}.fi-cr{background-image:url(/flags/4x3/cr.svg)}.fi-cr.fis{background-image:url(/flags/1x1/cr.svg)}.fi-cu{background-image:url(/flags/4x3/cu.svg)}.fi-cu.fis{background-image:url(/flags/1x1/cu.svg)}.fi-cv{background-image:url(/flags/4x3/cv.svg)}.fi-cv.fis{background-image:url(/flags/1x1/cv.svg)}.fi-cw{background-image:url(/flags/4x3/cw.svg)}.fi-cw.fis{background-image:url(/flags/1x1/cw.svg)}.fi-cx{background-image:url(/flags/4x3/cx.svg)}.fi-cx.fis{background-image:url(/flags/1x1/cx.svg)}.fi-cy{background-image:url(/flags/4x3/cy.svg)}.fi-cy.fis{background-image:url(/flags/1x1/cy.svg)}.fi-cz{background-image:url(/flags/4x3/cz.svg)}.fi-cz.fis{background-image:url(/flags/1x1/cz.svg)}.fi-de{background-image:url(/flags/4x3/de.svg)}.fi-de.fis{background-image:url(/flags/1x1/de.svg)}.fi-dj{background-image:url(/flags/4x3/dj.svg)}.fi-dj.fis{background-image:url(/flags/1x1/dj.svg)}.fi-dk{background-image:url(/flags/4x3/dk.svg)}.fi-dk.fis{background-image:url(/flags/1x1/dk.svg)}.fi-dm{background-image:url(/flags/4x3/dm.svg)}.fi-dm.fis{background-image:url(/flags/1x1/dm.svg)}.fi-do{background-image:url(/flags/4x3/do.svg)}.fi-do.fis{background-image:url(/flags/1x1/do.svg)}.fi-dz{background-image:url(/flags/4x3/dz.svg)}.fi-dz.fis{background-image:url(/flags/1x1/dz.svg)}.fi-ec{background-image:url(/flags/4x3/ec.svg)}.fi-ec.fis{background-image:url(/flags/1x1/ec.svg)}.fi-ee{background-image:url(/flags/4x3/ee.svg)}.fi-ee.fis{background-image:url(/flags/1x1/ee.svg)}.fi-eg{background-image:url(/flags/4x3/eg.svg)}.fi-eg.fis{background-image:url(/flags/1x1/eg.svg)}.fi-eh{background-image:url(/flags/4x3/eh.svg)}.fi-eh.fis{background-image:url(/flags/1x1/eh.svg)}.fi-er{background-image:url(/flags/4x3/er.svg)}.fi-er.fis{background-image:url(/flags/1x1/er.svg)}.fi-es{background-image:url(/flags/4x3/es.svg)}.fi-es.fis{background-image:url(/flags/1x1/es.svg)}.fi-et{background-image:url(/flags/4x3/et.svg)}.fi-et.fis{background-image:url(/flags/1x1/et.svg)}.fi-fi{background-image:url(/flags/4x3/fi.svg)}.fi-fi.fis{background-image:url(/flags/1x1/fi.svg)}.fi-fj{background-image:url(/flags/4x3/fj.svg)}.fi-fj.fis{background-image:url(/flags/1x1/fj.svg)}.fi-fk{background-image:url(/flags/4x3/fk.svg)}.fi-fk.fis{background-image:url(/flags/1x1/fk.svg)}.fi-fm{background-image:url(/flags/4x3/fm.svg)}.fi-fm.fis{background-image:url(/flags/1x1/fm.svg)}.fi-fo{background-image:url(/flags/4x3/fo.svg)}.fi-fo.fis{background-image:url(/flags/1x1/fo.svg)}.fi-fr{background-image:url(/flags/4x3/fr.svg)}.fi-fr.fis{background-image:url(/flags/1x1/fr.svg)}.fi-ga{background-image:url(/flags/4x3/ga.svg)}.fi-ga.fis{background-image:url(/flags/1x1/ga.svg)}.fi-gb{background-image:url(/flags/4x3/gb.svg)}.fi-gb.fis{background-image:url(/flags/1x1/gb.svg)}.fi-gd{background-image:url(/flags/4x3/gd.svg)}.fi-gd.fis{background-image:url(/flags/1x1/gd.svg)}.fi-ge{background-image:url(/flags/4x3/ge.svg)}.fi-ge.fis{background-image:url(/flags/1x1/ge.svg)}.fi-gf{background-image:url(/flags/4x3/gf.svg)}.fi-gf.fis{background-image:url(/flags/1x1/gf.svg)}.fi-gg{background-image:url(/flags/4x3/gg.svg)}.fi-gg.fis{background-image:url(/flags/1x1/gg.svg)}.fi-gh{background-image:url(/flags/4x3/gh.svg)}.fi-gh.fis{background-image:url(/flags/1x1/gh.svg)}.fi-gi{background-image:url(/flags/4x3/gi.svg)}.fi-gi.fis{background-image:url(/flags/1x1/gi.svg)}.fi-gl{background-image:url(/flags/4x3/gl.svg)}.fi-gl.fis{background-image:url(/flags/1x1/gl.svg)}.fi-gm{background-image:url(/flags/4x3/gm.svg)}.fi-gm.fis{background-image:url(/flags/1x1/gm.svg)}.fi-gn{background-image:url(/flags/4x3/gn.svg)}.fi-gn.fis{background-image:url(/flags/1x1/gn.svg)}.fi-gp{background-image:url(/flags/4x3/gp.svg)}.fi-gp.fis{background-image:url(/flags/1x1/gp.svg)}.fi-gq{background-image:url(/flags/4x3/gq.svg)}.fi-gq.fis{background-image:url(/flags/1x1/gq.svg)}.fi-gr{background-image:url(/flags/4x3/gr.svg)}.fi-gr.fis{background-image:url(/flags/1x1/gr.svg)}.fi-gs{background-image:url(/flags/4x3/gs.svg)}.fi-gs.fis{background-image:url(/flags/1x1/gs.svg)}.fi-gt{background-image:url(/flags/4x3/gt.svg)}.fi-gt.fis{background-image:url(/flags/1x1/gt.svg)}.fi-gu{background-image:url(/flags/4x3/gu.svg)}.fi-gu.fis{background-image:url(/flags/1x1/gu.svg)}.fi-gw{background-image:url(/flags/4x3/gw.svg)}.fi-gw.fis{background-image:url(/flags/1x1/gw.svg)}.fi-gy{background-image:url(/flags/4x3/gy.svg)}.fi-gy.fis{background-image:url(/flags/1x1/gy.svg)}.fi-hk{background-image:url(/flags/4x3/hk.svg)}.fi-hk.fis{background-image:url(/flags/1x1/hk.svg)}.fi-hm{background-image:url(/flags/4x3/hm.svg)}.fi-hm.fis{background-image:url(/flags/1x1/hm.svg)}.fi-hn{background-image:url(/flags/4x3/hn.svg)}.fi-hn.fis{background-image:url(/flags/1x1/hn.svg)}.fi-hr{background-image:url(/flags/4x3/hr.svg)}.fi-hr.fis{background-image:url(/flags/1x1/hr.svg)}.fi-ht{background-image:url(/flags/4x3/ht.svg)}.fi-ht.fis{background-image:url(/flags/1x1/ht.svg)}.fi-hu{background-image:url(/flags/4x3/hu.svg)}.fi-hu.fis{background-image:url(/flags/1x1/hu.svg)}.fi-id{background-image:url(/flags/4x3/id.svg)}.fi-id.fis{background-image:url(/flags/1x1/id.svg)}.fi-ie{background-image:url(/flags/4x3/ie.svg)}.fi-ie.fis{background-image:url(/flags/1x1/ie.svg)}.fi-il{background-image:url(/flags/4x3/il.svg)}.fi-il.fis{background-image:url(/flags/1x1/il.svg)}.fi-im{background-image:url(/flags/4x3/im.svg)}.fi-im.fis{background-image:url(/flags/1x1/im.svg)}.fi-in{background-image:url(/flags/4x3/in.svg)}.fi-in.fis{background-image:url(/flags/1x1/in.svg)}.fi-io{background-image:url(/flags/4x3/io.svg)}.fi-io.fis{background-image:url(/flags/1x1/io.svg)}.fi-iq{background-image:url(/flags/4x3/iq.svg)}.fi-iq.fis{background-image:url(/flags/1x1/iq.svg)}.fi-ir{background-image:url(/flags/4x3/ir.svg)}.fi-ir.fis{background-image:url(/flags/1x1/ir.svg)}.fi-is{background-image:url(/flags/4x3/is.svg)}.fi-is.fis{background-image:url(/flags/1x1/is.svg)}.fi-it{background-image:url(/flags/4x3/it.svg)}.fi-it.fis{background-image:url(/flags/1x1/it.svg)}.fi-je{background-image:url(/flags/4x3/je.svg)}.fi-je.fis{background-image:url(/flags/1x1/je.svg)}.fi-jm{background-image:url(/flags/4x3/jm.svg)}.fi-jm.fis{background-image:url(/flags/1x1/jm.svg)}.fi-jo{background-image:url(/flags/4x3/jo.svg)}.fi-jo.fis{background-image:url(/flags/1x1/jo.svg)}.fi-jp{background-image:url(/flags/4x3/jp.svg)}.fi-jp.fis{background-image:url(/flags/1x1/jp.svg)}.fi-ke{background-image:url(/flags/4x3/ke.svg)}.fi-ke.fis{background-image:url(/flags/1x1/ke.svg)}.fi-kg{background-image:url(/flags/4x3/kg.svg)}.fi-kg.fis{background-image:url(/flags/1x1/kg.svg)}.fi-kh{background-image:url(/flags/4x3/kh.svg)}.fi-kh.fis{background-image:url(/flags/1x1/kh.svg)}.fi-ki{background-image:url(/flags/4x3/ki.svg)}.fi-ki.fis{background-image:url(/flags/1x1/ki.svg)}.fi-km{background-image:url(/flags/4x3/km.svg)}.fi-km.fis{background-image:url(/flags/1x1/km.svg)}.fi-kn{background-image:url(/flags/4x3/kn.svg)}.fi-kn.fis{background-image:url(/flags/1x1/kn.svg)}.fi-kp{background-image:url(/flags/4x3/kp.svg)}.fi-kp.fis{background-image:url(/flags/1x1/kp.svg)}.fi-kr{background-image:url(/flags/4x3/kr.svg)}.fi-kr.fis{background-image:url(/flags/1x1/kr.svg)}.fi-kw{background-image:url(/flags/4x3/kw.svg)}.fi-kw.fis{background-image:url(/flags/1x1/kw.svg)}.fi-ky{background-image:url(/flags/4x3/ky.svg)}.fi-ky.fis{background-image:url(/flags/1x1/ky.svg)}.fi-kz{background-image:url(/flags/4x3/kz.svg)}.fi-kz.fis{background-image:url(/flags/1x1/kz.svg)}.fi-la{background-image:url(/flags/4x3/la.svg)}.fi-la.fis{background-image:url(/flags/1x1/la.svg)}.fi-lb{background-image:url(/flags/4x3/lb.svg)}.fi-lb.fis{background-image:url(/flags/1x1/lb.svg)}.fi-lc{background-image:url(/flags/4x3/lc.svg)}.fi-lc.fis{background-image:url(/flags/1x1/lc.svg)}.fi-li{background-image:url(/flags/4x3/li.svg)}.fi-li.fis{background-image:url(/flags/1x1/li.svg)}.fi-lk{background-image:url(/flags/4x3/lk.svg)}.fi-lk.fis{background-image:url(/flags/1x1/lk.svg)}.fi-lr{background-image:url(/flags/4x3/lr.svg)}.fi-lr.fis{background-image:url(/flags/1x1/lr.svg)}.fi-ls{background-image:url(/flags/4x3/ls.svg)}.fi-ls.fis{background-image:url(/flags/1x1/ls.svg)}.fi-lt{background-image:url(/flags/4x3/lt.svg)}.fi-lt.fis{background-image:url(/flags/1x1/lt.svg)}.fi-lu{background-image:url(/flags/4x3/lu.svg)}.fi-lu.fis{background-image:url(/flags/1x1/lu.svg)}.fi-lv{background-image:url(/flags/4x3/lv.svg)}.fi-lv.fis{background-image:url(/flags/1x1/lv.svg)}.fi-ly{background-image:url(/flags/4x3/ly.svg)}.fi-ly.fis{background-image:url(/flags/1x1/ly.svg)}.fi-ma{background-image:url(/flags/4x3/ma.svg)}.fi-ma.fis{background-image:url(/flags/1x1/ma.svg)}.fi-mc{background-image:url(/flags/4x3/mc.svg)}.fi-mc.fis{background-image:url(/flags/1x1/mc.svg)}.fi-md{background-image:url(/flags/4x3/md.svg)}.fi-md.fis{background-image:url(/flags/1x1/md.svg)}.fi-me{background-image:url(/flags/4x3/me.svg)}.fi-me.fis{background-image:url(/flags/1x1/me.svg)}.fi-mf{background-image:url(/flags/4x3/mf.svg)}.fi-mf.fis{background-image:url(/flags/1x1/mf.svg)}.fi-mg{background-image:url(/flags/4x3/mg.svg)}.fi-mg.fis{background-image:url(/flags/1x1/mg.svg)}.fi-mh{background-image:url(/flags/4x3/mh.svg)}.fi-mh.fis{background-image:url(/flags/1x1/mh.svg)}.fi-mk{background-image:url(/flags/4x3/mk.svg)}.fi-mk.fis{background-image:url(/flags/1x1/mk.svg)}.fi-ml{background-image:url(/flags/4x3/ml.svg)}.fi-ml.fis{background-image:url(/flags/1x1/ml.svg)}.fi-mm{background-image:url(/flags/4x3/mm.svg)}.fi-mm.fis{background-image:url(/flags/1x1/mm.svg)}.fi-mn{background-image:url(/flags/4x3/mn.svg)}.fi-mn.fis{background-image:url(/flags/1x1/mn.svg)}.fi-mo{background-image:url(/flags/4x3/mo.svg)}.fi-mo.fis{background-image:url(/flags/1x1/mo.svg)}.fi-mp{background-image:url(/flags/4x3/mp.svg)}.fi-mp.fis{background-image:url(/flags/1x1/mp.svg)}.fi-mq{background-image:url(/flags/4x3/mq.svg)}.fi-mq.fis{background-image:url(/flags/1x1/mq.svg)}.fi-mr{background-image:url(/flags/4x3/mr.svg)}.fi-mr.fis{background-image:url(/flags/1x1/mr.svg)}.fi-ms{background-image:url(/flags/4x3/ms.svg)}.fi-ms.fis{background-image:url(/flags/1x1/ms.svg)}.fi-mt{background-image:url(/flags/4x3/mt.svg)}.fi-mt.fis{background-image:url(/flags/1x1/mt.svg)}.fi-mu{background-image:url(/flags/4x3/mu.svg)}.fi-mu.fis{background-image:url(/flags/1x1/mu.svg)}.fi-mv{background-image:url(/flags/4x3/mv.svg)}.fi-mv.fis{background-image:url(/flags/1x1/mv.svg)}.fi-mw{background-image:url(/flags/4x3/mw.svg)}.fi-mw.fis{background-image:url(/flags/1x1/mw.svg)}.fi-mx{background-image:url(/flags/4x3/mx.svg)}.fi-mx.fis{background-image:url(/flags/1x1/mx.svg)}.fi-my{background-image:url(/flags/4x3/my.svg)}.fi-my.fis{background-image:url(/flags/1x1/my.svg)}.fi-mz{background-image:url(/flags/4x3/mz.svg)}.fi-mz.fis{background-image:url(/flags/1x1/mz.svg)}.fi-na{background-image:url(/flags/4x3/na.svg)}.fi-na.fis{background-image:url(/flags/1x1/na.svg)}.fi-nc{background-image:url(/flags/4x3/nc.svg)}.fi-nc.fis{background-image:url(/flags/1x1/nc.svg)}.fi-ne{background-image:url(/flags/4x3/ne.svg)}.fi-ne.fis{background-image:url(/flags/1x1/ne.svg)}.fi-nf{background-image:url(/flags/4x3/nf.svg)}.fi-nf.fis{background-image:url(/flags/1x1/nf.svg)}.fi-ng{background-image:url(/flags/4x3/ng.svg)}.fi-ng.fis{background-image:url(/flags/1x1/ng.svg)}.fi-ni{background-image:url(/flags/4x3/ni.svg)}.fi-ni.fis{background-image:url(/flags/1x1/ni.svg)}.fi-nl{background-image:url(/flags/4x3/nl.svg)}.fi-nl.fis{background-image:url(/flags/1x1/nl.svg)}.fi-no{background-image:url(/flags/4x3/no.svg)}.fi-no.fis{background-image:url(/flags/1x1/no.svg)}.fi-np{background-image:url(/flags/4x3/np.svg)}.fi-np.fis{background-image:url(/flags/1x1/np.svg)}.fi-nr{background-image:url(/flags/4x3/nr.svg)}.fi-nr.fis{background-image:url(/flags/1x1/nr.svg)}.fi-nu{background-image:url(/flags/4x3/nu.svg)}.fi-nu.fis{background-image:url(/flags/1x1/nu.svg)}.fi-nz{background-image:url(/flags/4x3/nz.svg)}.fi-nz.fis{background-image:url(/flags/1x1/nz.svg)}.fi-om{background-image:url(/flags/4x3/om.svg)}.fi-om.fis{background-image:url(/flags/1x1/om.svg)}.fi-pa{background-image:url(/flags/4x3/pa.svg)}.fi-pa.fis{background-image:url(/flags/1x1/pa.svg)}.fi-pe{background-image:url(/flags/4x3/pe.svg)}.fi-pe.fis{background-image:url(/flags/1x1/pe.svg)}.fi-pf{background-image:url(/flags/4x3/pf.svg)}.fi-pf.fis{background-image:url(/flags/1x1/pf.svg)}.fi-pg{background-image:url(/flags/4x3/pg.svg)}.fi-pg.fis{background-image:url(/flags/1x1/pg.svg)}.fi-ph{background-image:url(/flags/4x3/ph.svg)}.fi-ph.fis{background-image:url(/flags/1x1/ph.svg)}.fi-pk{background-image:url(/flags/4x3/pk.svg)}.fi-pk.fis{background-image:url(/flags/1x1/pk.svg)}.fi-pl{background-image:url(/flags/4x3/pl.svg)}.fi-pl.fis{background-image:url(/flags/1x1/pl.svg)}.fi-pm{background-image:url(/flags/4x3/pm.svg)}.fi-pm.fis{background-image:url(/flags/1x1/pm.svg)}.fi-pn{background-image:url(/flags/4x3/pn.svg)}.fi-pn.fis{background-image:url(/flags/1x1/pn.svg)}.fi-pr{background-image:url(/flags/4x3/pr.svg)}.fi-pr.fis{background-image:url(/flags/1x1/pr.svg)}.fi-ps{background-image:url(/flags/4x3/ps.svg)}.fi-ps.fis{background-image:url(/flags/1x1/ps.svg)}.fi-pt{background-image:url(/flags/4x3/pt.svg)}.fi-pt.fis{background-image:url(/flags/1x1/pt.svg)}.fi-pw{background-image:url(/flags/4x3/pw.svg)}.fi-pw.fis{background-image:url(/flags/1x1/pw.svg)}.fi-py{background-image:url(/flags/4x3/py.svg)}.fi-py.fis{background-image:url(/flags/1x1/py.svg)}.fi-qa{background-image:url(/flags/4x3/qa.svg)}.fi-qa.fis{background-image:url(/flags/1x1/qa.svg)}.fi-re{background-image:url(/flags/4x3/re.svg)}.fi-re.fis{background-image:url(/flags/1x1/re.svg)}.fi-ro{background-image:url(/flags/4x3/ro.svg)}.fi-ro.fis{background-image:url(/flags/1x1/ro.svg)}.fi-rs{background-image:url(/flags/4x3/rs.svg)}.fi-rs.fis{background-image:url(/flags/1x1/rs.svg)}.fi-ru{background-image:url(/flags/4x3/ru.svg)}.fi-ru.fis{background-image:url(/flags/1x1/ru.svg)}.fi-rw{background-image:url(/flags/4x3/rw.svg)}.fi-rw.fis{background-image:url(/flags/1x1/rw.svg)}.fi-sa{background-image:url(/flags/4x3/sa.svg)}.fi-sa.fis{background-image:url(/flags/1x1/sa.svg)}.fi-sb{background-image:url(/flags/4x3/sb.svg)}.fi-sb.fis{background-image:url(/flags/1x1/sb.svg)}.fi-sc{background-image:url(/flags/4x3/sc.svg)}.fi-sc.fis{background-image:url(/flags/1x1/sc.svg)}.fi-sd{background-image:url(/flags/4x3/sd.svg)}.fi-sd.fis{background-image:url(/flags/1x1/sd.svg)}.fi-se{background-image:url(/flags/4x3/se.svg)}.fi-se.fis{background-image:url(/flags/1x1/se.svg)}.fi-sg{background-image:url(/flags/4x3/sg.svg)}.fi-sg.fis{background-image:url(/flags/1x1/sg.svg)}.fi-sh{background-image:url(/flags/4x3/sh.svg)}.fi-sh.fis{background-image:url(/flags/1x1/sh.svg)}.fi-si{background-image:url(/flags/4x3/si.svg)}.fi-si.fis{background-image:url(/flags/1x1/si.svg)}.fi-sj{background-image:url(/flags/4x3/sj.svg)}.fi-sj.fis{background-image:url(/flags/1x1/sj.svg)}.fi-sk{background-image:url(/flags/4x3/sk.svg)}.fi-sk.fis{background-image:url(/flags/1x1/sk.svg)}.fi-sl{background-image:url(/flags/4x3/sl.svg)}.fi-sl.fis{background-image:url(/flags/1x1/sl.svg)}.fi-sm{background-image:url(/flags/4x3/sm.svg)}.fi-sm.fis{background-image:url(/flags/1x1/sm.svg)}.fi-sn{background-image:url(/flags/4x3/sn.svg)}.fi-sn.fis{background-image:url(/flags/1x1/sn.svg)}.fi-so{background-image:url(/flags/4x3/so.svg)}.fi-so.fis{background-image:url(/flags/1x1/so.svg)}.fi-sr{background-image:url(/flags/4x3/sr.svg)}.fi-sr.fis{background-image:url(/flags/1x1/sr.svg)}.fi-ss{background-image:url(/flags/4x3/ss.svg)}.fi-ss.fis{background-image:url(/flags/1x1/ss.svg)}.fi-st{background-image:url(/flags/4x3/st.svg)}.fi-st.fis{background-image:url(/flags/1x1/st.svg)}.fi-sv{background-image:url(/flags/4x3/sv.svg)}.fi-sv.fis{background-image:url(/flags/1x1/sv.svg)}.fi-sx{background-image:url(/flags/4x3/sx.svg)}.fi-sx.fis{background-image:url(/flags/1x1/sx.svg)}.fi-sy{background-image:url(/flags/4x3/sy.svg)}.fi-sy.fis{background-image:url(/flags/1x1/sy.svg)}.fi-sz{background-image:url(/flags/4x3/sz.svg)}.fi-sz.fis{background-image:url(/flags/1x1/sz.svg)}.fi-tc{background-image:url(/flags/4x3/tc.svg)}.fi-tc.fis{background-image:url(/flags/1x1/tc.svg)}.fi-td{background-image:url(/flags/4x3/td.svg)}.fi-td.fis{background-image:url(/flags/1x1/td.svg)}.fi-tf{background-image:url(/flags/4x3/tf.svg)}.fi-tf.fis{background-image:url(/flags/1x1/tf.svg)}.fi-tg{background-image:url(/flags/4x3/tg.svg)}.fi-tg.fis{background-image:url(/flags/1x1/tg.svg)}.fi-th{background-image:url(/flags/4x3/th.svg)}.fi-th.fis{background-image:url(/flags/1x1/th.svg)}.fi-tj{background-image:url(/flags/4x3/tj.svg)}.fi-tj.fis{background-image:url(/flags/1x1/tj.svg)}.fi-tk{background-image:url(/flags/4x3/tk.svg)}.fi-tk.fis{background-image:url(/flags/1x1/tk.svg)}.fi-tl{background-image:url(/flags/4x3/tl.svg)}.fi-tl.fis{background-image:url(/flags/1x1/tl.svg)}.fi-tm{background-image:url(/flags/4x3/tm.svg)}.fi-tm.fis{background-image:url(/flags/1x1/tm.svg)}.fi-tn{background-image:url(/flags/4x3/tn.svg)}.fi-tn.fis{background-image:url(/flags/1x1/tn.svg)}.fi-to{background-image:url(/flags/4x3/to.svg)}.fi-to.fis{background-image:url(/flags/1x1/to.svg)}.fi-tr{background-image:url(/flags/4x3/tr.svg)}.fi-tr.fis{background-image:url(/flags/1x1/tr.svg)}.fi-tt{background-image:url(/flags/4x3/tt.svg)}.fi-tt.fis{background-image:url(/flags/1x1/tt.svg)}.fi-tv{background-image:url(/flags/4x3/tv.svg)}.fi-tv.fis{background-image:url(/flags/1x1/tv.svg)}.fi-tw{background-image:url(/flags/4x3/tw.svg)}.fi-tw.fis{background-image:url(/flags/1x1/tw.svg)}.fi-tz{background-image:url(/flags/4x3/tz.svg)}.fi-tz.fis{background-image:url(/flags/1x1/tz.svg)}.fi-ua{background-image:url(/flags/4x3/ua.svg)}.fi-ua.fis{background-image:url(/flags/1x1/ua.svg)}.fi-ug{background-image:url(/flags/4x3/ug.svg)}.fi-ug.fis{background-image:url(/flags/1x1/ug.svg)}.fi-um{background-image:url(/flags/4x3/um.svg)}.fi-um.fis{background-image:url(/flags/1x1/um.svg)}.fi-us{background-image:url(/flags/4x3/us.svg)}.fi-us.fis{background-image:url(/flags/1x1/us.svg)}.fi-uy{background-image:url(/flags/4x3/uy.svg)}.fi-uy.fis{background-image:url(/flags/1x1/uy.svg)}.fi-uz{background-image:url(/flags/4x3/uz.svg)}.fi-uz.fis{background-image:url(/flags/1x1/uz.svg)}.fi-va{background-image:url(/flags/4x3/va.svg)}.fi-va.fis{background-image:url(/flags/1x1/va.svg)}.fi-vc{background-image:url(/flags/4x3/vc.svg)}.fi-vc.fis{background-image:url(/flags/1x1/vc.svg)}.fi-ve{background-image:url(/flags/4x3/ve.svg)}.fi-ve.fis{background-image:url(/flags/1x1/ve.svg)}.fi-vg{background-image:url(/flags/4x3/vg.svg)}.fi-vg.fis{background-image:url(/flags/1x1/vg.svg)}.fi-vi{background-image:url(/flags/4x3/vi.svg)}.fi-vi.fis{background-image:url(/flags/1x1/vi.svg)}.fi-vn{background-image:url(/flags/4x3/vn.svg)}.fi-vn.fis{background-image:url(/flags/1x1/vn.svg)}.fi-vu{background-image:url(/flags/4x3/vu.svg)}.fi-vu.fis{background-image:url(/flags/1x1/vu.svg)}.fi-wf{background-image:url(/flags/4x3/wf.svg)}.fi-wf.fis{background-image:url(/flags/1x1/wf.svg)}.fi-ws{background-image:url(/flags/4x3/ws.svg)}.fi-ws.fis{background-image:url(/flags/1x1/ws.svg)}.fi-ye{background-image:url(/flags/4x3/ye.svg)}.fi-ye.fis{background-image:url(/flags/1x1/ye.svg)}.fi-yt{background-image:url(/flags/4x3/yt.svg)}.fi-yt.fis{background-image:url(/flags/1x1/yt.svg)}.fi-za{background-image:url(/flags/4x3/za.svg)}.fi-za.fis{background-image:url(/flags/1x1/za.svg)}.fi-zm{background-image:url(/flags/4x3/zm.svg)}.fi-zm.fis{background-image:url(/flags/1x1/zm.svg)}.fi-zw{background-image:url(/flags/4x3/zw.svg)}.fi-zw.fis{background-image:url(/flags/1x1/zw.svg)}.fi-ac{background-image:url(/flags/4x3/ac.svg)}.fi-ac.fis{background-image:url(/flags/1x1/ac.svg)}.fi-cefta{background-image:url(/flags/4x3/cefta.svg)}.fi-cefta.fis{background-image:url(/flags/1x1/cefta.svg)}.fi-cp{background-image:url(/flags/4x3/cp.svg)}.fi-cp.fis{background-image:url(/flags/1x1/cp.svg)}.fi-dg{background-image:url(/flags/4x3/dg.svg)}.fi-dg.fis{background-image:url(/flags/1x1/dg.svg)}.fi-ea{background-image:url(/flags/4x3/ea.svg)}.fi-ea.fis{background-image:url(/flags/1x1/ea.svg)}.fi-es-ct{background-image:url(/flags/4x3/es-ct.svg)}.fi-es-ct.fis{background-image:url(/flags/1x1/es-ct.svg)}.fi-es-ga{background-image:url(/flags/4x3/es-ga.svg)}.fi-es-ga.fis{background-image:url(/flags/1x1/es-ga.svg)}.fi-es-pv{background-image:url(/flags/4x3/es-pv.svg)}.fi-es-pv.fis{background-image:url(/flags/1x1/es-pv.svg)}.fi-eu{background-image:url(/flags/4x3/eu.svg)}.fi-eu.fis{background-image:url(/flags/1x1/eu.svg)}.fi-gb-eng{background-image:url(/flags/4x3/gb-eng.svg)}.fi-gb-eng.fis{background-image:url(/flags/1x1/gb-eng.svg)}.fi-gb-nir{background-image:url(/flags/4x3/gb-nir.svg)}.fi-gb-nir.fis{background-image:url(/flags/1x1/gb-nir.svg)}.fi-gb-sct{background-image:url(/flags/4x3/gb-sct.svg)}.fi-gb-sct.fis{background-image:url(/flags/1x1/gb-sct.svg)}.fi-gb-wls{background-image:url(/flags/4x3/gb-wls.svg)}.fi-gb-wls.fis{background-image:url(/flags/1x1/gb-wls.svg)}.fi-ic{background-image:url(/flags/4x3/ic.svg)}.fi-ic.fis{background-image:url(/flags/1x1/ic.svg)}.fi-ta{background-image:url(/flags/4x3/ta.svg)}.fi-ta.fis{background-image:url(/flags/1x1/ta.svg)}.fi-un{background-image:url(/flags/4x3/un.svg)}.fi-un.fis{background-image:url(/flags/1x1/un.svg)}.fi-xk{background-image:url(/flags/4x3/xk.svg)}.fi-xk.fis{background-image:url(/flags/1x1/xk.svg)} \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ac.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ac.svg new file mode 100644 index 0000000..3840caf --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ac.svg @@ -0,0 +1,76 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ad.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ad.svg new file mode 100644 index 0000000..f1d7fde --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ad.svg @@ -0,0 +1,148 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ae.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ae.svg new file mode 100644 index 0000000..058c16e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ae.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/af.svg b/themes/hello-friend-ng-clone/static/flags/1x1/af.svg new file mode 100644 index 0000000..04d064a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/af.svg @@ -0,0 +1,81 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ag.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ag.svg new file mode 100644 index 0000000..59d73ff --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ag.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ai.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ai.svg new file mode 100644 index 0000000..a82f26e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ai.svg @@ -0,0 +1,758 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/al.svg b/themes/hello-friend-ng-clone/static/flags/1x1/al.svg new file mode 100644 index 0000000..d4c6d5d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/al.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/am.svg b/themes/hello-friend-ng-clone/static/flags/1x1/am.svg new file mode 100644 index 0000000..a188adf --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/am.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ao.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ao.svg new file mode 100644 index 0000000..ba77036 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ao.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/aq.svg b/themes/hello-friend-ng-clone/static/flags/1x1/aq.svg new file mode 100644 index 0000000..a4d9a20 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/aq.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ar.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ar.svg new file mode 100644 index 0000000..1db3825 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ar.svg @@ -0,0 +1,32 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/as.svg b/themes/hello-friend-ng-clone/static/flags/1x1/as.svg new file mode 100644 index 0000000..3c9c8b5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/as.svg @@ -0,0 +1,73 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/at.svg b/themes/hello-friend-ng-clone/static/flags/1x1/at.svg new file mode 100644 index 0000000..4736319 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/at.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/au.svg b/themes/hello-friend-ng-clone/static/flags/1x1/au.svg new file mode 100644 index 0000000..d0465a2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/au.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/aw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/aw.svg new file mode 100644 index 0000000..6445b66 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/aw.svg @@ -0,0 +1,186 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ax.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ax.svg new file mode 100644 index 0000000..43cd591 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ax.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/az.svg b/themes/hello-friend-ng-clone/static/flags/1x1/az.svg new file mode 100644 index 0000000..eedd9e6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/az.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ba.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ba.svg new file mode 100644 index 0000000..28184da --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ba.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bb.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bb.svg new file mode 100644 index 0000000..026bb0a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bb.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bd.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bd.svg new file mode 100644 index 0000000..86fcfba --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bd.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/be.svg b/themes/hello-friend-ng-clone/static/flags/1x1/be.svg new file mode 100644 index 0000000..31b9723 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/be.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bf.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bf.svg new file mode 100644 index 0000000..a5078df --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bf.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bg.svg new file mode 100644 index 0000000..16fe7e0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bg.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bh.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bh.svg new file mode 100644 index 0000000..2d131aa --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bh.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bi.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bi.svg new file mode 100644 index 0000000..db5df38 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bi.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bj.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bj.svg new file mode 100644 index 0000000..34c30b1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bj.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bl.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bl.svg new file mode 100644 index 0000000..65550d9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bl.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bm.svg new file mode 100644 index 0000000..0dca49b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bm.svg @@ -0,0 +1,97 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bn.svg new file mode 100644 index 0000000..afad727 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bn.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bo.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bo.svg new file mode 100644 index 0000000..5f1311a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bo.svg @@ -0,0 +1,678 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bq.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bq.svg new file mode 100644 index 0000000..4b9168e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bq.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/br.svg b/themes/hello-friend-ng-clone/static/flags/1x1/br.svg new file mode 100644 index 0000000..6c854ac --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/br.svg @@ -0,0 +1,45 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bs.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bs.svg new file mode 100644 index 0000000..6914138 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bs.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bt.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bt.svg new file mode 100644 index 0000000..0a9dfeb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bt.svg @@ -0,0 +1,89 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bv.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bv.svg new file mode 100644 index 0000000..36fefad --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bv.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bw.svg new file mode 100644 index 0000000..d276018 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bw.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/by.svg b/themes/hello-friend-ng-clone/static/flags/1x1/by.svg new file mode 100644 index 0000000..9fd7121 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/by.svg @@ -0,0 +1,22 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/bz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/bz.svg new file mode 100644 index 0000000..48bd0b0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/bz.svg @@ -0,0 +1,145 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ca.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ca.svg new file mode 100644 index 0000000..84cde34 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ca.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cc.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cc.svg new file mode 100644 index 0000000..d107bdc --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cc.svg @@ -0,0 +1,19 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cd.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cd.svg new file mode 100644 index 0000000..4c804d8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cd.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cefta.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cefta.svg new file mode 100644 index 0000000..1fcc0aa --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cefta.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cf.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cf.svg new file mode 100644 index 0000000..667fc93 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cf.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cg.svg new file mode 100644 index 0000000..df4e316 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cg.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ch.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ch.svg new file mode 100644 index 0000000..52578bf --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ch.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ci.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ci.svg new file mode 100644 index 0000000..2abf641 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ci.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ck.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ck.svg new file mode 100644 index 0000000..43a1057 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ck.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cl.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cl.svg new file mode 100644 index 0000000..7cc494d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cl.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cm.svg new file mode 100644 index 0000000..9233b92 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cm.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cn.svg new file mode 100644 index 0000000..7f27dae --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cn.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/co.svg b/themes/hello-friend-ng-clone/static/flags/1x1/co.svg new file mode 100644 index 0000000..5804bfe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/co.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cp.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cp.svg new file mode 100644 index 0000000..c3157fb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cp.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cr.svg new file mode 100644 index 0000000..4e7889e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cr.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cu.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cu.svg new file mode 100644 index 0000000..f1f90d8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cu.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cv.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cv.svg new file mode 100644 index 0000000..cb8b597 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cv.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cw.svg new file mode 100644 index 0000000..88fddec --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cw.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cx.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cx.svg new file mode 100644 index 0000000..44d3757 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cx.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cy.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cy.svg new file mode 100644 index 0000000..58d87e7 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cy.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/cz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/cz.svg new file mode 100644 index 0000000..dcd0a6b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/cz.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/de.svg b/themes/hello-friend-ng-clone/static/flags/1x1/de.svg new file mode 100644 index 0000000..ccb5ff1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/de.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/dg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/dg.svg new file mode 100644 index 0000000..7ab4111 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/dg.svg @@ -0,0 +1,130 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/dj.svg b/themes/hello-friend-ng-clone/static/flags/1x1/dj.svg new file mode 100644 index 0000000..9530b06 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/dj.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/dk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/dk.svg new file mode 100644 index 0000000..5aaaa19 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/dk.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/dm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/dm.svg new file mode 100644 index 0000000..0bcf5b2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/dm.svg @@ -0,0 +1,152 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/do.svg b/themes/hello-friend-ng-clone/static/flags/1x1/do.svg new file mode 100644 index 0000000..76dd8e4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/do.svg @@ -0,0 +1,128 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/dz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/dz.svg new file mode 100644 index 0000000..8abcd25 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/dz.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ea.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ea.svg new file mode 100644 index 0000000..bab6a69 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ea.svg @@ -0,0 +1,547 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ec.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ec.svg new file mode 100644 index 0000000..06495b9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ec.svg @@ -0,0 +1,138 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ee.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ee.svg new file mode 100644 index 0000000..a921ce4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ee.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/eg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/eg.svg new file mode 100644 index 0000000..900abc6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/eg.svg @@ -0,0 +1,38 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/eh.svg b/themes/hello-friend-ng-clone/static/flags/1x1/eh.svg new file mode 100644 index 0000000..0f9d3c2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/eh.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/er.svg b/themes/hello-friend-ng-clone/static/flags/1x1/er.svg new file mode 100644 index 0000000..8f04e39 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/er.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/es-ct.svg b/themes/hello-friend-ng-clone/static/flags/1x1/es-ct.svg new file mode 100644 index 0000000..a06a2e3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/es-ct.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/es-ga.svg b/themes/hello-friend-ng-clone/static/flags/1x1/es-ga.svg new file mode 100644 index 0000000..bb1abbb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/es-ga.svg @@ -0,0 +1,187 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/es-pv.svg b/themes/hello-friend-ng-clone/static/flags/1x1/es-pv.svg new file mode 100644 index 0000000..4a83268 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/es-pv.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/es.svg b/themes/hello-friend-ng-clone/static/flags/1x1/es.svg new file mode 100644 index 0000000..f9c9b4b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/es.svg @@ -0,0 +1,547 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/et.svg b/themes/hello-friend-ng-clone/static/flags/1x1/et.svg new file mode 100644 index 0000000..0c62956 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/et.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/eu.svg b/themes/hello-friend-ng-clone/static/flags/1x1/eu.svg new file mode 100644 index 0000000..f992981 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/eu.svg @@ -0,0 +1,28 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/fi.svg b/themes/hello-friend-ng-clone/static/flags/1x1/fi.svg new file mode 100644 index 0000000..aba2ef3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/fi.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/fj.svg b/themes/hello-friend-ng-clone/static/flags/1x1/fj.svg new file mode 100644 index 0000000..e2ca5b4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/fj.svg @@ -0,0 +1,123 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/fk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/fk.svg new file mode 100644 index 0000000..1156f36 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/fk.svg @@ -0,0 +1,89 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/fm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/fm.svg new file mode 100644 index 0000000..4077f47 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/fm.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/fo.svg b/themes/hello-friend-ng-clone/static/flags/1x1/fo.svg new file mode 100644 index 0000000..2a2b065 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/fo.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/fr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/fr.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/fr.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ga.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ga.svg new file mode 100644 index 0000000..113a5b5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ga.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gb-eng.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gb-eng.svg new file mode 100644 index 0000000..ee48fed --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gb-eng.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gb-nir.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gb-nir.svg new file mode 100644 index 0000000..c4d2a85 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gb-nir.svg @@ -0,0 +1,131 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gb-sct.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gb-sct.svg new file mode 100644 index 0000000..44d38cc --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gb-sct.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gb-wls.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gb-wls.svg new file mode 100644 index 0000000..3126882 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gb-wls.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gb.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gb.svg new file mode 100644 index 0000000..b261273 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gb.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gd.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gd.svg new file mode 100644 index 0000000..97d87f4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gd.svg @@ -0,0 +1,27 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ge.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ge.svg new file mode 100644 index 0000000..a1c3808 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ge.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gf.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gf.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gf.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gg.svg new file mode 100644 index 0000000..23aca9e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gg.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gh.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gh.svg new file mode 100644 index 0000000..84f4bab --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gh.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gi.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gi.svg new file mode 100644 index 0000000..ded225d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gi.svg @@ -0,0 +1,32 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gl.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gl.svg new file mode 100644 index 0000000..eaa817b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gl.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gm.svg new file mode 100644 index 0000000..2a8f724 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gm.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gn.svg new file mode 100644 index 0000000..ae81f9d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gn.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gp.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gp.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gp.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gq.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gq.svg new file mode 100644 index 0000000..3fb086e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gq.svg @@ -0,0 +1,23 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gr.svg new file mode 100644 index 0000000..a268830 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gr.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gs.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gs.svg new file mode 100644 index 0000000..791bf01 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gs.svg @@ -0,0 +1,132 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gt.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gt.svg new file mode 100644 index 0000000..790f9a1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gt.svg @@ -0,0 +1,220 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gu.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gu.svg new file mode 100644 index 0000000..316edc8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gu.svg @@ -0,0 +1,23 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gw.svg new file mode 100644 index 0000000..cae163d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gw.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/gy.svg b/themes/hello-friend-ng-clone/static/flags/1x1/gy.svg new file mode 100644 index 0000000..8188c44 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/gy.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/hk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/hk.svg new file mode 100644 index 0000000..bf81198 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/hk.svg @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/hm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/hm.svg new file mode 100644 index 0000000..51e236a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/hm.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/hn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/hn.svg new file mode 100644 index 0000000..432ead6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/hn.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/hr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/hr.svg new file mode 100644 index 0000000..8e98781 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/hr.svg @@ -0,0 +1,56 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ht.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ht.svg new file mode 100644 index 0000000..965dd03 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ht.svg @@ -0,0 +1,116 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/hu.svg b/themes/hello-friend-ng-clone/static/flags/1x1/hu.svg new file mode 100644 index 0000000..088242d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/hu.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ic.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ic.svg new file mode 100644 index 0000000..096603d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ic.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/id.svg b/themes/hello-friend-ng-clone/static/flags/1x1/id.svg new file mode 100644 index 0000000..df08018 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/id.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ie.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ie.svg new file mode 100644 index 0000000..e13de22 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ie.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/il.svg b/themes/hello-friend-ng-clone/static/flags/1x1/il.svg new file mode 100644 index 0000000..9c19148 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/il.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/im.svg b/themes/hello-friend-ng-clone/static/flags/1x1/im.svg new file mode 100644 index 0000000..af18aa4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/im.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/in.svg b/themes/hello-friend-ng-clone/static/flags/1x1/in.svg new file mode 100644 index 0000000..7b79eeb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/in.svg @@ -0,0 +1,25 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/io.svg b/themes/hello-friend-ng-clone/static/flags/1x1/io.svg new file mode 100644 index 0000000..8087c89 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/io.svg @@ -0,0 +1,130 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/iq.svg b/themes/hello-friend-ng-clone/static/flags/1x1/iq.svg new file mode 100644 index 0000000..f009ae2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/iq.svg @@ -0,0 +1,10 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ir.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ir.svg new file mode 100644 index 0000000..45f6eec --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ir.svg @@ -0,0 +1,219 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/is.svg b/themes/hello-friend-ng-clone/static/flags/1x1/is.svg new file mode 100644 index 0000000..7b79052 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/is.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/it.svg b/themes/hello-friend-ng-clone/static/flags/1x1/it.svg new file mode 100644 index 0000000..b9596d0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/it.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/je.svg b/themes/hello-friend-ng-clone/static/flags/1x1/je.svg new file mode 100644 index 0000000..de73a00 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/je.svg @@ -0,0 +1,44 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/jm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/jm.svg new file mode 100644 index 0000000..e2c0e54 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/jm.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/jo.svg b/themes/hello-friend-ng-clone/static/flags/1x1/jo.svg new file mode 100644 index 0000000..43888cb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/jo.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/jp.svg b/themes/hello-friend-ng-clone/static/flags/1x1/jp.svg new file mode 100644 index 0000000..c3aeaa6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/jp.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ke.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ke.svg new file mode 100644 index 0000000..ad76b35 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ke.svg @@ -0,0 +1,23 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/kg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/kg.svg new file mode 100644 index 0000000..ab37474 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/kg.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/kh.svg b/themes/hello-friend-ng-clone/static/flags/1x1/kh.svg new file mode 100644 index 0000000..adda387 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/kh.svg @@ -0,0 +1,61 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ki.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ki.svg new file mode 100644 index 0000000..58586c0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ki.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/km.svg b/themes/hello-friend-ng-clone/static/flags/1x1/km.svg new file mode 100644 index 0000000..3831b1d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/km.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/kn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/kn.svg new file mode 100644 index 0000000..24dec7e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/kn.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/kp.svg b/themes/hello-friend-ng-clone/static/flags/1x1/kp.svg new file mode 100644 index 0000000..16f7ac2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/kp.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/kr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/kr.svg new file mode 100644 index 0000000..ca75181 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/kr.svg @@ -0,0 +1,17 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/kw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/kw.svg new file mode 100644 index 0000000..f9d34d0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/kw.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ky.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ky.svg new file mode 100644 index 0000000..4c99478 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ky.svg @@ -0,0 +1,109 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/kz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/kz.svg new file mode 100644 index 0000000..40db501 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/kz.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/la.svg b/themes/hello-friend-ng-clone/static/flags/1x1/la.svg new file mode 100644 index 0000000..7fcf263 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/la.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/lb.svg b/themes/hello-friend-ng-clone/static/flags/1x1/lb.svg new file mode 100644 index 0000000..6cbf329 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/lb.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/lc.svg b/themes/hello-friend-ng-clone/static/flags/1x1/lc.svg new file mode 100644 index 0000000..d39c7f6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/lc.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/li.svg b/themes/hello-friend-ng-clone/static/flags/1x1/li.svg new file mode 100644 index 0000000..260c8f6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/li.svg @@ -0,0 +1,43 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/lk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/lk.svg new file mode 100644 index 0000000..3fc4f4d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/lk.svg @@ -0,0 +1,22 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/lr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/lr.svg new file mode 100644 index 0000000..03ebae5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/lr.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ls.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ls.svg new file mode 100644 index 0000000..aa8810b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ls.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/lt.svg b/themes/hello-friend-ng-clone/static/flags/1x1/lt.svg new file mode 100644 index 0000000..52ada94 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/lt.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/lu.svg b/themes/hello-friend-ng-clone/static/flags/1x1/lu.svg new file mode 100644 index 0000000..5c0d6da --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/lu.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/lv.svg b/themes/hello-friend-ng-clone/static/flags/1x1/lv.svg new file mode 100644 index 0000000..5af883c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/lv.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ly.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ly.svg new file mode 100644 index 0000000..5ff903a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ly.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ma.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ma.svg new file mode 100644 index 0000000..8041667 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ma.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mc.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mc.svg new file mode 100644 index 0000000..04173a4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mc.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/md.svg b/themes/hello-friend-ng-clone/static/flags/1x1/md.svg new file mode 100644 index 0000000..8720921 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/md.svg @@ -0,0 +1,71 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/me.svg b/themes/hello-friend-ng-clone/static/flags/1x1/me.svg new file mode 100644 index 0000000..fbd8b86 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/me.svg @@ -0,0 +1,118 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mf.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mf.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mf.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mg.svg new file mode 100644 index 0000000..4f901ca --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mg.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mh.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mh.svg new file mode 100644 index 0000000..8ff2256 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mh.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mk.svg new file mode 100644 index 0000000..0ee923a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mk.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ml.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ml.svg new file mode 100644 index 0000000..665d6b2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ml.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mm.svg new file mode 100644 index 0000000..9b235f3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mm.svg @@ -0,0 +1,10 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mn.svg new file mode 100644 index 0000000..c9d6104 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mn.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mo.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mo.svg new file mode 100644 index 0000000..f79bf12 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mo.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mp.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mp.svg new file mode 100644 index 0000000..6fef8fd --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mp.svg @@ -0,0 +1,86 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mq.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mq.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mq.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mr.svg new file mode 100644 index 0000000..a98ec2a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mr.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ms.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ms.svg new file mode 100644 index 0000000..ba504db --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ms.svg @@ -0,0 +1,25 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mt.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mt.svg new file mode 100644 index 0000000..a9f58e1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mt.svg @@ -0,0 +1,50 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mu.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mu.svg new file mode 100644 index 0000000..2afe1d3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mu.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mv.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mv.svg new file mode 100644 index 0000000..c9a6c5b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mv.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mw.svg new file mode 100644 index 0000000..5de0311 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mw.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mx.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mx.svg new file mode 100644 index 0000000..4b0c5d4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mx.svg @@ -0,0 +1,378 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/my.svg b/themes/hello-friend-ng-clone/static/flags/1x1/my.svg new file mode 100644 index 0000000..14f4d43 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/my.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/mz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/mz.svg new file mode 100644 index 0000000..cceb0de --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/mz.svg @@ -0,0 +1,21 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/na.svg b/themes/hello-friend-ng-clone/static/flags/1x1/na.svg new file mode 100644 index 0000000..5cb08a3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/na.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/nc.svg b/themes/hello-friend-ng-clone/static/flags/1x1/nc.svg new file mode 100644 index 0000000..7063a99 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/nc.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ne.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ne.svg new file mode 100644 index 0000000..a96b027 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ne.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/nf.svg b/themes/hello-friend-ng-clone/static/flags/1x1/nf.svg new file mode 100644 index 0000000..e47b4cd --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/nf.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ng.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ng.svg new file mode 100644 index 0000000..62813e8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ng.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ni.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ni.svg new file mode 100644 index 0000000..265a71c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ni.svg @@ -0,0 +1,129 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/nl.svg b/themes/hello-friend-ng-clone/static/flags/1x1/nl.svg new file mode 100644 index 0000000..eb0e360 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/nl.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/no.svg b/themes/hello-friend-ng-clone/static/flags/1x1/no.svg new file mode 100644 index 0000000..939920d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/no.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/np.svg b/themes/hello-friend-ng-clone/static/flags/1x1/np.svg new file mode 100644 index 0000000..67af928 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/np.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/nr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/nr.svg new file mode 100644 index 0000000..d506071 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/nr.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/nu.svg b/themes/hello-friend-ng-clone/static/flags/1x1/nu.svg new file mode 100644 index 0000000..ce31672 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/nu.svg @@ -0,0 +1,10 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/nz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/nz.svg new file mode 100644 index 0000000..e61ed29 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/nz.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/om.svg b/themes/hello-friend-ng-clone/static/flags/1x1/om.svg new file mode 100644 index 0000000..ff624ae --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/om.svg @@ -0,0 +1,115 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pa.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pa.svg new file mode 100644 index 0000000..2c53cdd --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pa.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pe.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pe.svg new file mode 100644 index 0000000..bbb8f78 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pe.svg @@ -0,0 +1,244 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pf.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pf.svg new file mode 100644 index 0000000..2aff155 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pf.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pg.svg new file mode 100644 index 0000000..63dff19 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pg.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ph.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ph.svg new file mode 100644 index 0000000..fee5308 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ph.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pk.svg new file mode 100644 index 0000000..7a12a49 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pk.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pl.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pl.svg new file mode 100644 index 0000000..8c43577 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pl.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pm.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pm.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pn.svg new file mode 100644 index 0000000..a546e21 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pn.svg @@ -0,0 +1,53 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pr.svg new file mode 100644 index 0000000..29cc0ed --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pr.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ps.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ps.svg new file mode 100644 index 0000000..a4ab807 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ps.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pt.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pt.svg new file mode 100644 index 0000000..43cdb97 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pt.svg @@ -0,0 +1,57 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/pw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/pw.svg new file mode 100644 index 0000000..439a583 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/pw.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/py.svg b/themes/hello-friend-ng-clone/static/flags/1x1/py.svg new file mode 100644 index 0000000..86ec718 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/py.svg @@ -0,0 +1,156 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/qa.svg b/themes/hello-friend-ng-clone/static/flags/1x1/qa.svg new file mode 100644 index 0000000..4edb827 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/qa.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/re.svg b/themes/hello-friend-ng-clone/static/flags/1x1/re.svg new file mode 100644 index 0000000..41d87d9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/re.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ro.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ro.svg new file mode 100644 index 0000000..e6cf0f6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ro.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/rs.svg b/themes/hello-friend-ng-clone/static/flags/1x1/rs.svg new file mode 100644 index 0000000..c87e41b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/rs.svg @@ -0,0 +1,296 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ru.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ru.svg new file mode 100644 index 0000000..485c24e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ru.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/rw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/rw.svg new file mode 100644 index 0000000..55c48e6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/rw.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sa.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sa.svg new file mode 100644 index 0000000..7e3cf8e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sa.svg @@ -0,0 +1,26 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sb.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sb.svg new file mode 100644 index 0000000..5bea33d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sb.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sc.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sc.svg new file mode 100644 index 0000000..2996bac --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sc.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sd.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sd.svg new file mode 100644 index 0000000..c2de460 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sd.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/se.svg b/themes/hello-friend-ng-clone/static/flags/1x1/se.svg new file mode 100644 index 0000000..bae316d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/se.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sg.svg new file mode 100644 index 0000000..5c60b94 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sg.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sh.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sh.svg new file mode 100644 index 0000000..4285db8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sh.svg @@ -0,0 +1,76 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/si.svg b/themes/hello-friend-ng-clone/static/flags/1x1/si.svg new file mode 100644 index 0000000..3beab9b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/si.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sj.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sj.svg new file mode 100644 index 0000000..ecb9c79 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sj.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sk.svg new file mode 100644 index 0000000..3e4ff50 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sk.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sl.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sl.svg new file mode 100644 index 0000000..7eda1e8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sl.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sm.svg new file mode 100644 index 0000000..fec66d8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sm.svg @@ -0,0 +1,73 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sn.svg new file mode 100644 index 0000000..ff9cf2e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sn.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/so.svg b/themes/hello-friend-ng-clone/static/flags/1x1/so.svg new file mode 100644 index 0000000..39cf47b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/so.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sr.svg new file mode 100644 index 0000000..0ca3596 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sr.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ss.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ss.svg new file mode 100644 index 0000000..e950241 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ss.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/st.svg b/themes/hello-friend-ng-clone/static/flags/1x1/st.svg new file mode 100644 index 0000000..6c834b3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/st.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sv.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sv.svg new file mode 100644 index 0000000..95f1da0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sv.svg @@ -0,0 +1,594 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sx.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sx.svg new file mode 100644 index 0000000..4b6ec4b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sx.svg @@ -0,0 +1,56 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sy.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sy.svg new file mode 100644 index 0000000..b910dd8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sy.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/sz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/sz.svg new file mode 100644 index 0000000..2f19ee1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/sz.svg @@ -0,0 +1,34 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ta.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ta.svg new file mode 100644 index 0000000..ce1542d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ta.svg @@ -0,0 +1,76 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tc.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tc.svg new file mode 100644 index 0000000..c3caf3f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tc.svg @@ -0,0 +1,50 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/td.svg b/themes/hello-friend-ng-clone/static/flags/1x1/td.svg new file mode 100644 index 0000000..9bb0ce6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/td.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tf.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tf.svg new file mode 100644 index 0000000..8d85a2b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tf.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tg.svg new file mode 100644 index 0000000..96dc042 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tg.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/th.svg b/themes/hello-friend-ng-clone/static/flags/1x1/th.svg new file mode 100644 index 0000000..35141d3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/th.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tj.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tj.svg new file mode 100644 index 0000000..93bb4a8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tj.svg @@ -0,0 +1,26 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tk.svg new file mode 100644 index 0000000..e9f5b42 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tk.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tl.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tl.svg new file mode 100644 index 0000000..09b7ed1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tl.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tm.svg new file mode 100644 index 0000000..0ad764a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tm.svg @@ -0,0 +1,202 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tn.svg new file mode 100644 index 0000000..b1164b9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tn.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/to.svg b/themes/hello-friend-ng-clone/static/flags/1x1/to.svg new file mode 100644 index 0000000..3f1b600 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/to.svg @@ -0,0 +1,10 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tr.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tr.svg new file mode 100644 index 0000000..9a882a2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tr.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tt.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tt.svg new file mode 100644 index 0000000..8413969 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tt.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tv.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tv.svg new file mode 100644 index 0000000..098b916 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tv.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tw.svg new file mode 100644 index 0000000..067edaa --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tw.svg @@ -0,0 +1,32 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/tz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/tz.svg new file mode 100644 index 0000000..dfb0233 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/tz.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ua.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ua.svg new file mode 100644 index 0000000..7ceb894 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ua.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ug.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ug.svg new file mode 100644 index 0000000..3acd558 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ug.svg @@ -0,0 +1,30 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/um.svg b/themes/hello-friend-ng-clone/static/flags/1x1/um.svg new file mode 100644 index 0000000..8fda3e9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/um.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/un.svg b/themes/hello-friend-ng-clone/static/flags/1x1/un.svg new file mode 100644 index 0000000..258cb01 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/un.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/us.svg b/themes/hello-friend-ng-clone/static/flags/1x1/us.svg new file mode 100644 index 0000000..28f56d5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/us.svg @@ -0,0 +1,9 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/uy.svg b/themes/hello-friend-ng-clone/static/flags/1x1/uy.svg new file mode 100644 index 0000000..f4a502f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/uy.svg @@ -0,0 +1,28 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/uz.svg b/themes/hello-friend-ng-clone/static/flags/1x1/uz.svg new file mode 100644 index 0000000..48d62e3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/uz.svg @@ -0,0 +1,30 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/va.svg b/themes/hello-friend-ng-clone/static/flags/1x1/va.svg new file mode 100644 index 0000000..5c8e878 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/va.svg @@ -0,0 +1,479 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/vc.svg b/themes/hello-friend-ng-clone/static/flags/1x1/vc.svg new file mode 100644 index 0000000..f347db9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/vc.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ve.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ve.svg new file mode 100644 index 0000000..2d02c6a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ve.svg @@ -0,0 +1,26 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/vg.svg b/themes/hello-friend-ng-clone/static/flags/1x1/vg.svg new file mode 100644 index 0000000..7a3bbab --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/vg.svg @@ -0,0 +1,63 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/vi.svg b/themes/hello-friend-ng-clone/static/flags/1x1/vi.svg new file mode 100644 index 0000000..114995e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/vi.svg @@ -0,0 +1,28 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/vn.svg b/themes/hello-friend-ng-clone/static/flags/1x1/vn.svg new file mode 100644 index 0000000..865d264 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/vn.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/vu.svg b/themes/hello-friend-ng-clone/static/flags/1x1/vu.svg new file mode 100644 index 0000000..09add70 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/vu.svg @@ -0,0 +1,21 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/wf.svg b/themes/hello-friend-ng-clone/static/flags/1x1/wf.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/wf.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ws.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ws.svg new file mode 100644 index 0000000..ab08fdb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ws.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/xk.svg b/themes/hello-friend-ng-clone/static/flags/1x1/xk.svg new file mode 100644 index 0000000..1e43b95 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/xk.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/xx.svg b/themes/hello-friend-ng-clone/static/flags/1x1/xx.svg new file mode 100644 index 0000000..ccf6c1f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/xx.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/ye.svg b/themes/hello-friend-ng-clone/static/flags/1x1/ye.svg new file mode 100644 index 0000000..4cac4a8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/ye.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/yt.svg b/themes/hello-friend-ng-clone/static/flags/1x1/yt.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/yt.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/za.svg b/themes/hello-friend-ng-clone/static/flags/1x1/za.svg new file mode 100644 index 0000000..7bbe274 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/za.svg @@ -0,0 +1,17 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/zm.svg b/themes/hello-friend-ng-clone/static/flags/1x1/zm.svg new file mode 100644 index 0000000..9506601 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/zm.svg @@ -0,0 +1,27 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/1x1/zw.svg b/themes/hello-friend-ng-clone/static/flags/1x1/zw.svg new file mode 100644 index 0000000..1533a81 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/1x1/zw.svg @@ -0,0 +1,21 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ac.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ac.svg new file mode 100644 index 0000000..1a6d508 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ac.svg @@ -0,0 +1,76 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ad.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ad.svg new file mode 100644 index 0000000..726f981 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ad.svg @@ -0,0 +1,150 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ae.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ae.svg new file mode 100644 index 0000000..b7acdbd --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ae.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/af.svg b/themes/hello-friend-ng-clone/static/flags/4x3/af.svg new file mode 100644 index 0000000..6e75539 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/af.svg @@ -0,0 +1,81 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ag.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ag.svg new file mode 100644 index 0000000..875f975 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ag.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ai.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ai.svg new file mode 100644 index 0000000..cf91b39 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ai.svg @@ -0,0 +1,758 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/al.svg b/themes/hello-friend-ng-clone/static/flags/4x3/al.svg new file mode 100644 index 0000000..4e7098f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/al.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/am.svg b/themes/hello-friend-ng-clone/static/flags/4x3/am.svg new file mode 100644 index 0000000..99fa4dc --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/am.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ao.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ao.svg new file mode 100644 index 0000000..4dc39f6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ao.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/aq.svg b/themes/hello-friend-ng-clone/static/flags/4x3/aq.svg new file mode 100644 index 0000000..53840cc --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/aq.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ar.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ar.svg new file mode 100644 index 0000000..d1810f2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ar.svg @@ -0,0 +1,32 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/as.svg b/themes/hello-friend-ng-clone/static/flags/4x3/as.svg new file mode 100644 index 0000000..88e2ca5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/as.svg @@ -0,0 +1,72 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/at.svg b/themes/hello-friend-ng-clone/static/flags/4x3/at.svg new file mode 100644 index 0000000..c282508 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/at.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/au.svg b/themes/hello-friend-ng-clone/static/flags/4x3/au.svg new file mode 100644 index 0000000..407fef4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/au.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/aw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/aw.svg new file mode 100644 index 0000000..e840233 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/aw.svg @@ -0,0 +1,186 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ax.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ax.svg new file mode 100644 index 0000000..9f04648 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ax.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/az.svg b/themes/hello-friend-ng-clone/static/flags/4x3/az.svg new file mode 100644 index 0000000..8e56ef5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/az.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ba.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ba.svg new file mode 100644 index 0000000..7c30421 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ba.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bb.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bb.svg new file mode 100644 index 0000000..420a688 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bb.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bd.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bd.svg new file mode 100644 index 0000000..16b794d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bd.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/be.svg b/themes/hello-friend-ng-clone/static/flags/4x3/be.svg new file mode 100644 index 0000000..327f28f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/be.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bf.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bf.svg new file mode 100644 index 0000000..4713822 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bf.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bg.svg new file mode 100644 index 0000000..b100dd0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bg.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bh.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bh.svg new file mode 100644 index 0000000..7a2ea54 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bh.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bi.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bi.svg new file mode 100644 index 0000000..a37bc67 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bi.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bj.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bj.svg new file mode 100644 index 0000000..871c57e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bj.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bl.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bl.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bl.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bm.svg new file mode 100644 index 0000000..330d5ec --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bm.svg @@ -0,0 +1,97 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bn.svg new file mode 100644 index 0000000..19f15fa --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bn.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bo.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bo.svg new file mode 100644 index 0000000..391e226 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bo.svg @@ -0,0 +1,676 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bq.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bq.svg new file mode 100644 index 0000000..0e6bc76 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bq.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/br.svg b/themes/hello-friend-ng-clone/static/flags/4x3/br.svg new file mode 100644 index 0000000..354a701 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/br.svg @@ -0,0 +1,45 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bs.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bs.svg new file mode 100644 index 0000000..b26d476 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bs.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bt.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bt.svg new file mode 100644 index 0000000..cea6006 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bt.svg @@ -0,0 +1,89 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bv.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bv.svg new file mode 100644 index 0000000..86431fc --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bv.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bw.svg new file mode 100644 index 0000000..a1c8db0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bw.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/by.svg b/themes/hello-friend-ng-clone/static/flags/4x3/by.svg new file mode 100644 index 0000000..20ae52b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/by.svg @@ -0,0 +1,20 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/bz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/bz.svg new file mode 100644 index 0000000..fbc6d7c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/bz.svg @@ -0,0 +1,145 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ca.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ca.svg new file mode 100644 index 0000000..f1b2c96 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ca.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cc.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cc.svg new file mode 100644 index 0000000..c4457de --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cc.svg @@ -0,0 +1,19 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cd.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cd.svg new file mode 100644 index 0000000..e106ddd --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cd.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cefta.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cefta.svg new file mode 100644 index 0000000..d66e18b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cefta.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cf.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cf.svg new file mode 100644 index 0000000..fd30063 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cf.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cg.svg new file mode 100644 index 0000000..a290234 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cg.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ch.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ch.svg new file mode 100644 index 0000000..b42d670 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ch.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ci.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ci.svg new file mode 100644 index 0000000..e400f0c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ci.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ck.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ck.svg new file mode 100644 index 0000000..18e547b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ck.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cl.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cl.svg new file mode 100644 index 0000000..50218c8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cl.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cm.svg new file mode 100644 index 0000000..d06f656 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cm.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cn.svg new file mode 100644 index 0000000..2416236 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cn.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/co.svg b/themes/hello-friend-ng-clone/static/flags/4x3/co.svg new file mode 100644 index 0000000..ebd0a0f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/co.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cp.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cp.svg new file mode 100644 index 0000000..b3efb07 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cp.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cr.svg new file mode 100644 index 0000000..5a409ee --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cr.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cu.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cu.svg new file mode 100644 index 0000000..528ebac --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cu.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cv.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cv.svg new file mode 100644 index 0000000..381985a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cv.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cw.svg new file mode 100644 index 0000000..4294b5b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cw.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cx.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cx.svg new file mode 100644 index 0000000..39fa9b0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cx.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cy.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cy.svg new file mode 100644 index 0000000..b72473a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cy.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/cz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/cz.svg new file mode 100644 index 0000000..7913de3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/cz.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/de.svg b/themes/hello-friend-ng-clone/static/flags/4x3/de.svg new file mode 100644 index 0000000..b08334b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/de.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/dg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/dg.svg new file mode 100644 index 0000000..f101d52 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/dg.svg @@ -0,0 +1,130 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/dj.svg b/themes/hello-friend-ng-clone/static/flags/4x3/dj.svg new file mode 100644 index 0000000..674d7ef --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/dj.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/dk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/dk.svg new file mode 100644 index 0000000..563277f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/dk.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/dm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/dm.svg new file mode 100644 index 0000000..7fa4dd8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/dm.svg @@ -0,0 +1,152 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/do.svg b/themes/hello-friend-ng-clone/static/flags/4x3/do.svg new file mode 100644 index 0000000..df21264 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/do.svg @@ -0,0 +1,129 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/dz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/dz.svg new file mode 100644 index 0000000..5ff29a7 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/dz.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ea.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ea.svg new file mode 100644 index 0000000..d55c9b6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ea.svg @@ -0,0 +1,544 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ec.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ec.svg new file mode 100644 index 0000000..65b7885 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ec.svg @@ -0,0 +1,138 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ee.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ee.svg new file mode 100644 index 0000000..36ea288 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ee.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/eg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/eg.svg new file mode 100644 index 0000000..728538b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/eg.svg @@ -0,0 +1,38 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/eh.svg b/themes/hello-friend-ng-clone/static/flags/4x3/eh.svg new file mode 100644 index 0000000..8743371 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/eh.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/er.svg b/themes/hello-friend-ng-clone/static/flags/4x3/er.svg new file mode 100644 index 0000000..2705295 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/er.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/es-ct.svg b/themes/hello-friend-ng-clone/static/flags/4x3/es-ct.svg new file mode 100644 index 0000000..4d85911 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/es-ct.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/es-ga.svg b/themes/hello-friend-ng-clone/static/flags/4x3/es-ga.svg new file mode 100644 index 0000000..cc52c84 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/es-ga.svg @@ -0,0 +1,187 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/es-pv.svg b/themes/hello-friend-ng-clone/static/flags/4x3/es-pv.svg new file mode 100644 index 0000000..0128915 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/es-pv.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/es.svg b/themes/hello-friend-ng-clone/static/flags/4x3/es.svg new file mode 100644 index 0000000..815e0f8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/es.svg @@ -0,0 +1,544 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/et.svg b/themes/hello-friend-ng-clone/static/flags/4x3/et.svg new file mode 100644 index 0000000..7075040 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/et.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/eu.svg b/themes/hello-friend-ng-clone/static/flags/4x3/eu.svg new file mode 100644 index 0000000..1bb04ec --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/eu.svg @@ -0,0 +1,28 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/fi.svg b/themes/hello-friend-ng-clone/static/flags/4x3/fi.svg new file mode 100644 index 0000000..470be2d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/fi.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/fj.svg b/themes/hello-friend-ng-clone/static/flags/4x3/fj.svg new file mode 100644 index 0000000..2d7cd98 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/fj.svg @@ -0,0 +1,120 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/fk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/fk.svg new file mode 100644 index 0000000..8aeee57 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/fk.svg @@ -0,0 +1,90 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/fm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/fm.svg new file mode 100644 index 0000000..baa9668 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/fm.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/fo.svg b/themes/hello-friend-ng-clone/static/flags/4x3/fo.svg new file mode 100644 index 0000000..898f669 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/fo.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/fr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/fr.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/fr.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ga.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ga.svg new file mode 100644 index 0000000..76edab4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ga.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gb-eng.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gb-eng.svg new file mode 100644 index 0000000..12e3b67 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gb-eng.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gb-nir.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gb-nir.svg new file mode 100644 index 0000000..e34b224 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gb-nir.svg @@ -0,0 +1,132 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gb-sct.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gb-sct.svg new file mode 100644 index 0000000..f50cd32 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gb-sct.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gb-wls.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gb-wls.svg new file mode 100644 index 0000000..6e15fd0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gb-wls.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gb.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gb.svg new file mode 100644 index 0000000..dbac25e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gb.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gd.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gd.svg new file mode 100644 index 0000000..dad1107 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gd.svg @@ -0,0 +1,27 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ge.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ge.svg new file mode 100644 index 0000000..d8126ec --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ge.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gf.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gf.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gg.svg new file mode 100644 index 0000000..e40a838 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gg.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gh.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gh.svg new file mode 100644 index 0000000..a6497de --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gh.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gi.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gi.svg new file mode 100644 index 0000000..64a69e8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gi.svg @@ -0,0 +1,32 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gl.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gl.svg new file mode 100644 index 0000000..eb5a52e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gl.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gm.svg new file mode 100644 index 0000000..2fbcb19 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gm.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gn.svg new file mode 100644 index 0000000..40d6ad4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gn.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gp.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gp.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gp.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gq.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gq.svg new file mode 100644 index 0000000..ba2acf2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gq.svg @@ -0,0 +1,23 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gr.svg new file mode 100644 index 0000000..599741e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gr.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gs.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gs.svg new file mode 100644 index 0000000..7e0692c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gs.svg @@ -0,0 +1,133 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gt.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gt.svg new file mode 100644 index 0000000..be45324 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gt.svg @@ -0,0 +1,220 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gu.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gu.svg new file mode 100644 index 0000000..a5584ff --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gu.svg @@ -0,0 +1,23 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gw.svg new file mode 100644 index 0000000..9e0aeeb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gw.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/gy.svg b/themes/hello-friend-ng-clone/static/flags/4x3/gy.svg new file mode 100644 index 0000000..f4d9b8a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/gy.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/hk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/hk.svg new file mode 100644 index 0000000..84ff340 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/hk.svg @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/hm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/hm.svg new file mode 100644 index 0000000..c0748d3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/hm.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/hn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/hn.svg new file mode 100644 index 0000000..6f92950 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/hn.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/hr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/hr.svg new file mode 100644 index 0000000..70115ae --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/hr.svg @@ -0,0 +1,58 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ht.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ht.svg new file mode 100644 index 0000000..9cddb29 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ht.svg @@ -0,0 +1,116 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/hu.svg b/themes/hello-friend-ng-clone/static/flags/4x3/hu.svg new file mode 100644 index 0000000..baddf7f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/hu.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ic.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ic.svg new file mode 100644 index 0000000..81e6ee2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ic.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/id.svg b/themes/hello-friend-ng-clone/static/flags/4x3/id.svg new file mode 100644 index 0000000..3b7c8fc --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/id.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ie.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ie.svg new file mode 100644 index 0000000..049be14 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ie.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/il.svg b/themes/hello-friend-ng-clone/static/flags/4x3/il.svg new file mode 100644 index 0000000..d9d8213 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/il.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/im.svg b/themes/hello-friend-ng-clone/static/flags/4x3/im.svg new file mode 100644 index 0000000..ce1243c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/im.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/in.svg b/themes/hello-friend-ng-clone/static/flags/4x3/in.svg new file mode 100644 index 0000000..53c29b3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/in.svg @@ -0,0 +1,25 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/io.svg b/themes/hello-friend-ng-clone/static/flags/4x3/io.svg new file mode 100644 index 0000000..439923f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/io.svg @@ -0,0 +1,130 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/iq.svg b/themes/hello-friend-ng-clone/static/flags/4x3/iq.svg new file mode 100644 index 0000000..6891785 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/iq.svg @@ -0,0 +1,10 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ir.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ir.svg new file mode 100644 index 0000000..c937a36 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ir.svg @@ -0,0 +1,219 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/is.svg b/themes/hello-friend-ng-clone/static/flags/4x3/is.svg new file mode 100644 index 0000000..b0828a4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/is.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/it.svg b/themes/hello-friend-ng-clone/static/flags/4x3/it.svg new file mode 100644 index 0000000..20a8bfd --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/it.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/je.svg b/themes/hello-friend-ng-clone/static/flags/4x3/je.svg new file mode 100644 index 0000000..b65965c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/je.svg @@ -0,0 +1,45 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/jm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/jm.svg new file mode 100644 index 0000000..e03a342 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/jm.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/jo.svg b/themes/hello-friend-ng-clone/static/flags/4x3/jo.svg new file mode 100644 index 0000000..df0ce75 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/jo.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/jp.svg b/themes/hello-friend-ng-clone/static/flags/4x3/jp.svg new file mode 100644 index 0000000..90af6c4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/jp.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ke.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ke.svg new file mode 100644 index 0000000..ad190f5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ke.svg @@ -0,0 +1,23 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/kg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/kg.svg new file mode 100644 index 0000000..1d237fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/kg.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/kh.svg b/themes/hello-friend-ng-clone/static/flags/4x3/kh.svg new file mode 100644 index 0000000..984e84e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/kh.svg @@ -0,0 +1,61 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ki.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ki.svg new file mode 100644 index 0000000..c469370 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ki.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/km.svg b/themes/hello-friend-ng-clone/static/flags/4x3/km.svg new file mode 100644 index 0000000..fda3a53 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/km.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/kn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/kn.svg new file mode 100644 index 0000000..f96b06c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/kn.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/kp.svg b/themes/hello-friend-ng-clone/static/flags/4x3/kp.svg new file mode 100644 index 0000000..b405e45 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/kp.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/kr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/kr.svg new file mode 100644 index 0000000..39fa999 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/kr.svg @@ -0,0 +1,24 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/kw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/kw.svg new file mode 100644 index 0000000..d55aa19 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/kw.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ky.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ky.svg new file mode 100644 index 0000000..103af5b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ky.svg @@ -0,0 +1,109 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/kz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/kz.svg new file mode 100644 index 0000000..e09beb2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/kz.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/la.svg b/themes/hello-friend-ng-clone/static/flags/4x3/la.svg new file mode 100644 index 0000000..cd7ea9d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/la.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/lb.svg b/themes/hello-friend-ng-clone/static/flags/4x3/lb.svg new file mode 100644 index 0000000..f8b8b6d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/lb.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/lc.svg b/themes/hello-friend-ng-clone/static/flags/4x3/lc.svg new file mode 100644 index 0000000..46bbc6c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/lc.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/li.svg b/themes/hello-friend-ng-clone/static/flags/4x3/li.svg new file mode 100644 index 0000000..d557d31 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/li.svg @@ -0,0 +1,43 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/lk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/lk.svg new file mode 100644 index 0000000..416c0f0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/lk.svg @@ -0,0 +1,22 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/lr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/lr.svg new file mode 100644 index 0000000..0025221 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/lr.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ls.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ls.svg new file mode 100644 index 0000000..e701650 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ls.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/lt.svg b/themes/hello-friend-ng-clone/static/flags/4x3/lt.svg new file mode 100644 index 0000000..90ec5d2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/lt.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/lu.svg b/themes/hello-friend-ng-clone/static/flags/4x3/lu.svg new file mode 100644 index 0000000..c31d2bf --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/lu.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/lv.svg b/themes/hello-friend-ng-clone/static/flags/4x3/lv.svg new file mode 100644 index 0000000..6a9e75e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/lv.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ly.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ly.svg new file mode 100644 index 0000000..7324a87 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ly.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ma.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ma.svg new file mode 100644 index 0000000..7ce56ef --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ma.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mc.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mc.svg new file mode 100644 index 0000000..9cb6c9e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mc.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/md.svg b/themes/hello-friend-ng-clone/static/flags/4x3/md.svg new file mode 100644 index 0000000..a806572 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/md.svg @@ -0,0 +1,70 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/me.svg b/themes/hello-friend-ng-clone/static/flags/4x3/me.svg new file mode 100644 index 0000000..b56cce0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/me.svg @@ -0,0 +1,116 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mf.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mf.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mg.svg new file mode 100644 index 0000000..5fa2d24 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mg.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mh.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mh.svg new file mode 100644 index 0000000..46351e5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mh.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mk.svg new file mode 100644 index 0000000..4f5cae7 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mk.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ml.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ml.svg new file mode 100644 index 0000000..6f6b716 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ml.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mm.svg new file mode 100644 index 0000000..3527782 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mm.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mn.svg new file mode 100644 index 0000000..56cb072 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mn.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mo.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mo.svg new file mode 100644 index 0000000..6b70cc7 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mo.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mp.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mp.svg new file mode 100644 index 0000000..d94f688 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mp.svg @@ -0,0 +1,86 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mq.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mq.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mq.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mr.svg new file mode 100644 index 0000000..e9cc291 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mr.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ms.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ms.svg new file mode 100644 index 0000000..a1e52d9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ms.svg @@ -0,0 +1,33 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mt.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mt.svg new file mode 100644 index 0000000..676e801 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mt.svg @@ -0,0 +1,49 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mu.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mu.svg new file mode 100644 index 0000000..82d7a3b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mu.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mv.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mv.svg new file mode 100644 index 0000000..10450f9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mv.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mw.svg new file mode 100644 index 0000000..113aae5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mw.svg @@ -0,0 +1,10 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mx.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mx.svg new file mode 100644 index 0000000..4219195 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mx.svg @@ -0,0 +1,382 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/my.svg b/themes/hello-friend-ng-clone/static/flags/4x3/my.svg new file mode 100644 index 0000000..267c39a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/my.svg @@ -0,0 +1,26 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/mz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/mz.svg new file mode 100644 index 0000000..dab81a6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/mz.svg @@ -0,0 +1,21 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/na.svg b/themes/hello-friend-ng-clone/static/flags/4x3/na.svg new file mode 100644 index 0000000..3b9202b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/na.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/nc.svg b/themes/hello-friend-ng-clone/static/flags/4x3/nc.svg new file mode 100644 index 0000000..9679540 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/nc.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ne.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ne.svg new file mode 100644 index 0000000..39a82b8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ne.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/nf.svg b/themes/hello-friend-ng-clone/static/flags/4x3/nf.svg new file mode 100644 index 0000000..ecdb4a3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/nf.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ng.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ng.svg new file mode 100644 index 0000000..81eb35f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ng.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ni.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ni.svg new file mode 100644 index 0000000..64d2aa0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ni.svg @@ -0,0 +1,129 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/nl.svg b/themes/hello-friend-ng-clone/static/flags/4x3/nl.svg new file mode 100644 index 0000000..4faaf49 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/nl.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/no.svg b/themes/hello-friend-ng-clone/static/flags/4x3/no.svg new file mode 100644 index 0000000..a5f2a15 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/no.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/np.svg b/themes/hello-friend-ng-clone/static/flags/4x3/np.svg new file mode 100644 index 0000000..a2f9819 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/np.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/nr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/nr.svg new file mode 100644 index 0000000..c7db7dd --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/nr.svg @@ -0,0 +1,12 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/nu.svg b/themes/hello-friend-ng-clone/static/flags/4x3/nu.svg new file mode 100644 index 0000000..4067baf --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/nu.svg @@ -0,0 +1,10 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/nz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/nz.svg new file mode 100644 index 0000000..8ae592a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/nz.svg @@ -0,0 +1,36 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/om.svg b/themes/hello-friend-ng-clone/static/flags/4x3/om.svg new file mode 100644 index 0000000..5be12ed --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/om.svg @@ -0,0 +1,115 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pa.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pa.svg new file mode 100644 index 0000000..658c87e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pa.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pe.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pe.svg new file mode 100644 index 0000000..eeb29a3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pe.svg @@ -0,0 +1,244 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pf.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pf.svg new file mode 100644 index 0000000..1b35cdb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pf.svg @@ -0,0 +1,19 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pg.svg new file mode 100644 index 0000000..1080add --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pg.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ph.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ph.svg new file mode 100644 index 0000000..65489e1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ph.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pk.svg new file mode 100644 index 0000000..0babde6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pk.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pl.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pl.svg new file mode 100644 index 0000000..0fa5145 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pl.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pm.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pm.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pn.svg new file mode 100644 index 0000000..972792f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pn.svg @@ -0,0 +1,53 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pr.svg new file mode 100644 index 0000000..964b421 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pr.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ps.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ps.svg new file mode 100644 index 0000000..ddd1dc1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ps.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pt.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pt.svg new file mode 100644 index 0000000..afd2e4a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pt.svg @@ -0,0 +1,57 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/pw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/pw.svg new file mode 100644 index 0000000..77547c7 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/pw.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/py.svg b/themes/hello-friend-ng-clone/static/flags/4x3/py.svg new file mode 100644 index 0000000..bfbf01f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/py.svg @@ -0,0 +1,157 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/qa.svg b/themes/hello-friend-ng-clone/static/flags/4x3/qa.svg new file mode 100644 index 0000000..bd493c3 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/qa.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/re.svg b/themes/hello-friend-ng-clone/static/flags/4x3/re.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/re.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ro.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ro.svg new file mode 100644 index 0000000..fda0f7b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ro.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/rs.svg b/themes/hello-friend-ng-clone/static/flags/4x3/rs.svg new file mode 100644 index 0000000..86ad291 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/rs.svg @@ -0,0 +1,292 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ru.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ru.svg new file mode 100644 index 0000000..f4d27ef --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ru.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/rw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/rw.svg new file mode 100644 index 0000000..2c6c5d9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/rw.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sa.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sa.svg new file mode 100644 index 0000000..b0d56df --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sa.svg @@ -0,0 +1,26 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sb.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sb.svg new file mode 100644 index 0000000..f450a9c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sb.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sc.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sc.svg new file mode 100644 index 0000000..9a46b36 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sc.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sd.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sd.svg new file mode 100644 index 0000000..c00a1a5 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sd.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/se.svg b/themes/hello-friend-ng-clone/static/flags/4x3/se.svg new file mode 100644 index 0000000..0e41780 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/se.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sg.svg new file mode 100644 index 0000000..c0d3d08 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sg.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sh.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sh.svg new file mode 100644 index 0000000..131b069 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sh.svg @@ -0,0 +1,76 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/si.svg b/themes/hello-friend-ng-clone/static/flags/4x3/si.svg new file mode 100644 index 0000000..223fc49 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/si.svg @@ -0,0 +1,18 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sj.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sj.svg new file mode 100644 index 0000000..bb2799c --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sj.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sk.svg new file mode 100644 index 0000000..a1953fa --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sk.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sl.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sl.svg new file mode 100644 index 0000000..a07baf7 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sl.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sm.svg new file mode 100644 index 0000000..0892990 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sm.svg @@ -0,0 +1,75 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sn.svg new file mode 100644 index 0000000..7c0673d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sn.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/so.svg b/themes/hello-friend-ng-clone/static/flags/4x3/so.svg new file mode 100644 index 0000000..4d4337a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/so.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sr.svg new file mode 100644 index 0000000..5e71c40 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sr.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ss.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ss.svg new file mode 100644 index 0000000..73804d8 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ss.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/st.svg b/themes/hello-friend-ng-clone/static/flags/4x3/st.svg new file mode 100644 index 0000000..2259f31 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/st.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sv.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sv.svg new file mode 100644 index 0000000..752dd3d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sv.svg @@ -0,0 +1,594 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sx.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sx.svg new file mode 100644 index 0000000..bcc90d6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sx.svg @@ -0,0 +1,56 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sy.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sy.svg new file mode 100644 index 0000000..29636ae --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sy.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/sz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/sz.svg new file mode 100644 index 0000000..02ef495 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/sz.svg @@ -0,0 +1,34 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ta.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ta.svg new file mode 100644 index 0000000..b68ad23 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ta.svg @@ -0,0 +1,76 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tc.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tc.svg new file mode 100644 index 0000000..dbdb716 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tc.svg @@ -0,0 +1,50 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/td.svg b/themes/hello-friend-ng-clone/static/flags/4x3/td.svg new file mode 100644 index 0000000..9fadf85 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/td.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tf.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tf.svg new file mode 100644 index 0000000..4572f4e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tf.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tg.svg new file mode 100644 index 0000000..8d763cb --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tg.svg @@ -0,0 +1,14 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/th.svg b/themes/hello-friend-ng-clone/static/flags/4x3/th.svg new file mode 100644 index 0000000..1e93a61 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/th.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tj.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tj.svg new file mode 100644 index 0000000..563c97b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tj.svg @@ -0,0 +1,22 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tk.svg new file mode 100644 index 0000000..65bab13 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tk.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tl.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tl.svg new file mode 100644 index 0000000..1f11e92 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tl.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tm.svg new file mode 100644 index 0000000..3c72f09 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tm.svg @@ -0,0 +1,205 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tn.svg new file mode 100644 index 0000000..4dc0949 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tn.svg @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/to.svg b/themes/hello-friend-ng-clone/static/flags/4x3/to.svg new file mode 100644 index 0000000..d072337 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/to.svg @@ -0,0 +1,10 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tr.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tr.svg new file mode 100644 index 0000000..a92804f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tr.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tt.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tt.svg new file mode 100644 index 0000000..14adbe0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tt.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tv.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tv.svg new file mode 100644 index 0000000..675210e --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tv.svg @@ -0,0 +1,9 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tw.svg new file mode 100644 index 0000000..78f3b9d --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tw.svg @@ -0,0 +1,34 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/tz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/tz.svg new file mode 100644 index 0000000..ca74eec --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/tz.svg @@ -0,0 +1,13 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ua.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ua.svg new file mode 100644 index 0000000..a339eb1 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ua.svg @@ -0,0 +1,6 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ug.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ug.svg new file mode 100644 index 0000000..f9c5e1b --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ug.svg @@ -0,0 +1,30 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/um.svg b/themes/hello-friend-ng-clone/static/flags/4x3/um.svg new file mode 100644 index 0000000..7b91838 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/um.svg @@ -0,0 +1,15 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/un.svg b/themes/hello-friend-ng-clone/static/flags/4x3/un.svg new file mode 100644 index 0000000..b04c3c4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/un.svg @@ -0,0 +1,16 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/us.svg b/themes/hello-friend-ng-clone/static/flags/4x3/us.svg new file mode 100644 index 0000000..a218516 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/us.svg @@ -0,0 +1,9 @@ + \ No newline at end of file diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/uy.svg b/themes/hello-friend-ng-clone/static/flags/4x3/uy.svg new file mode 100644 index 0000000..1634d71 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/uy.svg @@ -0,0 +1,28 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/uz.svg b/themes/hello-friend-ng-clone/static/flags/4x3/uz.svg new file mode 100644 index 0000000..8c6a532 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/uz.svg @@ -0,0 +1,30 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/va.svg b/themes/hello-friend-ng-clone/static/flags/4x3/va.svg new file mode 100644 index 0000000..6a03dc4 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/va.svg @@ -0,0 +1,479 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/vc.svg b/themes/hello-friend-ng-clone/static/flags/4x3/vc.svg new file mode 100644 index 0000000..450f6f0 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/vc.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ve.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ve.svg new file mode 100644 index 0000000..77bb549 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ve.svg @@ -0,0 +1,26 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/vg.svg b/themes/hello-friend-ng-clone/static/flags/4x3/vg.svg new file mode 100644 index 0000000..39023a9 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/vg.svg @@ -0,0 +1,63 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/vi.svg b/themes/hello-friend-ng-clone/static/flags/4x3/vi.svg new file mode 100644 index 0000000..8a0941f --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/vi.svg @@ -0,0 +1,28 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/vn.svg b/themes/hello-friend-ng-clone/static/flags/4x3/vn.svg new file mode 100644 index 0000000..c557e3a --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/vn.svg @@ -0,0 +1,11 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/vu.svg b/themes/hello-friend-ng-clone/static/flags/4x3/vu.svg new file mode 100644 index 0000000..32f4377 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/vu.svg @@ -0,0 +1,21 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/wf.svg b/themes/hello-friend-ng-clone/static/flags/4x3/wf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/wf.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ws.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ws.svg new file mode 100644 index 0000000..0e758a7 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ws.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/xk.svg b/themes/hello-friend-ng-clone/static/flags/4x3/xk.svg new file mode 100644 index 0000000..0edc0c7 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/xk.svg @@ -0,0 +1,8 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/xx.svg b/themes/hello-friend-ng-clone/static/flags/4x3/xx.svg new file mode 100644 index 0000000..34515ce --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/xx.svg @@ -0,0 +1,4 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/ye.svg b/themes/hello-friend-ng-clone/static/flags/4x3/ye.svg new file mode 100644 index 0000000..61f0ed6 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/ye.svg @@ -0,0 +1,7 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/yt.svg b/themes/hello-friend-ng-clone/static/flags/4x3/yt.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/yt.svg @@ -0,0 +1,5 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/za.svg b/themes/hello-friend-ng-clone/static/flags/4x3/za.svg new file mode 100644 index 0000000..0c1f3af --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/za.svg @@ -0,0 +1,17 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/zm.svg b/themes/hello-friend-ng-clone/static/flags/4x3/zm.svg new file mode 100644 index 0000000..84c99c2 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/zm.svg @@ -0,0 +1,27 @@ + diff --git a/themes/hello-friend-ng-clone/static/flags/4x3/zw.svg b/themes/hello-friend-ng-clone/static/flags/4x3/zw.svg new file mode 100644 index 0000000..64e8d48 --- /dev/null +++ b/themes/hello-friend-ng-clone/static/flags/4x3/zw.svg @@ -0,0 +1,21 @@ + diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-Bold.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-Bold.woff new file mode 100644 index 0000000..eaf3d4b Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-Bold.woff differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-Bold.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-Bold.woff2 new file mode 100644 index 0000000..2846f29 Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-Bold.woff2 differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-BoldItalic.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-BoldItalic.woff new file mode 100644 index 0000000..3275076 Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-BoldItalic.woff differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-BoldItalic.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-BoldItalic.woff2 new file mode 100644 index 0000000..0b1fe8e Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-BoldItalic.woff2 differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-Italic.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-Italic.woff new file mode 100644 index 0000000..a806b38 Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-Italic.woff differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-Italic.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-Italic.woff2 new file mode 100644 index 0000000..a619fc5 Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-Italic.woff2 differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-Medium.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-Medium.woff new file mode 100644 index 0000000..d546843 Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-Medium.woff differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-Medium.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-Medium.woff2 new file mode 100644 index 0000000..f92498a Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-Medium.woff2 differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-MediumItalic.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-MediumItalic.woff new file mode 100644 index 0000000..459a656 Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-MediumItalic.woff differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-MediumItalic.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-MediumItalic.woff2 new file mode 100644 index 0000000..0e3019f Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-MediumItalic.woff2 differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-Regular.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-Regular.woff new file mode 100644 index 0000000..62d3a61 Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-Regular.woff differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-Regular.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-Regular.woff2 new file mode 100644 index 0000000..6c2b689 Binary files /dev/null and b/themes/hello-friend-ng-clone/static/fonts/Inter-Regular.woff2 differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Bold.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Bold.woff deleted file mode 100644 index 8fefb2d..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Bold.woff and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Bold.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Bold.woff2 deleted file mode 100644 index 522adb9..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Bold.woff2 and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-BoldItalic.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-BoldItalic.woff deleted file mode 100644 index 8e0e289..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-BoldItalic.woff and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-BoldItalic.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-BoldItalic.woff2 deleted file mode 100644 index 66d8511..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-BoldItalic.woff2 and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Italic.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Italic.woff deleted file mode 100644 index 70c132b..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Italic.woff and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Italic.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Italic.woff2 deleted file mode 100644 index 6af8a7f..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Italic.woff2 and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Medium.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Medium.woff deleted file mode 100644 index 8aef504..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Medium.woff and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Medium.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Medium.woff2 deleted file mode 100644 index 7bdc267..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Medium.woff2 and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-MediumItalic.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-MediumItalic.woff deleted file mode 100644 index 58119ef..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-MediumItalic.woff and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-MediumItalic.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-MediumItalic.woff2 deleted file mode 100644 index 4d4034b..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-MediumItalic.woff2 and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Regular.woff b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Regular.woff deleted file mode 100644 index 2ada3d0..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Regular.woff and /dev/null differ diff --git a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Regular.woff2 b/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Regular.woff2 deleted file mode 100644 index e29e9c9..0000000 Binary files a/themes/hello-friend-ng-clone/static/fonts/Inter-UI-Regular.woff2 and /dev/null differ