├── .gitmodules ├── config └── .gitignore ├── vendor ├── predis │ └── predis │ │ ├── VERSION │ │ ├── .gitignore │ │ └── bin │ │ └── create-single-file ├── slim │ └── slim │ │ ├── .gitignore │ │ ├── tests │ │ ├── templates │ │ │ └── test.php │ │ └── Foo.php │ │ └── .travis.yml ├── symfony │ ├── form │ │ └── Symfony │ │ │ └── Component │ │ │ └── Form │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ └── foo │ │ │ └── .gitignore │ ├── icu │ │ └── Symfony │ │ │ └── Component │ │ │ └── Icu │ │ │ ├── Resources │ │ │ └── data │ │ │ │ ├── version.txt │ │ │ │ ├── curr │ │ │ │ ├── af.res │ │ │ │ ├── agq.res │ │ │ │ ├── ak.res │ │ │ │ ├── am.res │ │ │ │ ├── ar.res │ │ │ │ ├── as.res │ │ │ │ ├── asa.res │ │ │ │ ├── az.res │ │ │ │ ├── bas.res │ │ │ │ ├── be.res │ │ │ │ ├── bem.res │ │ │ │ ├── bez.res │ │ │ │ ├── bg.res │ │ │ │ ├── bm.res │ │ │ │ ├── bn.res │ │ │ │ ├── bo.res │ │ │ │ ├── br.res │ │ │ │ ├── brx.res │ │ │ │ ├── bs.res │ │ │ │ ├── ca.res │ │ │ │ ├── cgg.res │ │ │ │ ├── chr.res │ │ │ │ ├── cs.res │ │ │ │ ├── cy.res │ │ │ │ ├── da.res │ │ │ │ ├── dav.res │ │ │ │ ├── de.res │ │ │ │ ├── dje.res │ │ │ │ ├── dua.res │ │ │ │ ├── dyo.res │ │ │ │ ├── dz.res │ │ │ │ ├── ebu.res │ │ │ │ ├── ee.res │ │ │ │ ├── el.res │ │ │ │ ├── en.res │ │ │ │ ├── eo.res │ │ │ │ ├── es.res │ │ │ │ ├── et.res │ │ │ │ ├── eu.res │ │ │ │ ├── ewo.res │ │ │ │ ├── fa.res │ │ │ │ ├── ff.res │ │ │ │ ├── fi.res │ │ │ │ ├── fil.res │ │ │ │ ├── fo.res │ │ │ │ ├── fr.res │ │ │ │ ├── ga.res │ │ │ │ ├── gl.res │ │ │ │ ├── gsw.res │ │ │ │ ├── gu.res │ │ │ │ ├── guz.res │ │ │ │ ├── gv.res │ │ │ │ ├── ha.res │ │ │ │ ├── haw.res │ │ │ │ ├── he.res │ │ │ │ ├── hi.res │ │ │ │ ├── hr.res │ │ │ │ ├── hu.res │ │ │ │ ├── hy.res │ │ │ │ ├── id.res │ │ │ │ ├── ig.res │ │ │ │ ├── ii.res │ │ │ │ ├── in.res │ │ │ │ ├── is.res │ │ │ │ ├── it.res │ │ │ │ ├── iw.res │ │ │ │ ├── ja.res │ │ │ │ ├── jgo.res │ │ │ │ ├── jmc.res │ │ │ │ ├── ka.res │ │ │ │ ├── kab.res │ │ │ │ ├── kam.res │ │ │ │ ├── kde.res │ │ │ │ ├── kea.res │ │ │ │ ├── khq.res │ │ │ │ ├── ki.res │ │ │ │ ├── kk.res │ │ │ │ ├── kl.res │ │ │ │ ├── kln.res │ │ │ │ ├── km.res │ │ │ │ ├── kn.res │ │ │ │ ├── ko.res │ │ │ │ ├── kok.res │ │ │ │ ├── ks.res │ │ │ │ ├── ksb.res │ │ │ │ ├── ksf.res │ │ │ │ ├── kw.res │ │ │ │ ├── lag.res │ │ │ │ ├── lg.res │ │ │ │ ├── ln.res │ │ │ │ ├── lo.res │ │ │ │ ├── lt.res │ │ │ │ ├── lu.res │ │ │ │ ├── luo.res │ │ │ │ ├── luy.res │ │ │ │ ├── lv.res │ │ │ │ ├── mas.res │ │ │ │ ├── mer.res │ │ │ │ ├── mfe.res │ │ │ │ ├── mg.res │ │ │ │ ├── mgh.res │ │ │ │ ├── mgo.res │ │ │ │ ├── misc.res │ │ │ │ ├── mk.res │ │ │ │ ├── ml.res │ │ │ │ ├── mn.res │ │ │ │ ├── mo.res │ │ │ │ ├── mr.res │ │ │ │ ├── ms.res │ │ │ │ ├── mt.res │ │ │ │ ├── mua.res │ │ │ │ ├── my.res │ │ │ │ ├── naq.res │ │ │ │ ├── nb.res │ │ │ │ ├── nd.res │ │ │ │ ├── ne.res │ │ │ │ ├── nl.res │ │ │ │ ├── nmg.res │ │ │ │ ├── nn.res │ │ │ │ ├── no.res │ │ │ │ ├── nus.res │ │ │ │ ├── nyn.res │ │ │ │ ├── om.res │ │ │ │ ├── or.res │ │ │ │ ├── pa.res │ │ │ │ ├── pl.res │ │ │ │ ├── ps.res │ │ │ │ ├── pt.res │ │ │ │ ├── rm.res │ │ │ │ ├── rn.res │ │ │ │ ├── ro.res │ │ │ │ ├── rof.res │ │ │ │ ├── root.res │ │ │ │ ├── ru.res │ │ │ │ ├── rw.res │ │ │ │ ├── rwk.res │ │ │ │ ├── saq.res │ │ │ │ ├── sbp.res │ │ │ │ ├── seh.res │ │ │ │ ├── ses.res │ │ │ │ ├── sg.res │ │ │ │ ├── sh.res │ │ │ │ ├── shi.res │ │ │ │ ├── si.res │ │ │ │ ├── sk.res │ │ │ │ ├── sl.res │ │ │ │ ├── sn.res │ │ │ │ ├── so.res │ │ │ │ ├── sq.res │ │ │ │ ├── sr.res │ │ │ │ ├── sv.res │ │ │ │ ├── sw.res │ │ │ │ ├── swc.res │ │ │ │ ├── ta.res │ │ │ │ ├── te.res │ │ │ │ ├── teo.res │ │ │ │ ├── th.res │ │ │ │ ├── ti.res │ │ │ │ ├── tl.res │ │ │ │ ├── to.res │ │ │ │ ├── tr.res │ │ │ │ ├── twq.res │ │ │ │ ├── tzm.res │ │ │ │ ├── uk.res │ │ │ │ ├── ur.res │ │ │ │ ├── uz.res │ │ │ │ ├── vai.res │ │ │ │ ├── vi.res │ │ │ │ ├── vun.res │ │ │ │ ├── xog.res │ │ │ │ ├── yav.res │ │ │ │ ├── yo.res │ │ │ │ ├── zh.res │ │ │ │ ├── zu.res │ │ │ │ ├── af_NA.res │ │ │ │ ├── ar_DJ.res │ │ │ │ ├── ar_ER.res │ │ │ │ ├── ar_SO.res │ │ │ │ ├── az_AZ.res │ │ │ │ ├── bn_IN.res │ │ │ │ ├── bo_IN.res │ │ │ │ ├── bs_BA.res │ │ │ │ ├── de_CH.res │ │ │ │ ├── de_LU.res │ │ │ │ ├── en_AG.res │ │ │ │ ├── en_AU.res │ │ │ │ ├── en_BB.res │ │ │ │ ├── en_BE.res │ │ │ │ ├── en_BM.res │ │ │ │ ├── en_BS.res │ │ │ │ ├── en_BW.res │ │ │ │ ├── en_BZ.res │ │ │ │ ├── en_CA.res │ │ │ │ ├── en_CM.res │ │ │ │ ├── en_DM.res │ │ │ │ ├── en_FJ.res │ │ │ │ ├── en_GB.res │ │ │ │ ├── en_GD.res │ │ │ │ ├── en_GH.res │ │ │ │ ├── en_GI.res │ │ │ │ ├── en_GM.res │ │ │ │ ├── en_GY.res │ │ │ │ ├── en_HK.res │ │ │ │ ├── en_IN.res │ │ │ │ ├── en_JM.res │ │ │ │ ├── en_KE.res │ │ │ │ ├── en_KI.res │ │ │ │ ├── en_KN.res │ │ │ │ ├── en_KY.res │ │ │ │ ├── en_LC.res │ │ │ │ ├── en_LR.res │ │ │ │ ├── en_LS.res │ │ │ │ ├── en_MG.res │ │ │ │ ├── en_MT.res │ │ │ │ ├── en_MU.res │ │ │ │ ├── en_MW.res │ │ │ │ ├── en_NA.res │ │ │ │ ├── en_NG.res │ │ │ │ ├── en_NH.res │ │ │ │ ├── en_NZ.res │ │ │ │ ├── en_PG.res │ │ │ │ ├── en_PH.res │ │ │ │ ├── en_PK.res │ │ │ │ ├── en_RH.res │ │ │ │ ├── en_SB.res │ │ │ │ ├── en_SC.res │ │ │ │ ├── en_SG.res │ │ │ │ ├── en_SL.res │ │ │ │ ├── en_SS.res │ │ │ │ ├── en_SZ.res │ │ │ │ ├── en_TO.res │ │ │ │ ├── en_TT.res │ │ │ │ ├── en_TZ.res │ │ │ │ ├── en_UG.res │ │ │ │ ├── en_VC.res │ │ │ │ ├── en_VU.res │ │ │ │ ├── en_WS.res │ │ │ │ ├── en_ZA.res │ │ │ │ ├── en_ZM.res │ │ │ │ ├── en_ZW.res │ │ │ │ ├── es_AR.res │ │ │ │ ├── es_BO.res │ │ │ │ ├── es_CL.res │ │ │ │ ├── es_CO.res │ │ │ │ ├── es_CR.res │ │ │ │ ├── es_CU.res │ │ │ │ ├── es_DO.res │ │ │ │ ├── es_EC.res │ │ │ │ ├── es_GT.res │ │ │ │ ├── es_HN.res │ │ │ │ ├── es_MX.res │ │ │ │ ├── es_NI.res │ │ │ │ ├── es_PA.res │ │ │ │ ├── es_PE.res │ │ │ │ ├── es_PH.res │ │ │ │ ├── es_PR.res │ │ │ │ ├── es_PY.res │ │ │ │ ├── es_US.res │ │ │ │ ├── es_UY.res │ │ │ │ ├── es_VE.res │ │ │ │ ├── fa_AF.res │ │ │ │ ├── fil_PH.res │ │ │ │ ├── fr_BI.res │ │ │ │ ├── fr_CA.res │ │ │ │ ├── fr_CD.res │ │ │ │ ├── fr_CH.res │ │ │ │ ├── fr_DJ.res │ │ │ │ ├── fr_DZ.res │ │ │ │ ├── fr_GN.res │ │ │ │ ├── fr_HT.res │ │ │ │ ├── fr_KM.res │ │ │ │ ├── fr_LU.res │ │ │ │ ├── fr_MG.res │ │ │ │ ├── fr_MR.res │ │ │ │ ├── fr_MU.res │ │ │ │ ├── fr_RW.res │ │ │ │ ├── fr_SC.res │ │ │ │ ├── fr_SY.res │ │ │ │ ├── fr_TN.res │ │ │ │ ├── ha_GH.res │ │ │ │ ├── ha_NE.res │ │ │ │ ├── ha_NG.res │ │ │ │ ├── he_IL.res │ │ │ │ ├── hr_BA.res │ │ │ │ ├── id_ID.res │ │ │ │ ├── in_ID.res │ │ │ │ ├── it_CH.res │ │ │ │ ├── iw_IL.res │ │ │ │ ├── ja_JP.res │ │ │ │ ├── kk_KZ.res │ │ │ │ ├── ks_IN.res │ │ │ │ ├── ln_AO.res │ │ │ │ ├── mas_TZ.res │ │ │ │ ├── mn_MN.res │ │ │ │ ├── ms_BN.res │ │ │ │ ├── ms_MY.res │ │ │ │ ├── ms_SG.res │ │ │ │ ├── nb_NO.res │ │ │ │ ├── ne_IN.res │ │ │ │ ├── nl_AW.res │ │ │ │ ├── nl_CW.res │ │ │ │ ├── nl_SR.res │ │ │ │ ├── nl_SX.res │ │ │ │ ├── nn_NO.res │ │ │ │ ├── no_NO.res │ │ │ │ ├── om_KE.res │ │ │ │ ├── pa_IN.res │ │ │ │ ├── pa_PK.res │ │ │ │ ├── pt_AO.res │ │ │ │ ├── pt_CV.res │ │ │ │ ├── pt_MO.res │ │ │ │ ├── pt_MZ.res │ │ │ │ ├── pt_PT.res │ │ │ │ ├── pt_ST.res │ │ │ │ └── ro_MD.res │ │ │ │ ├── lang │ │ │ │ ├── af.res │ │ │ │ ├── agq.res │ │ │ │ ├── ak.res │ │ │ │ ├── am.res │ │ │ │ ├── ar.res │ │ │ │ ├── as.res │ │ │ │ ├── asa.res │ │ │ │ ├── az.res │ │ │ │ ├── bas.res │ │ │ │ ├── be.res │ │ │ │ ├── bem.res │ │ │ │ ├── bez.res │ │ │ │ ├── bg.res │ │ │ │ ├── bm.res │ │ │ │ ├── bn.res │ │ │ │ ├── bo.res │ │ │ │ ├── br.res │ │ │ │ ├── brx.res │ │ │ │ ├── bs.res │ │ │ │ ├── ca.res │ │ │ │ ├── cgg.res │ │ │ │ ├── chr.res │ │ │ │ ├── cs.res │ │ │ │ ├── cy.res │ │ │ │ ├── da.res │ │ │ │ ├── dav.res │ │ │ │ ├── de.res │ │ │ │ ├── dje.res │ │ │ │ ├── dua.res │ │ │ │ ├── dyo.res │ │ │ │ ├── dz.res │ │ │ │ ├── ebu.res │ │ │ │ ├── ee.res │ │ │ │ ├── el.res │ │ │ │ ├── en.res │ │ │ │ ├── eo.res │ │ │ │ ├── es.res │ │ │ │ ├── et.res │ │ │ │ ├── eu.res │ │ │ │ ├── ewo.res │ │ │ │ ├── fa.res │ │ │ │ ├── ff.res │ │ │ │ ├── fi.res │ │ │ │ ├── fil.res │ │ │ │ ├── fo.res │ │ │ │ ├── fr.res │ │ │ │ ├── ga.res │ │ │ │ ├── gl.res │ │ │ │ ├── gsw.res │ │ │ │ ├── gu.res │ │ │ │ ├── guz.res │ │ │ │ ├── gv.res │ │ │ │ ├── ha.res │ │ │ │ ├── haw.res │ │ │ │ ├── he.res │ │ │ │ ├── hi.res │ │ │ │ ├── hr.res │ │ │ │ ├── hu.res │ │ │ │ ├── hy.res │ │ │ │ ├── id.res │ │ │ │ ├── ig.res │ │ │ │ ├── ii.res │ │ │ │ ├── in.res │ │ │ │ ├── is.res │ │ │ │ ├── it.res │ │ │ │ ├── iw.res │ │ │ │ ├── ja.res │ │ │ │ ├── jgo.res │ │ │ │ ├── jmc.res │ │ │ │ ├── ka.res │ │ │ │ ├── kab.res │ │ │ │ ├── kam.res │ │ │ │ ├── kde.res │ │ │ │ ├── kea.res │ │ │ │ ├── khq.res │ │ │ │ ├── ki.res │ │ │ │ ├── kk.res │ │ │ │ ├── kl.res │ │ │ │ ├── kln.res │ │ │ │ ├── km.res │ │ │ │ ├── kn.res │ │ │ │ ├── ko.res │ │ │ │ ├── kok.res │ │ │ │ ├── ks.res │ │ │ │ ├── ksb.res │ │ │ │ ├── ksf.res │ │ │ │ ├── kw.res │ │ │ │ ├── lag.res │ │ │ │ ├── lg.res │ │ │ │ ├── ln.res │ │ │ │ ├── lo.res │ │ │ │ ├── lt.res │ │ │ │ ├── lu.res │ │ │ │ ├── luo.res │ │ │ │ ├── luy.res │ │ │ │ ├── lv.res │ │ │ │ ├── mas.res │ │ │ │ ├── mer.res │ │ │ │ ├── mfe.res │ │ │ │ ├── mg.res │ │ │ │ ├── mgh.res │ │ │ │ ├── mgo.res │ │ │ │ ├── misc.res │ │ │ │ ├── mk.res │ │ │ │ ├── ml.res │ │ │ │ ├── mn.res │ │ │ │ ├── mo.res │ │ │ │ ├── mr.res │ │ │ │ ├── ms.res │ │ │ │ ├── mt.res │ │ │ │ ├── mua.res │ │ │ │ ├── my.res │ │ │ │ ├── naq.res │ │ │ │ ├── nb.res │ │ │ │ ├── nd.res │ │ │ │ ├── ne.res │ │ │ │ ├── nl.res │ │ │ │ ├── nmg.res │ │ │ │ ├── nn.res │ │ │ │ ├── no.res │ │ │ │ ├── nus.res │ │ │ │ ├── nyn.res │ │ │ │ ├── om.res │ │ │ │ ├── or.res │ │ │ │ ├── pa.res │ │ │ │ ├── pl.res │ │ │ │ ├── ps.res │ │ │ │ ├── pt.res │ │ │ │ ├── rm.res │ │ │ │ ├── rn.res │ │ │ │ ├── ro.res │ │ │ │ ├── rof.res │ │ │ │ ├── root.res │ │ │ │ ├── ru.res │ │ │ │ ├── rw.res │ │ │ │ ├── rwk.res │ │ │ │ ├── saq.res │ │ │ │ ├── sbp.res │ │ │ │ ├── seh.res │ │ │ │ ├── ses.res │ │ │ │ ├── sg.res │ │ │ │ ├── sh.res │ │ │ │ ├── shi.res │ │ │ │ ├── si.res │ │ │ │ ├── sk.res │ │ │ │ ├── sl.res │ │ │ │ ├── sn.res │ │ │ │ ├── so.res │ │ │ │ ├── sq.res │ │ │ │ ├── sr.res │ │ │ │ ├── sv.res │ │ │ │ ├── sw.res │ │ │ │ ├── swc.res │ │ │ │ ├── ta.res │ │ │ │ ├── te.res │ │ │ │ ├── teo.res │ │ │ │ ├── th.res │ │ │ │ ├── ti.res │ │ │ │ ├── tl.res │ │ │ │ ├── to.res │ │ │ │ ├── tr.res │ │ │ │ ├── twq.res │ │ │ │ ├── tzm.res │ │ │ │ ├── uk.res │ │ │ │ ├── ur.res │ │ │ │ ├── uz.res │ │ │ │ ├── vai.res │ │ │ │ ├── vi.res │ │ │ │ ├── vun.res │ │ │ │ ├── xog.res │ │ │ │ ├── yav.res │ │ │ │ ├── yo.res │ │ │ │ ├── zh.res │ │ │ │ └── zu.res │ │ │ │ └── region │ │ │ │ ├── af.res │ │ │ │ ├── ak.res │ │ │ │ ├── am.res │ │ │ │ ├── ar.res │ │ │ │ ├── as.res │ │ │ │ ├── az.res │ │ │ │ ├── be.res │ │ │ │ ├── bg.res │ │ │ │ ├── bm.res │ │ │ │ ├── bn.res │ │ │ │ ├── bo.res │ │ │ │ ├── br.res │ │ │ │ ├── bs.res │ │ │ │ ├── ca.res │ │ │ │ ├── cs.res │ │ │ │ ├── cy.res │ │ │ │ ├── da.res │ │ │ │ ├── de.res │ │ │ │ ├── dz.res │ │ │ │ ├── ee.res │ │ │ │ ├── el.res │ │ │ │ ├── en.res │ │ │ │ ├── eo.res │ │ │ │ ├── es.res │ │ │ │ ├── et.res │ │ │ │ ├── eu.res │ │ │ │ ├── fa.res │ │ │ │ ├── ff.res │ │ │ │ ├── fi.res │ │ │ │ ├── fo.res │ │ │ │ ├── fr.res │ │ │ │ ├── ga.res │ │ │ │ ├── gl.res │ │ │ │ ├── gu.res │ │ │ │ ├── gv.res │ │ │ │ ├── ha.res │ │ │ │ ├── he.res │ │ │ │ ├── hi.res │ │ │ │ ├── hr.res │ │ │ │ ├── hu.res │ │ │ │ ├── hy.res │ │ │ │ ├── id.res │ │ │ │ ├── ig.res │ │ │ │ ├── ii.res │ │ │ │ ├── in.res │ │ │ │ ├── is.res │ │ │ │ ├── it.res │ │ │ │ ├── iw.res │ │ │ │ ├── ja.res │ │ │ │ ├── ka.res │ │ │ │ ├── ki.res │ │ │ │ ├── kk.res │ │ │ │ ├── kl.res │ │ │ │ ├── km.res │ │ │ │ ├── kn.res │ │ │ │ ├── ko.res │ │ │ │ ├── ks.res │ │ │ │ ├── kw.res │ │ │ │ ├── lg.res │ │ │ │ ├── ln.res │ │ │ │ ├── lo.res │ │ │ │ ├── lt.res │ │ │ │ ├── lu.res │ │ │ │ ├── lv.res │ │ │ │ ├── mg.res │ │ │ │ ├── mk.res │ │ │ │ ├── ml.res │ │ │ │ ├── mn.res │ │ │ │ ├── mo.res │ │ │ │ ├── mr.res │ │ │ │ ├── ms.res │ │ │ │ ├── mt.res │ │ │ │ ├── my.res │ │ │ │ ├── nb.res │ │ │ │ ├── nd.res │ │ │ │ ├── ne.res │ │ │ │ ├── nl.res │ │ │ │ ├── nn.res │ │ │ │ ├── no.res │ │ │ │ ├── om.res │ │ │ │ ├── or.res │ │ │ │ ├── pa.res │ │ │ │ ├── pl.res │ │ │ │ ├── ps.res │ │ │ │ ├── pt.res │ │ │ │ ├── rm.res │ │ │ │ ├── rn.res │ │ │ │ ├── ro.res │ │ │ │ ├── ru.res │ │ │ │ ├── rw.res │ │ │ │ ├── sg.res │ │ │ │ ├── sh.res │ │ │ │ ├── si.res │ │ │ │ ├── sk.res │ │ │ │ ├── sl.res │ │ │ │ ├── sn.res │ │ │ │ ├── so.res │ │ │ │ ├── sq.res │ │ │ │ ├── sr.res │ │ │ │ ├── sv.res │ │ │ │ ├── sw.res │ │ │ │ ├── ta.res │ │ │ │ ├── te.res │ │ │ │ ├── th.res │ │ │ │ ├── ti.res │ │ │ │ ├── tl.res │ │ │ │ ├── to.res │ │ │ │ ├── tr.res │ │ │ │ ├── uk.res │ │ │ │ ├── ur.res │ │ │ │ ├── uz.res │ │ │ │ ├── vi.res │ │ │ │ ├── yo.res │ │ │ │ ├── zh.res │ │ │ │ └── zu.res │ │ │ └── .gitignore │ ├── translation │ │ └── Symfony │ │ │ └── Component │ │ │ └── Translation │ │ │ ├── Tests │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.json │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── non-valid.yml │ │ │ │ ├── resources.yml │ │ │ │ ├── resources.ini │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ └── dat │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ ├── en.txt │ │ │ │ │ └── fr.txt │ │ │ │ ├── malformed.json │ │ │ │ ├── resources.json │ │ │ │ ├── empty-translation.po │ │ │ │ ├── valid.csv │ │ │ │ ├── resources.php │ │ │ │ ├── plurals.po │ │ │ │ └── resources.csv │ │ │ └── .gitignore │ ├── validator │ │ └── Symfony │ │ │ └── Component │ │ │ └── Validator │ │ │ ├── Tests │ │ │ └── Mapping │ │ │ │ └── Loader │ │ │ │ ├── empty-mapping.yml │ │ │ │ └── nonvalid-mapping.yml │ │ │ └── .gitignore │ ├── intl │ │ └── Symfony │ │ │ └── Component │ │ │ └── Intl │ │ │ ├── .gitignore │ │ │ └── Tests │ │ │ └── ResourceBundle │ │ │ └── Reader │ │ │ └── Fixtures │ │ │ ├── NotAFile │ │ │ └── en.php │ │ │ │ └── .gitkeep │ │ │ └── en.txt │ ├── twig-bridge │ │ └── Symfony │ │ │ └── Bridge │ │ │ └── Twig │ │ │ ├── .gitignore │ │ │ └── Tests │ │ │ └── Extension │ │ │ ├── page_dynamic_extends.html.twig │ │ │ ├── parent_label.html.twig │ │ │ └── child_label.html.twig │ ├── security-core │ │ └── Symfony │ │ │ └── Component │ │ │ └── Security │ │ │ └── Core │ │ │ └── .gitignore │ ├── security-csrf │ │ └── Symfony │ │ │ └── Component │ │ │ └── Security │ │ │ └── Csrf │ │ │ └── .gitignore │ ├── event-dispatcher │ │ └── Symfony │ │ │ └── Component │ │ │ └── EventDispatcher │ │ │ └── .gitignore │ ├── options-resolver │ │ └── Symfony │ │ │ └── Component │ │ │ └── OptionsResolver │ │ │ └── .gitignore │ └── property-access │ │ └── Symfony │ │ └── Component │ │ └── PropertyAccess │ │ ├── .gitignore │ │ └── .gitattributes └── twig │ └── twig │ ├── .gitignore │ └── test │ └── Twig │ └── Tests │ ├── Loader │ └── Fixtures │ │ ├── normal │ │ └── index.html │ │ ├── named │ │ └── index.html │ │ ├── normal_bis │ │ └── index.html │ │ ├── normal_ter │ │ └── index.html │ │ ├── named_bis │ │ └── index.html │ │ ├── named_ter │ │ └── index.html │ │ ├── normal_final │ │ └── index.html │ │ ├── named_final │ │ └── index.html │ │ └── themes │ │ ├── theme2 │ │ └── blocks.html.twig │ │ └── theme1 │ │ └── blocks.html.twig │ └── Fixtures │ ├── errors │ └── base.html │ └── tags │ └── special_chars.test ├── .gitignore ├── tests └── bootstrap.php ├── web ├── favicon.ico ├── img │ ├── logo.png │ ├── rating.png │ ├── rating-0.png │ ├── rating-1.png │ ├── rating-2.png │ ├── rating-3.png │ ├── rating-4.png │ ├── rating-5.png │ ├── app-android.png │ ├── app-iphone.jpg │ ├── avg-rating-0.png │ ├── avg-rating-1.png │ ├── avg-rating-2.png │ ├── avg-rating-3.png │ ├── avg-rating-4.png │ ├── avg-rating-5.png │ ├── logo-combell.png │ ├── marker-icon.png │ ├── rating-delete.png │ ├── event_icons │ │ └── none.png │ └── logo-combell-small.png ├── font │ ├── fontawesome.eot │ ├── fontawesome.ttf │ └── fontawesome.woff ├── leaflet │ └── images │ │ ├── layers.png │ │ ├── marker.png │ │ ├── zoom-in.png │ │ ├── zoom-out.png │ │ ├── marker-icon.png │ │ ├── popup-close.png │ │ └── marker-shadow.png └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── app └── templates └── User └── login.html.twig /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | -------------------------------------------------------------------------------- /vendor/predis/predis/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.5 2 | -------------------------------------------------------------------------------- /vendor/slim/slim/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/symfony/form/Symfony/Component/Form/Tests/Fixtures/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/twig/twig/.gitignore: -------------------------------------------------------------------------------- 1 | /ext/twig/autom4te.cache/ 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | web/css/site.css 3 | web/js/site.js 4 | vendor/.git 5 | -------------------------------------------------------------------------------- /vendor/slim/slim/tests/templates/test.php: -------------------------------------------------------------------------------- 1 | test output 2 | -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/version.txt: -------------------------------------------------------------------------------- 1 | 51.2 2 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/normal/index.html: -------------------------------------------------------------------------------- 1 | path 2 | -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/twig-bridge/Symfony/Bridge/Twig/Tests/Extension/page_dynamic_extends.html.twig: -------------------------------------------------------------------------------- 1 | {% extends dynamic_template_name ~ '.html.twig' %} 2 | -------------------------------------------------------------------------------- /vendor/slim/slim/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - hhvm 8 | 9 | script: phpunit --coverage-text 10 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/plurals.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgid_plural "foos" 3 | msgstr[0] "bar" 4 | msgstr[1] "bars" 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/twig-bridge/Symfony/Bridge/Twig/Tests/Extension/parent_label.html.twig: -------------------------------------------------------------------------------- 1 | {% block form_label %} 2 | 3 | {% endblock form_label %} 4 | -------------------------------------------------------------------------------- /vendor/symfony/twig-bridge/Symfony/Bridge/Twig/Tests/Extension/child_label.html.twig: -------------------------------------------------------------------------------- 1 | {% block form_label %} 2 | 3 | {% endblock form_label %} 4 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Fixtures/tags/special_chars.test: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | "§" custom tag 3 | --TEMPLATE-- 4 | {% § %} 5 | --DATA-- 6 | return array() 7 | --EXPECT-- 8 | § 9 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme2/blocks.html.twig: -------------------------------------------------------------------------------- 1 | {% use '@default_theme/blocks.html.twig' %} 2 | 3 | {% block b2 %}block from theme 2{% endblock %} 4 | -------------------------------------------------------------------------------- /app/templates/User/login.html.twig: -------------------------------------------------------------------------------- 1 | {% extends '/layout.html.twig' %} 2 | 3 | {% block body %} 4 |

Login

5 | {% include '_common/login.html.twig' %} 6 | {% endblock %} 7 | -------------------------------------------------------------------------------- /vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/themes/theme1/blocks.html.twig: -------------------------------------------------------------------------------- 1 | {% block b1 %}block from theme 1{% endblock %} 2 | 3 | {% block b2 %}block from theme 1{% endblock %} 4 | -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/af.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/af.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/agq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/agq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ak.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ak.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/am.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/am.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ar.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ar.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/as.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/as.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/asa.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/asa.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/az.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/az.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bas.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bas.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/be.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/be.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bem.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bem.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bez.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bez.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bm.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/br.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/br.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/brx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/brx.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bs.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ca.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ca.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/cgg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/cgg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/chr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/chr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/cs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/cs.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/cy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/cy.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/da.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/da.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dav.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dav.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/de.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/de.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dje.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dje.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dua.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dua.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dyo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dyo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/dz.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ebu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ebu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ee.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ee.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/el.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/el.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/eo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/eo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/et.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/et.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/eu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/eu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ewo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ewo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fa.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fa.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ff.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ff.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fil.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fil.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ga.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ga.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/gl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/gl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/gsw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/gsw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/gu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/gu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/guz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/guz.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/gv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/gv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ha.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ha.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/haw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/haw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/he.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/he.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hy.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/id.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/id.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ig.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ig.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ii.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ii.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/in.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/in.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/is.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/is.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/it.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/it.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/iw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/iw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ja.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ja.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/jgo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/jgo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/jmc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/jmc.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ka.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ka.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kab.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kab.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kam.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kam.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kde.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kde.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kea.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kea.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/khq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/khq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ki.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ki.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kln.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kln.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/km.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/km.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ko.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ko.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kok.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kok.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ks.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ks.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ksb.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ksb.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ksf.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ksf.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lag.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lag.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ln.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ln.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/luo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/luo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/luy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/luy.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/lv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mas.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mas.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mer.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mfe.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mfe.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mgh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mgh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mgo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mgo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/misc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/misc.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ml.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ml.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ms.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ms.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mua.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mua.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/my.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/my.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/naq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/naq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nb.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nb.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nd.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nd.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ne.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ne.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nmg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nmg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/no.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/no.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nus.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nus.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nyn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nyn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/om.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/om.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/or.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/or.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pa.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pa.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ps.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ps.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rm.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ro.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ro.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rof.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rof.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/root.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/root.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ru.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ru.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rwk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/rwk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/saq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/saq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sbp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sbp.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/seh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/seh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ses.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ses.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/shi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/shi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/si.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/si.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/so.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/so.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/sw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/swc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/swc.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ta.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ta.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/te.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/te.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/teo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/teo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/th.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/th.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ti.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ti.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/tl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/tl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/to.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/to.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/tr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/tr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/twq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/twq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/tzm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/tzm.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/uk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/uk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ur.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ur.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/uz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/uz.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/vai.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/vai.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/vi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/vi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/vun.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/vun.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/xog.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/xog.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/yav.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/yav.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/yo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/yo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/zh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/zh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/zu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/zu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/af.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/af.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/agq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/agq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ak.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ak.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/am.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/am.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ar.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ar.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/as.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/as.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/asa.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/asa.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/az.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/az.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bas.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bas.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/be.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/be.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bem.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bem.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bez.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bez.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bm.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/br.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/br.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/brx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/brx.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/bs.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ca.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ca.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/cgg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/cgg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/chr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/chr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/cs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/cs.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/cy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/cy.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/da.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/da.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dav.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dav.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/de.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/de.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dje.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dje.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dua.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dua.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dyo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dyo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/dz.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ebu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ebu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ee.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ee.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/el.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/el.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/en.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/eo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/eo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/es.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/es.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/et.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/et.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/eu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/eu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ewo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ewo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fa.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fa.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ff.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ff.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fil.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fil.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/fr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ga.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ga.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/gl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/gl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/gsw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/gsw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/gu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/gu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/guz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/guz.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/gv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/gv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ha.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ha.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/haw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/haw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/he.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/he.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/hi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/hi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/hr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/hr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/hu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/hu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/hy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/hy.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/id.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/id.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ig.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ig.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ii.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ii.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/in.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/in.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/is.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/is.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/it.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/it.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/iw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/iw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ja.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ja.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/jgo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/jgo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/jmc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/jmc.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ka.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ka.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kab.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kab.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kam.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kam.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kde.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kde.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kea.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kea.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/khq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/khq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ki.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ki.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kln.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kln.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/km.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/km.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ko.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ko.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kok.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kok.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ks.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ks.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ksb.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ksb.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ksf.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ksf.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/kw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lag.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lag.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ln.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ln.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/luo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/luo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/luy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/luy.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/lv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mas.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mas.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mer.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mfe.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mfe.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mgh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mgh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mgo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mgo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/misc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/misc.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ml.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ml.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ms.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ms.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mua.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/mua.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/my.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/my.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/naq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/naq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nb.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nb.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nd.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nd.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ne.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ne.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nmg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nmg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/no.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/no.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nus.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nus.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nyn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/nyn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/om.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/om.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/or.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/or.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/pa.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/pa.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/pl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/pl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ps.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ps.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/pt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/pt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rm.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ro.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ro.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rof.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rof.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/root.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/root.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ru.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ru.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rwk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/rwk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/saq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/saq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sbp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sbp.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/seh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/seh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ses.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ses.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/shi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/shi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/si.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/si.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/so.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/so.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/sw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/swc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/swc.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ta.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ta.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/te.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/te.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/teo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/teo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/th.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/th.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ti.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ti.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/tl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/tl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/to.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/to.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/tr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/tr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/twq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/twq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/tzm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/tzm.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/uk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/uk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ur.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/ur.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/uz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/uz.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/vai.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/vai.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/vi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/vi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/vun.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/vun.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/xog.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/xog.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/yav.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/yav.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/yo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/yo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/zh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/zh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/zu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/lang/zu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/af.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/af.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ak.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ak.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/am.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/am.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ar.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ar.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/as.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/as.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/az.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/az.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/be.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/be.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bm.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/br.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/br.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/bs.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ca.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ca.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/cs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/cs.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/cy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/cy.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/da.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/da.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/de.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/de.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/dz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/dz.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ee.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ee.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/el.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/el.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/en.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/eo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/eo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/es.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/es.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/et.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/et.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/eu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/eu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/fa.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/fa.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ff.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ff.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/fi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/fi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/fo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/fo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/fr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/fr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ga.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ga.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/gl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/gl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/gu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/gu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/gv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/gv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ha.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ha.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/he.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/he.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/hi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/hi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/hr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/hr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/hu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/hu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/hy.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/hy.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/id.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/id.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ig.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ig.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ii.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ii.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/in.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/in.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/is.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/is.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/it.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/it.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/iw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/iw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ja.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ja.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ka.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ka.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ki.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ki.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/kk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/kk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/kl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/kl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/km.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/km.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/kn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/kn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ko.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ko.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ks.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ks.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/kw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/kw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ln.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ln.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lu.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/lv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ml.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ml.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ms.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ms.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/mt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/my.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/my.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/nb.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/nb.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/nd.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/nd.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ne.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ne.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/nl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/nl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/nn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/nn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/no.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/no.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/om.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/om.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/or.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/or.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/pa.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/pa.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/pl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/pl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ps.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ps.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/pt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/pt.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/rm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/rm.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/rn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/rn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ro.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ro.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ru.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ru.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/rw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/rw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sg.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sg.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/si.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/si.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sn.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/so.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/so.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sq.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sq.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sv.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sv.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/sw.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ta.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ta.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/te.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/te.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/th.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/th.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ti.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ti.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/tl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/tl.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/to.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/to.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/tr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/tr.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/uk.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/uk.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ur.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/ur.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/uz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/uz.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/vi.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/vi.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/yo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/yo.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/zh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/zh.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/zu.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/region/zu.res -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.csv: -------------------------------------------------------------------------------- 1 | "foo"; "bar" 2 | #"bar"; "foo" 3 | "incorrect"; "number"; "columns"; "will"; "be"; "ignored" 4 | "incorrect" -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/af_NA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/af_NA.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ar_DJ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ar_DJ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ar_ER.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ar_ER.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ar_SO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ar_SO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/az_AZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/az_AZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bn_IN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bn_IN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bo_IN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bo_IN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bs_BA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/bs_BA.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/de_CH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/de_CH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/de_LU.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/de_LU.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_AG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_AG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_AU.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_AU.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BB.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BB.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BE.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BE.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BM.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BS.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BW.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_BZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_CA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_CA.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_CM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_CM.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_DM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_DM.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_FJ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_FJ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GB.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GB.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GD.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GI.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GM.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GY.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_GY.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_HK.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_HK.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_IN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_IN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_JM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_JM.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_KE.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_KE.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_KI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_KI.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_KN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_KN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_KY.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_KY.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_LC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_LC.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_LR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_LR.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_LS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_LS.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_MG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_MG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_MT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_MT.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_MU.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_MU.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_MW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_MW.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_NA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_NA.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_NG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_NG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_NH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_NH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_NZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_NZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_PG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_PG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_PH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_PH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_PK.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_PK.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_RH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_RH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SB.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SB.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SC.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SL.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SS.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_SZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_TO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_TO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_TT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_TT.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_TZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_TZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_UG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_UG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_VC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_VC.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_VU.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_VU.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_WS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_WS.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_ZA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_ZA.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_ZM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_ZM.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_ZW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/en_ZW.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_AR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_AR.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_BO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_BO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_CL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_CL.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_CO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_CO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_CR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_CR.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_CU.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_CU.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_DO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_DO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_EC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_EC.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_GT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_GT.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_HN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_HN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_MX.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_MX.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_NI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_NI.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PA.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PE.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PE.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PR.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PY.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_PY.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_US.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_US.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_UY.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_UY.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_VE.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/es_VE.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fa_AF.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fa_AF.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fil_PH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fil_PH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_BI.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_BI.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_CA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_CA.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_CD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_CD.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_CH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_CH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_DJ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_DJ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_DZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_DZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_GN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_GN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_HT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_HT.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_KM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_KM.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_LU.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_LU.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_MG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_MG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_MR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_MR.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_MU.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_MU.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_RW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_RW.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_SC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_SC.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_SY.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_SY.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_TN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/fr_TN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ha_GH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ha_GH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ha_NE.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ha_NE.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ha_NG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ha_NG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/he_IL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/he_IL.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hr_BA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/hr_BA.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/id_ID.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/id_ID.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/in_ID.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/in_ID.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/it_CH.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/it_CH.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/iw_IL.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/iw_IL.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ja_JP.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ja_JP.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kk_KZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/kk_KZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ks_IN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ks_IN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ln_AO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ln_AO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mas_TZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mas_TZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mn_MN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/mn_MN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ms_BN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ms_BN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ms_MY.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ms_MY.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ms_SG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ms_SG.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nb_NO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nb_NO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ne_IN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ne_IN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl_AW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl_AW.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl_CW.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl_CW.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl_SR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl_SR.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl_SX.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nl_SX.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nn_NO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/nn_NO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/no_NO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/no_NO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/om_KE.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/om_KE.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pa_IN.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pa_IN.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pa_PK.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pa_PK.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_AO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_AO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_CV.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_CV.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_MO.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_MO.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_MZ.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_MZ.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_PT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_PT.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_ST.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/pt_ST.res -------------------------------------------------------------------------------- /vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ro_MD.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgdm/joindin-web2/master/vendor/symfony/icu/Symfony/Component/Icu/Resources/data/curr/ro_MD.res --------------------------------------------------------------------------------