state.json 929 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567
  1. {
  2. "Arimo": {},
  3. "Cousine": {},
  4. "Tinos": {},
  5. "adlam": {
  6. "families": {
  7. "Noto Sans Adlam": {
  8. "files": [
  9. "fonts/NotoSansAdlam/googlefonts/ttf/NotoSansAdlam-Regular.ttf",
  10. "fonts/NotoSansAdlam/googlefonts/ttf/NotoSansAdlam-Bold.ttf",
  11. "fonts/NotoSansAdlam/googlefonts/variable-ttf/NotoSansAdlam[wght].ttf",
  12. "fonts/NotoSansAdlam/full/otf/NotoSansAdlam-Regular.otf",
  13. "fonts/NotoSansAdlam/full/otf/NotoSansAdlam-Bold.otf",
  14. "fonts/NotoSansAdlam/full/ttf/NotoSansAdlam-Regular.ttf",
  15. "fonts/NotoSansAdlam/full/ttf/NotoSansAdlam-Bold.ttf",
  16. "fonts/NotoSansAdlam/full/slim-variable-ttf/NotoSansAdlam[wght].ttf",
  17. "fonts/NotoSansAdlam/full/variable-ttf/NotoSansAdlam[wght].ttf",
  18. "fonts/NotoSansAdlam/hinted/ttf/NotoSansAdlam-Regular.ttf",
  19. "fonts/NotoSansAdlam/hinted/ttf/NotoSansAdlam-Bold.ttf",
  20. "fonts/NotoSansAdlam/unhinted/otf/NotoSansAdlam-Regular.otf",
  21. "fonts/NotoSansAdlam/unhinted/otf/NotoSansAdlam-Bold.otf",
  22. "fonts/NotoSansAdlam/unhinted/ttf/NotoSansAdlam-Regular.ttf",
  23. "fonts/NotoSansAdlam/unhinted/ttf/NotoSansAdlam-Bold.ttf",
  24. "fonts/NotoSansAdlam/unhinted/slim-variable-ttf/NotoSansAdlam[wght].ttf",
  25. "fonts/NotoSansAdlam/unhinted/variable-ttf/NotoSansAdlam[wght].ttf"
  26. ],
  27. "latest_release": {
  28. "notes": "Noto Sans Adlam v3.002\n\nThis release:\n\n- Corrects the form of ADLAM VOWEL LENGTHENER when nukta is present (#3)\n- Adds a medial form to ADLAM NASALIZATION MARK (#4)\n- Fixes an interpolation bug (#13)\n- Removes the fraction slash character (#2)\n- Improves the positioning of marks on the dotted circle (#9)\n- Removes the erroneous 'case' feature (#10)\n- Makes the HAMZA stack on modifier glyphs (#11)\n",
  29. "published": "2024-05-16T09:03:52+00:00",
  30. "url": "https://github.com/notofonts/adlam/releases/tag/NotoSansAdlam-v3.002",
  31. "version": "v3.002"
  32. }
  33. },
  34. "Noto Sans Adlam Unjoined": {
  35. "files": [
  36. "fonts/NotoSansAdlamUnjoined/googlefonts/ttf/NotoSansAdlamUnjoined-Regular.ttf",
  37. "fonts/NotoSansAdlamUnjoined/googlefonts/ttf/NotoSansAdlamUnjoined-Bold.ttf",
  38. "fonts/NotoSansAdlamUnjoined/googlefonts/variable-ttf/NotoSansAdlamUnjoined[wght].ttf",
  39. "fonts/NotoSansAdlamUnjoined/full/otf/NotoSansAdlamUnjoined-Regular.otf",
  40. "fonts/NotoSansAdlamUnjoined/full/otf/NotoSansAdlamUnjoined-Bold.otf",
  41. "fonts/NotoSansAdlamUnjoined/full/ttf/NotoSansAdlamUnjoined-Regular.ttf",
  42. "fonts/NotoSansAdlamUnjoined/full/ttf/NotoSansAdlamUnjoined-Bold.ttf",
  43. "fonts/NotoSansAdlamUnjoined/full/slim-variable-ttf/NotoSansAdlamUnjoined[wght].ttf",
  44. "fonts/NotoSansAdlamUnjoined/full/variable-ttf/NotoSansAdlamUnjoined[wght].ttf",
  45. "fonts/NotoSansAdlamUnjoined/hinted/ttf/NotoSansAdlamUnjoined-Regular.ttf",
  46. "fonts/NotoSansAdlamUnjoined/hinted/ttf/NotoSansAdlamUnjoined-Bold.ttf",
  47. "fonts/NotoSansAdlamUnjoined/unhinted/otf/NotoSansAdlamUnjoined-Regular.otf",
  48. "fonts/NotoSansAdlamUnjoined/unhinted/otf/NotoSansAdlamUnjoined-Bold.otf",
  49. "fonts/NotoSansAdlamUnjoined/unhinted/ttf/NotoSansAdlamUnjoined-Regular.ttf",
  50. "fonts/NotoSansAdlamUnjoined/unhinted/ttf/NotoSansAdlamUnjoined-Bold.ttf",
  51. "fonts/NotoSansAdlamUnjoined/unhinted/slim-variable-ttf/NotoSansAdlamUnjoined[wght].ttf",
  52. "fonts/NotoSansAdlamUnjoined/unhinted/variable-ttf/NotoSansAdlamUnjoined[wght].ttf"
  53. ],
  54. "latest_release": {
  55. "notes": "Noto Sans Adlam Unjoined\n\nThis release adds a missing languagesystem, fixing mark positioning.\n",
  56. "published": "2024-05-27T09:25:48+00:00",
  57. "url": "https://github.com/notofonts/adlam/releases/tag/NotoSansAdlamUnjoined-v3.003",
  58. "version": "v3.003"
  59. }
  60. }
  61. },
  62. "known_releases": [
  63. "NotoSansAdlamUnjoined-v3.001",
  64. "NotoSansAdlam-v3.001",
  65. "NotoSansAdlam-v3.002",
  66. "NotoSansAdlamUnjoined-v3.002",
  67. "NotoSansAdlamUnjoined-v3.003"
  68. ]
  69. },
  70. "ahom": {
  71. "families": {
  72. "Noto Serif Ahom": {
  73. "files": [
  74. "fonts/NotoSerifAhom/unhinted/ttf/NotoSerifAhom-Regular.ttf",
  75. "fonts/NotoSerifAhom/unhinted/otf/NotoSerifAhom-Regular.otf",
  76. "fonts/NotoSerifAhom/full/ttf/NotoSerifAhom-Regular.ttf",
  77. "fonts/NotoSerifAhom/full/otf/NotoSerifAhom-Regular.otf",
  78. "fonts/NotoSerifAhom/hinted/ttf/NotoSerifAhom-Regular.ttf",
  79. "fonts/NotoSerifAhom/googlefonts/ttf/NotoSerifAhom-Regular.ttf"
  80. ],
  81. "latest_release": {
  82. "notes": "Noto Serif Ahom v2.007\n\nThis release:\n\n* Improves the formation and positioning of -iu ligatures (#16)\n* Improves kerning (#16)\n",
  83. "published": "2023-09-25T07:59:12",
  84. "url": "https://github.com/notofonts/ahom/releases/tag/NotoSerifAhom-v2.007",
  85. "version": "v2.007"
  86. }
  87. }
  88. },
  89. "known_releases": [
  90. "NotoSerifAhom-v2.005",
  91. "NotoSerifAhom-v2.006",
  92. "NotoSerifAhom-v2.007"
  93. ]
  94. },
  95. "anatolian-hieroglyphs": {
  96. "families": {
  97. "Noto Sans Anatolian Hieroglyphs": {
  98. "files": [
  99. "fonts/NotoSansAnatolianHieroglyphs/full/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf",
  100. "fonts/NotoSansAnatolianHieroglyphs/full/otf/NotoSansAnatolianHieroglyphs-Regular.otf",
  101. "fonts/NotoSansAnatolianHieroglyphs/googlefonts/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf",
  102. "fonts/NotoSansAnatolianHieroglyphs/unhinted/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf",
  103. "fonts/NotoSansAnatolianHieroglyphs/unhinted/otf/NotoSansAnatolianHieroglyphs-Regular.otf",
  104. "fonts/NotoSansAnatolianHieroglyphs/hinted/ttf/NotoSansAnatolianHieroglyphs-Regular.ttf"
  105. ],
  106. "latest_release": {
  107. "notes": "Noto Sans Anatolian Hieroglyphs v2.001\n\nThis release fixes a number of fontbakery fails\n",
  108. "published": "2022-09-20T16:10:47",
  109. "url": "https://github.com/notofonts/anatolian-hieroglyphs/releases/tag/NotoSansAnatolianHieroglyphs-v2.001",
  110. "version": "v2.001"
  111. }
  112. }
  113. },
  114. "known_releases": [
  115. "NotoSansAnatolianHieroglyphs-v2.001"
  116. ]
  117. },
  118. "arabic": {
  119. "families": {
  120. "Noto Kufi Arabic": {
  121. "files": [
  122. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Regular.ttf",
  123. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-ExtraLight.ttf",
  124. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-SemiBold.ttf",
  125. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Black.ttf",
  126. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Thin.ttf",
  127. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Medium.ttf",
  128. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Bold.ttf",
  129. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-ExtraBold.ttf",
  130. "fonts/NotoKufiArabic/hinted/ttf/NotoKufiArabic-Light.ttf",
  131. "fonts/NotoKufiArabic/full/slim-variable-ttf/NotoKufiArabic[wght].ttf",
  132. "fonts/NotoKufiArabic/full/variable-ttf/NotoKufiArabic[wght].ttf",
  133. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Regular.ttf",
  134. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-ExtraLight.ttf",
  135. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-SemiBold.ttf",
  136. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Black.ttf",
  137. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Thin.ttf",
  138. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Medium.ttf",
  139. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Bold.ttf",
  140. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-ExtraBold.ttf",
  141. "fonts/NotoKufiArabic/full/ttf/NotoKufiArabic-Light.ttf",
  142. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Black.otf",
  143. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Thin.otf",
  144. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-ExtraLight.otf",
  145. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Light.otf",
  146. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Regular.otf",
  147. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Bold.otf",
  148. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-Medium.otf",
  149. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-ExtraBold.otf",
  150. "fonts/NotoKufiArabic/full/otf/NotoKufiArabic-SemiBold.otf",
  151. "fonts/NotoKufiArabic/unhinted/slim-variable-ttf/NotoKufiArabic[wght].ttf",
  152. "fonts/NotoKufiArabic/unhinted/variable-ttf/NotoKufiArabic[wght].ttf",
  153. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Regular.ttf",
  154. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-ExtraLight.ttf",
  155. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-SemiBold.ttf",
  156. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Black.ttf",
  157. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Thin.ttf",
  158. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Medium.ttf",
  159. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Bold.ttf",
  160. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-ExtraBold.ttf",
  161. "fonts/NotoKufiArabic/unhinted/ttf/NotoKufiArabic-Light.ttf",
  162. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Black.otf",
  163. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Thin.otf",
  164. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-ExtraLight.otf",
  165. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Light.otf",
  166. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Regular.otf",
  167. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Bold.otf",
  168. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-Medium.otf",
  169. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-ExtraBold.otf",
  170. "fonts/NotoKufiArabic/unhinted/otf/NotoKufiArabic-SemiBold.otf",
  171. "fonts/NotoKufiArabic/googlefonts/variable-ttf/NotoKufiArabic[wght].ttf"
  172. ],
  173. "latest_release": {
  174. "notes": "Noto Kufi Arabic v2.110\n\nThis release:\n\n* Fixes the shape of Kashmiri Yeh (#245, #205)\n* Fixes the shape of U+FDFC (#260, thanks to @khaledhosny)\n* Works around jeem bug in Adobe\u2019s pre-HarfBuzz composers (#247, thanks to @khaledhosny)\n* Fixes the width of some presentation forms\n",
  175. "published": "2025-10-15T10:43:35+00:00",
  176. "url": "https://github.com/notofonts/arabic/releases/tag/NotoKufiArabic-v2.110",
  177. "version": "v2.110"
  178. }
  179. },
  180. "Noto Naskh Arabic": {
  181. "files": [
  182. "fonts/NotoNaskhArabic/hinted/ttf/NotoNaskhArabic-Bold.ttf",
  183. "fonts/NotoNaskhArabic/hinted/ttf/NotoNaskhArabic-Regular.ttf",
  184. "fonts/NotoNaskhArabic/hinted/ttf/NotoNaskhArabic-Medium.ttf",
  185. "fonts/NotoNaskhArabic/hinted/ttf/NotoNaskhArabic-SemiBold.ttf",
  186. "fonts/NotoNaskhArabic/full/slim-variable-ttf/NotoNaskhArabic[wght].ttf",
  187. "fonts/NotoNaskhArabic/full/variable-ttf/NotoNaskhArabic[wght].ttf",
  188. "fonts/NotoNaskhArabic/full/ttf/NotoNaskhArabic-Bold.ttf",
  189. "fonts/NotoNaskhArabic/full/ttf/NotoNaskhArabic-Regular.ttf",
  190. "fonts/NotoNaskhArabic/full/ttf/NotoNaskhArabic-Medium.ttf",
  191. "fonts/NotoNaskhArabic/full/ttf/NotoNaskhArabic-SemiBold.ttf",
  192. "fonts/NotoNaskhArabic/full/otf/NotoNaskhArabic-Regular.otf",
  193. "fonts/NotoNaskhArabic/full/otf/NotoNaskhArabic-SemiBold.otf",
  194. "fonts/NotoNaskhArabic/full/otf/NotoNaskhArabic-Bold.otf",
  195. "fonts/NotoNaskhArabic/full/otf/NotoNaskhArabic-Medium.otf",
  196. "fonts/NotoNaskhArabic/unhinted/slim-variable-ttf/NotoNaskhArabic[wght].ttf",
  197. "fonts/NotoNaskhArabic/unhinted/variable-ttf/NotoNaskhArabic[wght].ttf",
  198. "fonts/NotoNaskhArabic/unhinted/ttf/NotoNaskhArabic-Bold.ttf",
  199. "fonts/NotoNaskhArabic/unhinted/ttf/NotoNaskhArabic-Regular.ttf",
  200. "fonts/NotoNaskhArabic/unhinted/ttf/NotoNaskhArabic-Medium.ttf",
  201. "fonts/NotoNaskhArabic/unhinted/ttf/NotoNaskhArabic-SemiBold.ttf",
  202. "fonts/NotoNaskhArabic/unhinted/otf/NotoNaskhArabic-Regular.otf",
  203. "fonts/NotoNaskhArabic/unhinted/otf/NotoNaskhArabic-SemiBold.otf",
  204. "fonts/NotoNaskhArabic/unhinted/otf/NotoNaskhArabic-Bold.otf",
  205. "fonts/NotoNaskhArabic/unhinted/otf/NotoNaskhArabic-Medium.otf",
  206. "fonts/NotoNaskhArabic/googlefonts/variable-ttf/NotoNaskhArabic[wght].ttf"
  207. ],
  208. "latest_release": {
  209. "notes": "Noto Naskh Arabic v2.021\n\nThis release adds the Saudi Riyal sign (U+20C1), thanks to Khaled Hosny.\n",
  210. "published": "2026-01-16T09:25:27+00:00",
  211. "url": "https://github.com/notofonts/arabic/releases/tag/NotoNaskhArabic-v2.021",
  212. "version": "v2.021"
  213. }
  214. },
  215. "Noto Naskh Arabic UI": {
  216. "files": [
  217. "fonts/NotoNaskhArabicUI/googlefonts/variable-ttf/NotoNaskhArabicUI[wght].ttf",
  218. "fonts/NotoNaskhArabicUI/hinted/ttf/NotoNaskhArabicUI-Bold.ttf",
  219. "fonts/NotoNaskhArabicUI/hinted/ttf/NotoNaskhArabicUI-Regular.ttf",
  220. "fonts/NotoNaskhArabicUI/hinted/ttf/NotoNaskhArabicUI-SemiBold.ttf",
  221. "fonts/NotoNaskhArabicUI/hinted/ttf/NotoNaskhArabicUI-Medium.ttf",
  222. "fonts/NotoNaskhArabicUI/unhinted/otf/NotoNaskhArabicUI-Medium.otf",
  223. "fonts/NotoNaskhArabicUI/unhinted/otf/NotoNaskhArabicUI-Bold.otf",
  224. "fonts/NotoNaskhArabicUI/unhinted/otf/NotoNaskhArabicUI-SemiBold.otf",
  225. "fonts/NotoNaskhArabicUI/unhinted/otf/NotoNaskhArabicUI-Regular.otf",
  226. "fonts/NotoNaskhArabicUI/unhinted/ttf/NotoNaskhArabicUI-Bold.ttf",
  227. "fonts/NotoNaskhArabicUI/unhinted/ttf/NotoNaskhArabicUI-Regular.ttf",
  228. "fonts/NotoNaskhArabicUI/unhinted/ttf/NotoNaskhArabicUI-SemiBold.ttf",
  229. "fonts/NotoNaskhArabicUI/unhinted/ttf/NotoNaskhArabicUI-Medium.ttf",
  230. "fonts/NotoNaskhArabicUI/unhinted/slim-variable-ttf/NotoNaskhArabicUI[wght].ttf",
  231. "fonts/NotoNaskhArabicUI/unhinted/variable-ttf/NotoNaskhArabicUI[wght].ttf"
  232. ],
  233. "latest_release": {
  234. "notes": "Noto Naskh Arabic UI v2.017\n\nThis release de-encodes the U+2011 non-breaking hyphen character.\n",
  235. "published": "2024-06-18T08:22:19+00:00",
  236. "url": "https://github.com/notofonts/arabic/releases/tag/NotoNaskhArabicUI-v2.017",
  237. "version": "v2.017"
  238. }
  239. },
  240. "Noto Sans Arabic": {
  241. "files": [
  242. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedMedium.ttf",
  243. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf",
  244. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedThin.ttf",
  245. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedThin.ttf",
  246. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedBold.ttf",
  247. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Condensed.ttf",
  248. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensed.ttf",
  249. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedExtraBold.ttf",
  250. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedLight.ttf",
  251. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf",
  252. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraLight.ttf",
  253. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedThin.ttf",
  254. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiBold.ttf",
  255. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf",
  256. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Thin.ttf",
  257. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf",
  258. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedMedium.ttf",
  259. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Light.ttf",
  260. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedBold.ttf",
  261. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedBlack.ttf",
  262. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedBlack.ttf",
  263. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedExtraLight.ttf",
  264. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedLight.ttf",
  265. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedBlack.ttf",
  266. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Medium.ttf",
  267. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedLight.ttf",
  268. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedMedium.ttf",
  269. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraBold.ttf",
  270. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedBold.ttf",
  271. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Bold.ttf",
  272. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf",
  273. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Regular.ttf",
  274. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensed.ttf",
  275. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-CondensedSemiBold.ttf",
  276. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-Black.ttf",
  277. "fonts/NotoSansArabic/hinted/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf",
  278. "fonts/NotoSansArabic/full/slim-variable-ttf/NotoSansArabic[wght].ttf",
  279. "fonts/NotoSansArabic/full/variable-ttf/NotoSansArabic[wdth,wght].ttf",
  280. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedMedium.ttf",
  281. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf",
  282. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedThin.ttf",
  283. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedThin.ttf",
  284. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedBold.ttf",
  285. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-Condensed.ttf",
  286. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensed.ttf",
  287. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedExtraBold.ttf",
  288. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedLight.ttf",
  289. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf",
  290. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraLight.ttf",
  291. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedThin.ttf",
  292. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiBold.ttf",
  293. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf",
  294. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-Thin.ttf",
  295. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf",
  296. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedMedium.ttf",
  297. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-Light.ttf",
  298. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedBold.ttf",
  299. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedBlack.ttf",
  300. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedBlack.ttf",
  301. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedExtraLight.ttf",
  302. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedLight.ttf",
  303. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedBlack.ttf",
  304. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-Medium.ttf",
  305. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedLight.ttf",
  306. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedMedium.ttf",
  307. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraBold.ttf",
  308. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedBold.ttf",
  309. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-Bold.ttf",
  310. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf",
  311. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-Regular.ttf",
  312. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensed.ttf",
  313. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-CondensedSemiBold.ttf",
  314. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-Black.ttf",
  315. "fonts/NotoSansArabic/full/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf",
  316. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedSemiBold.otf",
  317. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedSemiBold.otf",
  318. "fonts/NotoSansArabic/full/otf/NotoSansArabic-Medium.otf",
  319. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedMedium.otf",
  320. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedMedium.otf",
  321. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedBlack.otf",
  322. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensed.otf",
  323. "fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedLight.otf",
  324. "fonts/NotoSansArabic/full/otf/NotoSansArabic-Bold.otf",
  325. "fonts/NotoSansArabic/full/otf/NotoSansArabic-Regular.otf",
  326. "fonts/NotoSansArabic/full/otf/NotoSansArabic-Thin.otf",
  327. "fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedExtraLight.otf",
  328. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedBold.otf",
  329. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedExtraLight.otf",
  330. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedExtraLight.otf",
  331. "fonts/NotoSansArabic/full/otf/NotoSansArabic-Light.otf",
  332. "fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedBold.otf",
  333. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedExtraBold.otf",
  334. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraLight.otf",
  335. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensed.otf",
  336. "fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedMedium.otf",
  337. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedExtraBold.otf",
  338. "fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedSemiBold.otf",
  339. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedLight.otf",
  340. "fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedExtraBold.otf",
  341. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedLight.otf",
  342. "fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedBlack.otf",
  343. "fonts/NotoSansArabic/full/otf/NotoSansArabic-Condensed.otf",
  344. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedThin.otf",
  345. "fonts/NotoSansArabic/full/otf/NotoSansArabic-Black.otf",
  346. "fonts/NotoSansArabic/full/otf/NotoSansArabic-CondensedThin.otf",
  347. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiCondensedThin.otf",
  348. "fonts/NotoSansArabic/full/otf/NotoSansArabic-SemiBold.otf",
  349. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedBlack.otf",
  350. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraBold.otf",
  351. "fonts/NotoSansArabic/full/otf/NotoSansArabic-ExtraCondensedBold.otf",
  352. "fonts/NotoSansArabic/unhinted/slim-variable-ttf/NotoSansArabic[wght].ttf",
  353. "fonts/NotoSansArabic/unhinted/variable-ttf/NotoSansArabic[wdth,wght].ttf",
  354. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedMedium.ttf",
  355. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedExtraBold.ttf",
  356. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedThin.ttf",
  357. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedThin.ttf",
  358. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedBold.ttf",
  359. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Condensed.ttf",
  360. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensed.ttf",
  361. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedExtraBold.ttf",
  362. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedLight.ttf",
  363. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedExtraBold.ttf",
  364. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraLight.ttf",
  365. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedThin.ttf",
  366. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiBold.ttf",
  367. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedExtraLight.ttf",
  368. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Thin.ttf",
  369. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedSemiBold.ttf",
  370. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedMedium.ttf",
  371. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Light.ttf",
  372. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedBold.ttf",
  373. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedBlack.ttf",
  374. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedBlack.ttf",
  375. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedExtraLight.ttf",
  376. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedLight.ttf",
  377. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedBlack.ttf",
  378. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Medium.ttf",
  379. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedLight.ttf",
  380. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedMedium.ttf",
  381. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraBold.ttf",
  382. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedBold.ttf",
  383. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Bold.ttf",
  384. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-SemiCondensedSemiBold.ttf",
  385. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Regular.ttf",
  386. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensed.ttf",
  387. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-CondensedSemiBold.ttf",
  388. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-Black.ttf",
  389. "fonts/NotoSansArabic/unhinted/ttf/NotoSansArabic-ExtraCondensedExtraLight.ttf",
  390. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedSemiBold.otf",
  391. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedSemiBold.otf",
  392. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Medium.otf",
  393. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedMedium.otf",
  394. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedMedium.otf",
  395. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedBlack.otf",
  396. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensed.otf",
  397. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedLight.otf",
  398. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Bold.otf",
  399. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Regular.otf",
  400. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Thin.otf",
  401. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedExtraLight.otf",
  402. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedBold.otf",
  403. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedExtraLight.otf",
  404. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedExtraLight.otf",
  405. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Light.otf",
  406. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedBold.otf",
  407. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedExtraBold.otf",
  408. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraLight.otf",
  409. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensed.otf",
  410. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedMedium.otf",
  411. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedExtraBold.otf",
  412. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedSemiBold.otf",
  413. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedLight.otf",
  414. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedExtraBold.otf",
  415. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedLight.otf",
  416. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedBlack.otf",
  417. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Condensed.otf",
  418. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedThin.otf",
  419. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-Black.otf",
  420. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-CondensedThin.otf",
  421. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiCondensedThin.otf",
  422. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-SemiBold.otf",
  423. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedBlack.otf",
  424. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraBold.otf",
  425. "fonts/NotoSansArabic/unhinted/otf/NotoSansArabic-ExtraCondensedBold.otf",
  426. "fonts/NotoSansArabic/googlefonts/variable-ttf/NotoSansArabic[wdth,wght].ttf"
  427. ],
  428. "latest_release": {
  429. "notes": "Noto Sans Arabic 2.013\n\nThis release:\n\n* Adjusts the positioning of some diacritics (#268, #266, #265)\n* Fixes the shape of Kashmiri Yeh (#245, #205)\n* Fixes the shape of U+FDFC (#260, thanks to @khaledhosny)\n* Fixes the shape of alef with hamza below (#246, thanks to @khaledhosny)\n* Works around jeem bug in Adobe\u2019s pre-HarfBuzz composers (#247, thanks to @khaledhosny)\n* Fixes a number of Fontspector fails\n",
  430. "published": "2025-10-15T10:42:32+00:00",
  431. "url": "https://github.com/notofonts/arabic/releases/tag/NotoSansArabic-v2.013",
  432. "version": "v2.013"
  433. }
  434. },
  435. "Noto Sans Arabic UI": {
  436. "files": [
  437. "fonts/NotoSansArabicUI/googlefonts/variable-ttf/NotoSansArabicUI[wdth,wght].ttf",
  438. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedBold.otf",
  439. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Bold.otf",
  440. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Light.otf",
  441. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedSemiBold.otf",
  442. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedThin.otf",
  443. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedLight.otf",
  444. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraLight.otf",
  445. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedExtraLight.otf",
  446. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedBlack.otf",
  447. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedBold.otf",
  448. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedBlack.otf",
  449. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedExtraBold.otf",
  450. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedSemiBold.otf",
  451. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraBold.otf",
  452. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Black.otf",
  453. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Regular.otf",
  454. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedBlack.otf",
  455. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedMedium.otf",
  456. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedLight.otf",
  457. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedExtraBold.otf",
  458. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Medium.otf",
  459. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedBold.otf",
  460. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedExtraBold.otf",
  461. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Thin.otf",
  462. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedExtraLight.otf",
  463. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedThin.otf",
  464. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedThin.otf",
  465. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensed.otf",
  466. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedMedium.otf",
  467. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiBold.otf",
  468. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensed.otf",
  469. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-SemiCondensedSemiBold.otf",
  470. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedLight.otf",
  471. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-ExtraCondensedMedium.otf",
  472. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-Condensed.otf",
  473. "fonts/NotoSansArabicUI/full/otf/NotoSansArabicUI-CondensedExtraLight.otf",
  474. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedSemiBold.ttf",
  475. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedMedium.ttf",
  476. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedExtraLight.ttf",
  477. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensed.ttf",
  478. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedLight.ttf",
  479. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedBold.ttf",
  480. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedExtraBold.ttf",
  481. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Thin.ttf",
  482. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedExtraBold.ttf",
  483. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Light.ttf",
  484. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Regular.ttf",
  485. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedBlack.ttf",
  486. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedExtraLight.ttf",
  487. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedSemiBold.ttf",
  488. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Medium.ttf",
  489. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedThin.ttf",
  490. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedBold.ttf",
  491. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedThin.ttf",
  492. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Bold.ttf",
  493. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Condensed.ttf",
  494. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiBold.ttf",
  495. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensed.ttf",
  496. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedLight.ttf",
  497. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedSemiBold.ttf",
  498. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedBlack.ttf",
  499. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedBold.ttf",
  500. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedExtraBold.ttf",
  501. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-SemiCondensedBlack.ttf",
  502. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedMedium.ttf",
  503. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedThin.ttf",
  504. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedExtraLight.ttf",
  505. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraLight.ttf",
  506. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraCondensedMedium.ttf",
  507. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-ExtraBold.ttf",
  508. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-Black.ttf",
  509. "fonts/NotoSansArabicUI/full/ttf/NotoSansArabicUI-CondensedLight.ttf",
  510. "fonts/NotoSansArabicUI/full/slim-variable-ttf/NotoSansArabicUI[wght].ttf",
  511. "fonts/NotoSansArabicUI/full/variable-ttf/NotoSansArabicUI[wdth,wght].ttf",
  512. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedSemiBold.ttf",
  513. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedMedium.ttf",
  514. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedExtraLight.ttf",
  515. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensed.ttf",
  516. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedLight.ttf",
  517. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedBold.ttf",
  518. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedExtraBold.ttf",
  519. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Thin.ttf",
  520. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedExtraBold.ttf",
  521. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Light.ttf",
  522. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Regular.ttf",
  523. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedBlack.ttf",
  524. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedExtraLight.ttf",
  525. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedSemiBold.ttf",
  526. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Medium.ttf",
  527. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedThin.ttf",
  528. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedBold.ttf",
  529. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedThin.ttf",
  530. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Bold.ttf",
  531. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Condensed.ttf",
  532. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiBold.ttf",
  533. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensed.ttf",
  534. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedLight.ttf",
  535. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedSemiBold.ttf",
  536. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedBlack.ttf",
  537. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedBold.ttf",
  538. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedExtraBold.ttf",
  539. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-SemiCondensedBlack.ttf",
  540. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedMedium.ttf",
  541. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedThin.ttf",
  542. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedExtraLight.ttf",
  543. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraLight.ttf",
  544. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraCondensedMedium.ttf",
  545. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-ExtraBold.ttf",
  546. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-Black.ttf",
  547. "fonts/NotoSansArabicUI/hinted/ttf/NotoSansArabicUI-CondensedLight.ttf",
  548. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedBold.otf",
  549. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Bold.otf",
  550. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Light.otf",
  551. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedSemiBold.otf",
  552. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedThin.otf",
  553. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedLight.otf",
  554. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraLight.otf",
  555. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedExtraLight.otf",
  556. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedBlack.otf",
  557. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedBold.otf",
  558. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedBlack.otf",
  559. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedExtraBold.otf",
  560. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedSemiBold.otf",
  561. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraBold.otf",
  562. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Black.otf",
  563. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Regular.otf",
  564. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedBlack.otf",
  565. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedMedium.otf",
  566. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedLight.otf",
  567. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedExtraBold.otf",
  568. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Medium.otf",
  569. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedBold.otf",
  570. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedExtraBold.otf",
  571. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Thin.otf",
  572. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedExtraLight.otf",
  573. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedThin.otf",
  574. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedThin.otf",
  575. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensed.otf",
  576. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedMedium.otf",
  577. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiBold.otf",
  578. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensed.otf",
  579. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-SemiCondensedSemiBold.otf",
  580. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedLight.otf",
  581. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-ExtraCondensedMedium.otf",
  582. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-Condensed.otf",
  583. "fonts/NotoSansArabicUI/unhinted/otf/NotoSansArabicUI-CondensedExtraLight.otf",
  584. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedSemiBold.ttf",
  585. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedMedium.ttf",
  586. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedExtraLight.ttf",
  587. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensed.ttf",
  588. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedLight.ttf",
  589. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedBold.ttf",
  590. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedExtraBold.ttf",
  591. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Thin.ttf",
  592. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedExtraBold.ttf",
  593. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Light.ttf",
  594. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Regular.ttf",
  595. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedBlack.ttf",
  596. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedExtraLight.ttf",
  597. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedSemiBold.ttf",
  598. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Medium.ttf",
  599. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedThin.ttf",
  600. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedBold.ttf",
  601. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedThin.ttf",
  602. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Bold.ttf",
  603. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Condensed.ttf",
  604. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiBold.ttf",
  605. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensed.ttf",
  606. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedLight.ttf",
  607. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedSemiBold.ttf",
  608. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedBlack.ttf",
  609. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedBold.ttf",
  610. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedExtraBold.ttf",
  611. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-SemiCondensedBlack.ttf",
  612. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedMedium.ttf",
  613. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedThin.ttf",
  614. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedExtraLight.ttf",
  615. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraLight.ttf",
  616. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraCondensedMedium.ttf",
  617. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-ExtraBold.ttf",
  618. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-Black.ttf",
  619. "fonts/NotoSansArabicUI/unhinted/ttf/NotoSansArabicUI-CondensedLight.ttf",
  620. "fonts/NotoSansArabicUI/unhinted/slim-variable-ttf/NotoSansArabicUI[wght].ttf",
  621. "fonts/NotoSansArabicUI/unhinted/variable-ttf/NotoSansArabicUI[wdth,wght].ttf"
  622. ],
  623. "latest_release": {
  624. "notes": "Noto Sans Arabic UI v2.011\n\nThis release unencodes the previously encoded U+2011 non-breaking hyphen.\n",
  625. "published": "2024-06-12T16:09:17+00:00",
  626. "url": "https://github.com/notofonts/arabic/releases/tag/NotoSansArabicUI-v2.011",
  627. "version": "v2.011"
  628. }
  629. }
  630. },
  631. "known_releases": [
  632. "NotoNaskhArabic-v2.013",
  633. "NotoSansArabic-v2.010",
  634. "NotoNaskhArabic-v2.014",
  635. "NotoNaskhArabicUI-v2.014",
  636. "NotoNaskhArabic-v2.015",
  637. "NotoNaskhArabic-v2.016",
  638. "NotoNaskhArabic-v2.017",
  639. "NotoSansArabic-v2.011",
  640. "NotoKufiArabic-v2.108",
  641. "NotoSansArabic-v2.012",
  642. "NotoNaskhArabic-v2.018",
  643. "NotoKufiArabic-v2.109",
  644. "NotoNaskhArabic-v2.019",
  645. "NotoSansArabicUI-v2.011",
  646. "NotoNaskhArabicUI-v2.017",
  647. "NotoSansArabic-v2.013",
  648. "NotoKufiArabic-v2.110",
  649. "NotoNaskhArabic-v2.020",
  650. "NotoNaskhArabic-v2.021"
  651. ]
  652. },
  653. "armenian": {
  654. "families": {
  655. "Noto Sans Armenian": {
  656. "files": [
  657. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedMedium.ttf",
  658. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf",
  659. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedSemiBold.ttf",
  660. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedLight.ttf",
  661. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Medium.ttf",
  662. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedBold.ttf",
  663. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedThin.ttf",
  664. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedBlack.ttf",
  665. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf",
  666. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedBold.ttf",
  667. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedBlack.ttf",
  668. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf",
  669. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Black.ttf",
  670. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Regular.ttf",
  671. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedThin.ttf",
  672. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraBold.ttf",
  673. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedLight.ttf",
  674. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedExtraLight.ttf",
  675. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Thin.ttf",
  676. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf",
  677. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedThin.ttf",
  678. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf",
  679. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf",
  680. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Condensed.ttf",
  681. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Light.ttf",
  682. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiBold.ttf",
  683. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraLight.ttf",
  684. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedExtraBold.ttf",
  685. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf",
  686. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedMedium.ttf",
  687. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-Bold.ttf",
  688. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-CondensedBold.ttf",
  689. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf",
  690. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-ExtraCondensed.ttf",
  691. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensed.ttf",
  692. "fonts/NotoSansArmenian/unhinted/ttf/NotoSansArmenian-SemiCondensedLight.ttf",
  693. "fonts/NotoSansArmenian/unhinted/variable/NotoSansArmenian[wdth,wght].ttf",
  694. "fonts/NotoSansArmenian/unhinted/slim-variable-ttf/NotoSansArmenian[wght].ttf",
  695. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedBold.otf",
  696. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedThin.otf",
  697. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedBlack.otf",
  698. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiBold.otf",
  699. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Black.otf",
  700. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Light.otf",
  701. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedThin.otf",
  702. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedLight.otf",
  703. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Regular.otf",
  704. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedLight.otf",
  705. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedExtraLight.otf",
  706. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedLight.otf",
  707. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedExtraBold.otf",
  708. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraLight.otf",
  709. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedSemiBold.otf",
  710. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensed.otf",
  711. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedExtraLight.otf",
  712. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedMedium.otf",
  713. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedBold.otf",
  714. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Bold.otf",
  715. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedSemiBold.otf",
  716. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedSemiBold.otf",
  717. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Condensed.otf",
  718. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraBold.otf",
  719. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedBlack.otf",
  720. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensedExtraBold.otf",
  721. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedExtraBold.otf",
  722. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedMedium.otf",
  723. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedBold.otf",
  724. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Thin.otf",
  725. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-ExtraCondensed.otf",
  726. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-Medium.otf",
  727. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-CondensedExtraLight.otf",
  728. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedBlack.otf",
  729. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedThin.otf",
  730. "fonts/NotoSansArmenian/unhinted/otf/NotoSansArmenian-SemiCondensedMedium.otf",
  731. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedMedium.ttf",
  732. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf",
  733. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedSemiBold.ttf",
  734. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedLight.ttf",
  735. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Medium.ttf",
  736. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedBold.ttf",
  737. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedThin.ttf",
  738. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedBlack.ttf",
  739. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf",
  740. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedBold.ttf",
  741. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedBlack.ttf",
  742. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf",
  743. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Black.ttf",
  744. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Regular.ttf",
  745. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedThin.ttf",
  746. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraBold.ttf",
  747. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedLight.ttf",
  748. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedExtraLight.ttf",
  749. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Thin.ttf",
  750. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf",
  751. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedThin.ttf",
  752. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf",
  753. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf",
  754. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Condensed.ttf",
  755. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Light.ttf",
  756. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiBold.ttf",
  757. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraLight.ttf",
  758. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedExtraBold.ttf",
  759. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf",
  760. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedMedium.ttf",
  761. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-Bold.ttf",
  762. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-CondensedBold.ttf",
  763. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf",
  764. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-ExtraCondensed.ttf",
  765. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensed.ttf",
  766. "fonts/NotoSansArmenian/full/ttf/NotoSansArmenian-SemiCondensedLight.ttf",
  767. "fonts/NotoSansArmenian/full/variable/NotoSansArmenian[wdth,wght].ttf",
  768. "fonts/NotoSansArmenian/full/slim-variable-ttf/NotoSansArmenian[wght].ttf",
  769. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedBold.otf",
  770. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedThin.otf",
  771. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedBlack.otf",
  772. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiBold.otf",
  773. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Black.otf",
  774. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Light.otf",
  775. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedThin.otf",
  776. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedLight.otf",
  777. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Regular.otf",
  778. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedLight.otf",
  779. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedExtraLight.otf",
  780. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedLight.otf",
  781. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedExtraBold.otf",
  782. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraLight.otf",
  783. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedSemiBold.otf",
  784. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensed.otf",
  785. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedExtraLight.otf",
  786. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedMedium.otf",
  787. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedBold.otf",
  788. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Bold.otf",
  789. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedSemiBold.otf",
  790. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedSemiBold.otf",
  791. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Condensed.otf",
  792. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraBold.otf",
  793. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedBlack.otf",
  794. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensedExtraBold.otf",
  795. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedExtraBold.otf",
  796. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedMedium.otf",
  797. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedBold.otf",
  798. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Thin.otf",
  799. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-ExtraCondensed.otf",
  800. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-Medium.otf",
  801. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-CondensedExtraLight.otf",
  802. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedBlack.otf",
  803. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedThin.otf",
  804. "fonts/NotoSansArmenian/full/otf/NotoSansArmenian-SemiCondensedMedium.otf",
  805. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedMedium.ttf",
  806. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedSemiBold.ttf",
  807. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedSemiBold.ttf",
  808. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedLight.ttf",
  809. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Medium.ttf",
  810. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedBold.ttf",
  811. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedThin.ttf",
  812. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedBlack.ttf",
  813. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedSemiBold.ttf",
  814. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedBold.ttf",
  815. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedBlack.ttf",
  816. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedExtraBold.ttf",
  817. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Black.ttf",
  818. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Regular.ttf",
  819. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedThin.ttf",
  820. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraBold.ttf",
  821. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedLight.ttf",
  822. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedExtraLight.ttf",
  823. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Thin.ttf",
  824. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedExtraLight.ttf",
  825. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedThin.ttf",
  826. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedMedium.ttf",
  827. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedExtraLight.ttf",
  828. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Condensed.ttf",
  829. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Light.ttf",
  830. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiBold.ttf",
  831. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraLight.ttf",
  832. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedExtraBold.ttf",
  833. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedBlack.ttf",
  834. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedMedium.ttf",
  835. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-Bold.ttf",
  836. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-CondensedBold.ttf",
  837. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensedExtraBold.ttf",
  838. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-ExtraCondensed.ttf",
  839. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensed.ttf",
  840. "fonts/NotoSansArmenian/hinted/ttf/NotoSansArmenian-SemiCondensedLight.ttf",
  841. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Medium.ttf",
  842. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Black.ttf",
  843. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Regular.ttf",
  844. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-ExtraBold.ttf",
  845. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Thin.ttf",
  846. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Light.ttf",
  847. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-SemiBold.ttf",
  848. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-ExtraLight.ttf",
  849. "fonts/NotoSansArmenian/googlefonts/ttf/NotoSansArmenian-Bold.ttf",
  850. "fonts/NotoSansArmenian/googlefonts/variable/NotoSansArmenian[wdth,wght].ttf"
  851. ],
  852. "latest_release": {
  853. "notes": "Noto Sans Armenian v2.008\n\nThis release\n\n* Fixes the attachment of dieresis to digraphs (#2)\n* Fixes spacing around dieresis and punctuation (#5)\n* Adds the right single quotation mark U+2019 (#4)\n",
  854. "published": "2023-09-25T11:11:05",
  855. "url": "https://github.com/notofonts/armenian/releases/tag/NotoSansArmenian-v2.008",
  856. "version": "v2.008"
  857. }
  858. },
  859. "Noto Serif Armenian": {
  860. "files": [
  861. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedExtraLight.ttf",
  862. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Regular.ttf",
  863. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedLight.ttf",
  864. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedThin.ttf",
  865. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedThin.ttf",
  866. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedThin.ttf",
  867. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedExtraBold.ttf",
  868. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensed.ttf",
  869. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiBold.ttf",
  870. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Black.ttf",
  871. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Bold.ttf",
  872. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedBlack.ttf",
  873. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedExtraBold.ttf",
  874. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Light.ttf",
  875. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedMedium.ttf",
  876. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedMedium.ttf",
  877. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedSemiBold.ttf",
  878. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraLight.ttf",
  879. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedLight.ttf",
  880. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedBold.ttf",
  881. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedBlack.ttf",
  882. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedExtraLight.ttf",
  883. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraBold.ttf",
  884. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedExtraLight.ttf",
  885. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Condensed.ttf",
  886. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedBold.ttf",
  887. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Thin.ttf",
  888. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedMedium.ttf",
  889. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensed.ttf",
  890. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedBlack.ttf",
  891. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-CondensedSemiBold.ttf",
  892. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedLight.ttf",
  893. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-Medium.ttf",
  894. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedExtraBold.ttf",
  895. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-SemiCondensedSemiBold.ttf",
  896. "fonts/NotoSerifArmenian/unhinted/ttf/NotoSerifArmenian-ExtraCondensedBold.ttf",
  897. "fonts/NotoSerifArmenian/unhinted/variable/NotoSerifArmenian[wdth,wght].ttf",
  898. "fonts/NotoSerifArmenian/unhinted/slim-variable-ttf/NotoSerifArmenian[wght].ttf",
  899. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedExtraBold.otf",
  900. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedSemiBold.otf",
  901. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedExtraBold.otf",
  902. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedLight.otf",
  903. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedBold.otf",
  904. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedThin.otf",
  905. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Black.otf",
  906. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedMedium.otf",
  907. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensed.otf",
  908. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedBlack.otf",
  909. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedExtraLight.otf",
  910. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Regular.otf",
  911. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedSemiBold.otf",
  912. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Bold.otf",
  913. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedThin.otf",
  914. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedBlack.otf",
  915. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedBlack.otf",
  916. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Light.otf",
  917. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedThin.otf",
  918. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedLight.otf",
  919. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedMedium.otf",
  920. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedExtraBold.otf",
  921. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedExtraLight.otf",
  922. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensed.otf",
  923. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Thin.otf",
  924. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiBold.otf",
  925. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedExtraLight.otf",
  926. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraCondensedSemiBold.otf",
  927. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedMedium.otf",
  928. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-CondensedBold.otf",
  929. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedBold.otf",
  930. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraBold.otf",
  931. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Medium.otf",
  932. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-Condensed.otf",
  933. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-ExtraLight.otf",
  934. "fonts/NotoSerifArmenian/unhinted/otf/NotoSerifArmenian-SemiCondensedLight.otf",
  935. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedExtraLight.ttf",
  936. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Regular.ttf",
  937. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedLight.ttf",
  938. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedThin.ttf",
  939. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedThin.ttf",
  940. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedThin.ttf",
  941. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedExtraBold.ttf",
  942. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensed.ttf",
  943. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiBold.ttf",
  944. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Black.ttf",
  945. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Bold.ttf",
  946. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedBlack.ttf",
  947. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedExtraBold.ttf",
  948. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Light.ttf",
  949. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedMedium.ttf",
  950. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedMedium.ttf",
  951. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedSemiBold.ttf",
  952. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraLight.ttf",
  953. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedLight.ttf",
  954. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedBold.ttf",
  955. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedBlack.ttf",
  956. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedExtraLight.ttf",
  957. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraBold.ttf",
  958. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedExtraLight.ttf",
  959. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Condensed.ttf",
  960. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedBold.ttf",
  961. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Thin.ttf",
  962. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedMedium.ttf",
  963. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensed.ttf",
  964. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedBlack.ttf",
  965. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-CondensedSemiBold.ttf",
  966. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedLight.ttf",
  967. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-Medium.ttf",
  968. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedExtraBold.ttf",
  969. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-SemiCondensedSemiBold.ttf",
  970. "fonts/NotoSerifArmenian/full/ttf/NotoSerifArmenian-ExtraCondensedBold.ttf",
  971. "fonts/NotoSerifArmenian/full/variable/NotoSerifArmenian[wdth,wght].ttf",
  972. "fonts/NotoSerifArmenian/full/slim-variable-ttf/NotoSerifArmenian[wght].ttf",
  973. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedExtraBold.otf",
  974. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedSemiBold.otf",
  975. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedExtraBold.otf",
  976. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedLight.otf",
  977. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedBold.otf",
  978. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedThin.otf",
  979. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Black.otf",
  980. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedMedium.otf",
  981. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensed.otf",
  982. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedBlack.otf",
  983. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedExtraLight.otf",
  984. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Regular.otf",
  985. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedSemiBold.otf",
  986. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Bold.otf",
  987. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedThin.otf",
  988. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedBlack.otf",
  989. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedBlack.otf",
  990. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Light.otf",
  991. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedThin.otf",
  992. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedLight.otf",
  993. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedMedium.otf",
  994. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedExtraBold.otf",
  995. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedExtraLight.otf",
  996. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensed.otf",
  997. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Thin.otf",
  998. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiBold.otf",
  999. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedExtraLight.otf",
  1000. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraCondensedSemiBold.otf",
  1001. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedMedium.otf",
  1002. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-CondensedBold.otf",
  1003. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedBold.otf",
  1004. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraBold.otf",
  1005. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Medium.otf",
  1006. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-Condensed.otf",
  1007. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-ExtraLight.otf",
  1008. "fonts/NotoSerifArmenian/full/otf/NotoSerifArmenian-SemiCondensedLight.otf",
  1009. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensedExtraLight.ttf",
  1010. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-Regular.ttf",
  1011. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-CondensedLight.ttf",
  1012. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensedThin.ttf",
  1013. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensedThin.ttf",
  1014. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-CondensedThin.ttf",
  1015. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensedExtraBold.ttf",
  1016. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensed.ttf",
  1017. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiBold.ttf",
  1018. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-Black.ttf",
  1019. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-Bold.ttf",
  1020. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensedBlack.ttf",
  1021. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-CondensedExtraBold.ttf",
  1022. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-Light.ttf",
  1023. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensedMedium.ttf",
  1024. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensedMedium.ttf",
  1025. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensedSemiBold.ttf",
  1026. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraLight.ttf",
  1027. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensedLight.ttf",
  1028. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-CondensedBold.ttf",
  1029. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-CondensedBlack.ttf",
  1030. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-CondensedExtraLight.ttf",
  1031. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraBold.ttf",
  1032. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensedExtraLight.ttf",
  1033. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-Condensed.ttf",
  1034. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensedBold.ttf",
  1035. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-Thin.ttf",
  1036. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-CondensedMedium.ttf",
  1037. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensed.ttf",
  1038. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensedBlack.ttf",
  1039. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-CondensedSemiBold.ttf",
  1040. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensedLight.ttf",
  1041. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-Medium.ttf",
  1042. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensedExtraBold.ttf",
  1043. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-SemiCondensedSemiBold.ttf",
  1044. "fonts/NotoSerifArmenian/hinted/ttf/NotoSerifArmenian-ExtraCondensedBold.ttf",
  1045. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-Regular.ttf",
  1046. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-SemiBold.ttf",
  1047. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-Black.ttf",
  1048. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-Bold.ttf",
  1049. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-Light.ttf",
  1050. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-ExtraLight.ttf",
  1051. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-ExtraBold.ttf",
  1052. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-Thin.ttf",
  1053. "fonts/NotoSerifArmenian/googlefonts/ttf/NotoSerifArmenian-Medium.ttf",
  1054. "fonts/NotoSerifArmenian/googlefonts/variable/NotoSerifArmenian[wdth,wght].ttf"
  1055. ],
  1056. "latest_release": {
  1057. "notes": "Noto Serif Armenian v2.008\n\nThis release\n\n* Fixes the attachment of dieresis to digraphs (#2)\n* Fixes spacing around dieresis and punctuation (#5)\n* Adds the right single quotation mark U+2019 (#4)\n",
  1058. "published": "2023-09-25T11:05:45",
  1059. "url": "https://github.com/notofonts/armenian/releases/tag/NotoSerifArmenian-v2.008",
  1060. "version": "v2.008"
  1061. }
  1062. }
  1063. },
  1064. "known_releases": [
  1065. "NotoSansArmenian-v2.006",
  1066. "NotoSerifArmenian-v2.006",
  1067. "NotoSansArmenian-v2.007",
  1068. "NotoSerifArmenian-v2.007",
  1069. "NotoSerifArmenian-v2.008",
  1070. "NotoSansArmenian-v2.008"
  1071. ]
  1072. },
  1073. "avestan": {
  1074. "families": {
  1075. "Noto Sans Avestan": {
  1076. "files": [
  1077. "fonts/NotoSansAvestan/unhinted/ttf/NotoSansAvestan-Regular.ttf",
  1078. "fonts/NotoSansAvestan/unhinted/otf/NotoSansAvestan-Regular.otf",
  1079. "fonts/NotoSansAvestan/full/ttf/NotoSansAvestan-Regular.ttf",
  1080. "fonts/NotoSansAvestan/full/otf/NotoSansAvestan-Regular.otf",
  1081. "fonts/NotoSansAvestan/googlefonts/ttf/NotoSansAvestan-Regular.ttf",
  1082. "fonts/NotoSansAvestan/hinted/ttf/NotoSansAvestan-Regular.ttf"
  1083. ],
  1084. "latest_release": {
  1085. "notes": "Noto Sans Avestan v2.003\n\nThis release contains no source changes, but rebuilds the font with the latest toolchain, restoring autohinting. (#1)\n",
  1086. "published": "2023-01-03T09:28:44",
  1087. "url": "https://github.com/notofonts/avestan/releases/tag/NotoSansAvestan-v2.003",
  1088. "version": "v2.003"
  1089. }
  1090. }
  1091. },
  1092. "known_releases": [
  1093. "NotoSansAvestan-v2.002",
  1094. "NotoSansAvestan-v2.003"
  1095. ]
  1096. },
  1097. "balinese": {
  1098. "families": {
  1099. "Noto Sans Balinese": {
  1100. "files": [
  1101. "fonts/NotoSansBalinese/googlefonts/ttf/NotoSansBalinese-SemiBold.ttf",
  1102. "fonts/NotoSansBalinese/googlefonts/ttf/NotoSansBalinese-Medium.ttf",
  1103. "fonts/NotoSansBalinese/googlefonts/ttf/NotoSansBalinese-Regular.ttf",
  1104. "fonts/NotoSansBalinese/googlefonts/ttf/NotoSansBalinese-Bold.ttf",
  1105. "fonts/NotoSansBalinese/googlefonts/variable-ttf/NotoSansBalinese[wght].ttf",
  1106. "fonts/NotoSansBalinese/full/otf/NotoSansBalinese-Medium.otf",
  1107. "fonts/NotoSansBalinese/full/otf/NotoSansBalinese-Bold.otf",
  1108. "fonts/NotoSansBalinese/full/otf/NotoSansBalinese-SemiBold.otf",
  1109. "fonts/NotoSansBalinese/full/otf/NotoSansBalinese-Regular.otf",
  1110. "fonts/NotoSansBalinese/full/ttf/NotoSansBalinese-SemiBold.ttf",
  1111. "fonts/NotoSansBalinese/full/ttf/NotoSansBalinese-Medium.ttf",
  1112. "fonts/NotoSansBalinese/full/ttf/NotoSansBalinese-Regular.ttf",
  1113. "fonts/NotoSansBalinese/full/ttf/NotoSansBalinese-Bold.ttf",
  1114. "fonts/NotoSansBalinese/full/slim-variable-ttf/NotoSansBalinese[wght].ttf",
  1115. "fonts/NotoSansBalinese/full/variable-ttf/NotoSansBalinese[wght].ttf",
  1116. "fonts/NotoSansBalinese/hinted/ttf/NotoSansBalinese-SemiBold.ttf",
  1117. "fonts/NotoSansBalinese/hinted/ttf/NotoSansBalinese-Medium.ttf",
  1118. "fonts/NotoSansBalinese/hinted/ttf/NotoSansBalinese-Regular.ttf",
  1119. "fonts/NotoSansBalinese/hinted/ttf/NotoSansBalinese-Bold.ttf",
  1120. "fonts/NotoSansBalinese/unhinted/otf/NotoSansBalinese-Medium.otf",
  1121. "fonts/NotoSansBalinese/unhinted/otf/NotoSansBalinese-Bold.otf",
  1122. "fonts/NotoSansBalinese/unhinted/otf/NotoSansBalinese-SemiBold.otf",
  1123. "fonts/NotoSansBalinese/unhinted/otf/NotoSansBalinese-Regular.otf",
  1124. "fonts/NotoSansBalinese/unhinted/ttf/NotoSansBalinese-SemiBold.ttf",
  1125. "fonts/NotoSansBalinese/unhinted/ttf/NotoSansBalinese-Medium.ttf",
  1126. "fonts/NotoSansBalinese/unhinted/ttf/NotoSansBalinese-Regular.ttf",
  1127. "fonts/NotoSansBalinese/unhinted/ttf/NotoSansBalinese-Bold.ttf",
  1128. "fonts/NotoSansBalinese/unhinted/slim-variable-ttf/NotoSansBalinese[wght].ttf",
  1129. "fonts/NotoSansBalinese/unhinted/variable-ttf/NotoSansBalinese[wght].ttf"
  1130. ],
  1131. "latest_release": {
  1132. "notes": "Noto Sans Balinese v2.006\n\nThis release ignores marks when forming tedung ligatures (#40) and fixes various fontbakery fails.\n",
  1133. "published": "2024-05-16T10:43:22+00:00",
  1134. "url": "https://github.com/notofonts/balinese/releases/tag/NotoSansBalinese-v2.006",
  1135. "version": "v2.006"
  1136. }
  1137. },
  1138. "Noto Serif Balinese": {
  1139. "files": [
  1140. "fonts/NotoSerifBalinese/hinted/ttf/NotoSerifBalinese-Regular.ttf",
  1141. "fonts/NotoSerifBalinese/unhinted/ttf/NotoSerifBalinese-Regular.ttf",
  1142. "fonts/NotoSerifBalinese/unhinted/otf/NotoSerifBalinese-Regular.otf",
  1143. "fonts/NotoSerifBalinese/googlefonts/ttf/NotoSerifBalinese-Regular.ttf",
  1144. "fonts/NotoSerifBalinese/full/ttf/NotoSerifBalinese-Regular.ttf",
  1145. "fonts/NotoSerifBalinese/full/otf/NotoSerifBalinese-Regular.otf"
  1146. ],
  1147. "latest_release": {
  1148. "notes": "Noto Serif Balinese v2.007\n\nThis release fixes overlaps between some above marks (#8)\n",
  1149. "published": "2024-07-09T08:41:06+00:00",
  1150. "url": "https://github.com/notofonts/balinese/releases/tag/NotoSerifBalinese-v2.007",
  1151. "version": "v2.007"
  1152. }
  1153. }
  1154. },
  1155. "known_releases": [
  1156. "NotoSerifBalinese-v2.003",
  1157. "NotoSansBalinese-v2.003",
  1158. "NotoSerifBalinese-v2.004",
  1159. "NotoSerifBalinese-v2.005",
  1160. "NotoSansBalinese-v2.004",
  1161. "NotoSansBalinese-v2.005",
  1162. "NotoSansBalinese-v2.006",
  1163. "NotoSerifBalinese-v2.006",
  1164. "NotoSerifBalinese-v2.007"
  1165. ]
  1166. },
  1167. "bamum": {
  1168. "families": {
  1169. "Noto Sans Bamum": {
  1170. "files": [
  1171. "fonts/NotoSansBamum/hinted/ttf/NotoSansBamum-SemiBold.ttf",
  1172. "fonts/NotoSansBamum/hinted/ttf/NotoSansBamum-Medium.ttf",
  1173. "fonts/NotoSansBamum/hinted/ttf/NotoSansBamum-Bold.ttf",
  1174. "fonts/NotoSansBamum/hinted/ttf/NotoSansBamum-Regular.ttf",
  1175. "fonts/NotoSansBamum/unhinted/otf/NotoSansBamum-SemiBold.otf",
  1176. "fonts/NotoSansBamum/unhinted/otf/NotoSansBamum-Bold.otf",
  1177. "fonts/NotoSansBamum/unhinted/otf/NotoSansBamum-Medium.otf",
  1178. "fonts/NotoSansBamum/unhinted/otf/NotoSansBamum-Regular.otf",
  1179. "fonts/NotoSansBamum/unhinted/variable-ttf/NotoSansBamum[wght].ttf",
  1180. "fonts/NotoSansBamum/unhinted/ttf/NotoSansBamum-SemiBold.ttf",
  1181. "fonts/NotoSansBamum/unhinted/ttf/NotoSansBamum-Medium.ttf",
  1182. "fonts/NotoSansBamum/unhinted/ttf/NotoSansBamum-Bold.ttf",
  1183. "fonts/NotoSansBamum/unhinted/ttf/NotoSansBamum-Regular.ttf",
  1184. "fonts/NotoSansBamum/unhinted/slim-variable-ttf/NotoSansBamum[wght].ttf",
  1185. "fonts/NotoSansBamum/full/otf/NotoSansBamum-SemiBold.otf",
  1186. "fonts/NotoSansBamum/full/otf/NotoSansBamum-Bold.otf",
  1187. "fonts/NotoSansBamum/full/otf/NotoSansBamum-Medium.otf",
  1188. "fonts/NotoSansBamum/full/otf/NotoSansBamum-Regular.otf",
  1189. "fonts/NotoSansBamum/full/variable-ttf/NotoSansBamum[wght].ttf",
  1190. "fonts/NotoSansBamum/full/ttf/NotoSansBamum-SemiBold.ttf",
  1191. "fonts/NotoSansBamum/full/ttf/NotoSansBamum-Medium.ttf",
  1192. "fonts/NotoSansBamum/full/ttf/NotoSansBamum-Bold.ttf",
  1193. "fonts/NotoSansBamum/full/ttf/NotoSansBamum-Regular.ttf",
  1194. "fonts/NotoSansBamum/full/slim-variable-ttf/NotoSansBamum[wght].ttf",
  1195. "fonts/NotoSansBamum/googlefonts/variable-ttf/NotoSansBamum[wght].ttf",
  1196. "fonts/NotoSansBamum/googlefonts/ttf/NotoSansBamum-SemiBold.ttf",
  1197. "fonts/NotoSansBamum/googlefonts/ttf/NotoSansBamum-Medium.ttf",
  1198. "fonts/NotoSansBamum/googlefonts/ttf/NotoSansBamum-Bold.ttf",
  1199. "fonts/NotoSansBamum/googlefonts/ttf/NotoSansBamum-Regular.ttf"
  1200. ],
  1201. "latest_release": {
  1202. "notes": "Noto Sans Bamum v2.002 This release fixes variable font interpolation bugs with letters REE and PI.\n",
  1203. "published": "2022-10-26T11:27:10",
  1204. "url": "https://github.com/notofonts/bamum/releases/tag/NotoSansBamum-v2.002",
  1205. "version": "v2.002"
  1206. }
  1207. }
  1208. },
  1209. "known_releases": [
  1210. "NotoSansBamum-v2.001",
  1211. "NotoSansBamum-v2.002"
  1212. ]
  1213. },
  1214. "bassa-vah": {
  1215. "families": {
  1216. "Noto Sans Bassa Vah": {
  1217. "files": [
  1218. "fonts/NotoSansBassaVah/full/slim-variable-ttf/NotoSansBassaVah[wght].ttf",
  1219. "fonts/NotoSansBassaVah/full/ttf/NotoSansBassaVah-Regular.ttf",
  1220. "fonts/NotoSansBassaVah/full/ttf/NotoSansBassaVah-SemiBold.ttf",
  1221. "fonts/NotoSansBassaVah/full/ttf/NotoSansBassaVah-Bold.ttf",
  1222. "fonts/NotoSansBassaVah/full/ttf/NotoSansBassaVah-Medium.ttf",
  1223. "fonts/NotoSansBassaVah/full/variable-ttf/NotoSansBassaVah[wght].ttf",
  1224. "fonts/NotoSansBassaVah/full/otf/NotoSansBassaVah-Bold.otf",
  1225. "fonts/NotoSansBassaVah/full/otf/NotoSansBassaVah-Regular.otf",
  1226. "fonts/NotoSansBassaVah/full/otf/NotoSansBassaVah-SemiBold.otf",
  1227. "fonts/NotoSansBassaVah/full/otf/NotoSansBassaVah-Medium.otf",
  1228. "fonts/NotoSansBassaVah/googlefonts/ttf/NotoSansBassaVah-Regular.ttf",
  1229. "fonts/NotoSansBassaVah/googlefonts/ttf/NotoSansBassaVah-SemiBold.ttf",
  1230. "fonts/NotoSansBassaVah/googlefonts/ttf/NotoSansBassaVah-Bold.ttf",
  1231. "fonts/NotoSansBassaVah/googlefonts/ttf/NotoSansBassaVah-Medium.ttf",
  1232. "fonts/NotoSansBassaVah/googlefonts/variable-ttf/NotoSansBassaVah[wght].ttf",
  1233. "fonts/NotoSansBassaVah/unhinted/slim-variable-ttf/NotoSansBassaVah[wght].ttf",
  1234. "fonts/NotoSansBassaVah/unhinted/ttf/NotoSansBassaVah-Regular.ttf",
  1235. "fonts/NotoSansBassaVah/unhinted/ttf/NotoSansBassaVah-SemiBold.ttf",
  1236. "fonts/NotoSansBassaVah/unhinted/ttf/NotoSansBassaVah-Bold.ttf",
  1237. "fonts/NotoSansBassaVah/unhinted/ttf/NotoSansBassaVah-Medium.ttf",
  1238. "fonts/NotoSansBassaVah/unhinted/variable-ttf/NotoSansBassaVah[wght].ttf",
  1239. "fonts/NotoSansBassaVah/unhinted/otf/NotoSansBassaVah-Bold.otf",
  1240. "fonts/NotoSansBassaVah/unhinted/otf/NotoSansBassaVah-Regular.otf",
  1241. "fonts/NotoSansBassaVah/unhinted/otf/NotoSansBassaVah-SemiBold.otf",
  1242. "fonts/NotoSansBassaVah/unhinted/otf/NotoSansBassaVah-Medium.otf",
  1243. "fonts/NotoSansBassaVah/hinted/ttf/NotoSansBassaVah-Regular.ttf",
  1244. "fonts/NotoSansBassaVah/hinted/ttf/NotoSansBassaVah-SemiBold.ttf",
  1245. "fonts/NotoSansBassaVah/hinted/ttf/NotoSansBassaVah-Bold.ttf",
  1246. "fonts/NotoSansBassaVah/hinted/ttf/NotoSansBassaVah-Medium.ttf"
  1247. ],
  1248. "latest_release": {
  1249. "notes": "Noto Sans Bassa Vah v2.002\n\nThis is an administrative release; it fixes a number of fontbakery\nfails.\n",
  1250. "published": "2022-08-23T13:25:17",
  1251. "url": "https://github.com/notofonts/bassa-vah/releases/tag/NotoSansBassaVah-v2.002",
  1252. "version": "v2.002"
  1253. }
  1254. }
  1255. },
  1256. "known_releases": [
  1257. "NotoSansBassaVah-v2.002"
  1258. ]
  1259. },
  1260. "batak": {
  1261. "families": {
  1262. "Noto Sans Batak": {
  1263. "files": [
  1264. "fonts/NotoSansBatak/unhinted/ttf/NotoSansBatak-Regular.ttf",
  1265. "fonts/NotoSansBatak/unhinted/otf/NotoSansBatak-Regular.otf",
  1266. "fonts/NotoSansBatak/full/ttf/NotoSansBatak-Regular.ttf",
  1267. "fonts/NotoSansBatak/full/otf/NotoSansBatak-Regular.otf",
  1268. "fonts/NotoSansBatak/googlefonts/ttf/NotoSansBatak-Regular.ttf",
  1269. "fonts/NotoSansBatak/hinted/ttf/NotoSansBatak-Regular.ttf"
  1270. ],
  1271. "latest_release": {
  1272. "notes": "Noto Sans Batak v2.004\n\nThis release fixes a number of ligature forms of the u-vowel. (#7)\n",
  1273. "published": "2025-06-25T17:01:25+00:00",
  1274. "url": "https://github.com/notofonts/batak/releases/tag/NotoSansBatak-v2.004",
  1275. "version": "v2.004"
  1276. }
  1277. }
  1278. },
  1279. "known_releases": [
  1280. "NotoSansBatak-v2.002",
  1281. "NotoSansBatak-v2.003",
  1282. "NotoSansBatak-v2.004"
  1283. ]
  1284. },
  1285. "bengali": {
  1286. "families": {
  1287. "Noto Sans Bengali": {
  1288. "files": [
  1289. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-Medium.ttf",
  1290. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensedExtraLight.ttf",
  1291. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-Black.ttf",
  1292. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-CondensedBlack.ttf",
  1293. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-CondensedSemiBold.ttf",
  1294. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-Thin.ttf",
  1295. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensedBold.ttf",
  1296. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensed.ttf",
  1297. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-CondensedMedium.ttf",
  1298. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensedBlack.ttf",
  1299. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraBold.ttf",
  1300. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensedThin.ttf",
  1301. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraLight.ttf",
  1302. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensed.ttf",
  1303. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensedExtraLight.ttf",
  1304. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiBold.ttf",
  1305. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensedBlack.ttf",
  1306. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-Light.ttf",
  1307. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-CondensedBold.ttf",
  1308. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-Condensed.ttf",
  1309. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensedMedium.ttf",
  1310. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensedSemiBold.ttf",
  1311. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensedThin.ttf",
  1312. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-CondensedThin.ttf",
  1313. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-Regular.ttf",
  1314. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensedBold.ttf",
  1315. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-CondensedExtraLight.ttf",
  1316. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensedLight.ttf",
  1317. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-CondensedExtraBold.ttf",
  1318. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-Bold.ttf",
  1319. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensedSemiBold.ttf",
  1320. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensedExtraBold.ttf",
  1321. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-ExtraCondensedExtraBold.ttf",
  1322. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensedMedium.ttf",
  1323. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-CondensedLight.ttf",
  1324. "fonts/NotoSansBengali/hinted/ttf/NotoSansBengali-SemiCondensedLight.ttf",
  1325. "fonts/NotoSansBengali/full/slim-variable-ttf/NotoSansBengali[wght].ttf",
  1326. "fonts/NotoSansBengali/full/variable-ttf/NotoSansBengali[wdth,wght].ttf",
  1327. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-Medium.ttf",
  1328. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensedExtraLight.ttf",
  1329. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-Black.ttf",
  1330. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-CondensedBlack.ttf",
  1331. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-CondensedSemiBold.ttf",
  1332. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-Thin.ttf",
  1333. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensedBold.ttf",
  1334. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensed.ttf",
  1335. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-CondensedMedium.ttf",
  1336. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensedBlack.ttf",
  1337. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraBold.ttf",
  1338. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensedThin.ttf",
  1339. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraLight.ttf",
  1340. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensed.ttf",
  1341. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensedExtraLight.ttf",
  1342. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiBold.ttf",
  1343. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensedBlack.ttf",
  1344. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-Light.ttf",
  1345. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-CondensedBold.ttf",
  1346. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-Condensed.ttf",
  1347. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensedMedium.ttf",
  1348. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensedSemiBold.ttf",
  1349. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensedThin.ttf",
  1350. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-CondensedThin.ttf",
  1351. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-Regular.ttf",
  1352. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensedBold.ttf",
  1353. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-CondensedExtraLight.ttf",
  1354. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensedLight.ttf",
  1355. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-CondensedExtraBold.ttf",
  1356. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-Bold.ttf",
  1357. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensedSemiBold.ttf",
  1358. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensedExtraBold.ttf",
  1359. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-ExtraCondensedExtraBold.ttf",
  1360. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensedMedium.ttf",
  1361. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-CondensedLight.ttf",
  1362. "fonts/NotoSansBengali/full/ttf/NotoSansBengali-SemiCondensedLight.ttf",
  1363. "fonts/NotoSansBengali/full/otf/NotoSansBengali-CondensedBlack.otf",
  1364. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraBold.otf",
  1365. "fonts/NotoSansBengali/full/otf/NotoSansBengali-CondensedSemiBold.otf",
  1366. "fonts/NotoSansBengali/full/otf/NotoSansBengali-CondensedBold.otf",
  1367. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensedMedium.otf",
  1368. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensedExtraLight.otf",
  1369. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensedThin.otf",
  1370. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensedLight.otf",
  1371. "fonts/NotoSansBengali/full/otf/NotoSansBengali-Regular.otf",
  1372. "fonts/NotoSansBengali/full/otf/NotoSansBengali-Condensed.otf",
  1373. "fonts/NotoSansBengali/full/otf/NotoSansBengali-Black.otf",
  1374. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensedThin.otf",
  1375. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensedBlack.otf",
  1376. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensedSemiBold.otf",
  1377. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensedLight.otf",
  1378. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensedMedium.otf",
  1379. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensedBlack.otf",
  1380. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensedExtraBold.otf",
  1381. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensedSemiBold.otf",
  1382. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensedExtraLight.otf",
  1383. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiBold.otf",
  1384. "fonts/NotoSansBengali/full/otf/NotoSansBengali-CondensedThin.otf",
  1385. "fonts/NotoSansBengali/full/otf/NotoSansBengali-Light.otf",
  1386. "fonts/NotoSansBengali/full/otf/NotoSansBengali-CondensedExtraLight.otf",
  1387. "fonts/NotoSansBengali/full/otf/NotoSansBengali-Thin.otf",
  1388. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraLight.otf",
  1389. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensed.otf",
  1390. "fonts/NotoSansBengali/full/otf/NotoSansBengali-CondensedLight.otf",
  1391. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensedBold.otf",
  1392. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensedExtraBold.otf",
  1393. "fonts/NotoSansBengali/full/otf/NotoSansBengali-SemiCondensed.otf",
  1394. "fonts/NotoSansBengali/full/otf/NotoSansBengali-ExtraCondensedBold.otf",
  1395. "fonts/NotoSansBengali/full/otf/NotoSansBengali-Medium.otf",
  1396. "fonts/NotoSansBengali/full/otf/NotoSansBengali-CondensedExtraBold.otf",
  1397. "fonts/NotoSansBengali/full/otf/NotoSansBengali-CondensedMedium.otf",
  1398. "fonts/NotoSansBengali/full/otf/NotoSansBengali-Bold.otf",
  1399. "fonts/NotoSansBengali/unhinted/slim-variable-ttf/NotoSansBengali[wght].ttf",
  1400. "fonts/NotoSansBengali/unhinted/variable-ttf/NotoSansBengali[wdth,wght].ttf",
  1401. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-Medium.ttf",
  1402. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensedExtraLight.ttf",
  1403. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-Black.ttf",
  1404. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-CondensedBlack.ttf",
  1405. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-CondensedSemiBold.ttf",
  1406. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-Thin.ttf",
  1407. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensedBold.ttf",
  1408. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensed.ttf",
  1409. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-CondensedMedium.ttf",
  1410. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensedBlack.ttf",
  1411. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraBold.ttf",
  1412. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensedThin.ttf",
  1413. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraLight.ttf",
  1414. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensed.ttf",
  1415. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensedExtraLight.ttf",
  1416. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiBold.ttf",
  1417. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensedBlack.ttf",
  1418. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-Light.ttf",
  1419. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-CondensedBold.ttf",
  1420. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-Condensed.ttf",
  1421. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensedMedium.ttf",
  1422. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensedSemiBold.ttf",
  1423. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensedThin.ttf",
  1424. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-CondensedThin.ttf",
  1425. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-Regular.ttf",
  1426. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensedBold.ttf",
  1427. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-CondensedExtraLight.ttf",
  1428. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensedLight.ttf",
  1429. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-CondensedExtraBold.ttf",
  1430. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-Bold.ttf",
  1431. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensedSemiBold.ttf",
  1432. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensedExtraBold.ttf",
  1433. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-ExtraCondensedExtraBold.ttf",
  1434. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensedMedium.ttf",
  1435. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-CondensedLight.ttf",
  1436. "fonts/NotoSansBengali/unhinted/ttf/NotoSansBengali-SemiCondensedLight.ttf",
  1437. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-CondensedBlack.otf",
  1438. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraBold.otf",
  1439. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-CondensedSemiBold.otf",
  1440. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-CondensedBold.otf",
  1441. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensedMedium.otf",
  1442. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensedExtraLight.otf",
  1443. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensedThin.otf",
  1444. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensedLight.otf",
  1445. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-Regular.otf",
  1446. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-Condensed.otf",
  1447. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-Black.otf",
  1448. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensedThin.otf",
  1449. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensedBlack.otf",
  1450. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensedSemiBold.otf",
  1451. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensedLight.otf",
  1452. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensedMedium.otf",
  1453. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensedBlack.otf",
  1454. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensedExtraBold.otf",
  1455. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensedSemiBold.otf",
  1456. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensedExtraLight.otf",
  1457. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiBold.otf",
  1458. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-CondensedThin.otf",
  1459. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-Light.otf",
  1460. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-CondensedExtraLight.otf",
  1461. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-Thin.otf",
  1462. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraLight.otf",
  1463. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensed.otf",
  1464. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-CondensedLight.otf",
  1465. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensedBold.otf",
  1466. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensedExtraBold.otf",
  1467. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-SemiCondensed.otf",
  1468. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-ExtraCondensedBold.otf",
  1469. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-Medium.otf",
  1470. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-CondensedExtraBold.otf",
  1471. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-CondensedMedium.otf",
  1472. "fonts/NotoSansBengali/unhinted/otf/NotoSansBengali-Bold.otf",
  1473. "fonts/NotoSansBengali/googlefonts/variable-ttf/NotoSansBengali[wdth,wght].ttf"
  1474. ],
  1475. "latest_release": {
  1476. "notes": "Noto Sans Bengali v3.011\n\nThis version fixes an interpolation error in the visarga and adds very basic Mundari language support.\n",
  1477. "published": "2026-01-09T16:11:17+00:00",
  1478. "url": "https://github.com/notofonts/bengali/releases/tag/NotoSansBengali-v3.011",
  1479. "version": "v3.011"
  1480. }
  1481. },
  1482. "Noto Serif Bengali": {
  1483. "files": [
  1484. "fonts/NotoSerifBengali/unhinted/slim-variable-ttf/NotoSerifBengali[wght].ttf",
  1485. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-CondensedThin.ttf",
  1486. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensedSemiBold.ttf",
  1487. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensed.ttf",
  1488. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-Thin.ttf",
  1489. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-Medium.ttf",
  1490. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraBold.ttf",
  1491. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiBold.ttf",
  1492. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensedBold.ttf",
  1493. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensedExtraBold.ttf",
  1494. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-Light.ttf",
  1495. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensedMedium.ttf",
  1496. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-CondensedLight.ttf",
  1497. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensedExtraLight.ttf",
  1498. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensed.ttf",
  1499. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensedThin.ttf",
  1500. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-CondensedSemiBold.ttf",
  1501. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensedBlack.ttf",
  1502. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-CondensedMedium.ttf",
  1503. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensedSemiBold.ttf",
  1504. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensedExtraBold.ttf",
  1505. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-CondensedExtraBold.ttf",
  1506. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensedBold.ttf",
  1507. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-Condensed.ttf",
  1508. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-CondensedBold.ttf",
  1509. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraLight.ttf",
  1510. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-Black.ttf",
  1511. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensedLight.ttf",
  1512. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensedMedium.ttf",
  1513. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensedBlack.ttf",
  1514. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-ExtraCondensedThin.ttf",
  1515. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensedLight.ttf",
  1516. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-SemiCondensedExtraLight.ttf",
  1517. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-CondensedExtraLight.ttf",
  1518. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-Regular.ttf",
  1519. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-Bold.ttf",
  1520. "fonts/NotoSerifBengali/unhinted/ttf/NotoSerifBengali-CondensedBlack.ttf",
  1521. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensed.otf",
  1522. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensedExtraBold.otf",
  1523. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensedThin.otf",
  1524. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraBold.otf",
  1525. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-CondensedExtraBold.otf",
  1526. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensedExtraLight.otf",
  1527. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensedSemiBold.otf",
  1528. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraLight.otf",
  1529. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-CondensedLight.otf",
  1530. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensedMedium.otf",
  1531. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensedBold.otf",
  1532. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensedSemiBold.otf",
  1533. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensedExtraBold.otf",
  1534. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensedThin.otf",
  1535. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensedLight.otf",
  1536. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensedBlack.otf",
  1537. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensedLight.otf",
  1538. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-Thin.otf",
  1539. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-Light.otf",
  1540. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-Regular.otf",
  1541. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-CondensedBold.otf",
  1542. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-Medium.otf",
  1543. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-CondensedSemiBold.otf",
  1544. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-CondensedExtraLight.otf",
  1545. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensedBold.otf",
  1546. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiBold.otf",
  1547. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-CondensedBlack.otf",
  1548. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-Bold.otf",
  1549. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-Black.otf",
  1550. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-SemiCondensedBlack.otf",
  1551. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensedExtraLight.otf",
  1552. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-CondensedMedium.otf",
  1553. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-CondensedThin.otf",
  1554. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensed.otf",
  1555. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-Condensed.otf",
  1556. "fonts/NotoSerifBengali/unhinted/otf/NotoSerifBengali-ExtraCondensedMedium.otf",
  1557. "fonts/NotoSerifBengali/unhinted/variable-ttf/NotoSerifBengali[wdth,wght].ttf",
  1558. "fonts/NotoSerifBengali/full/slim-variable-ttf/NotoSerifBengali[wght].ttf",
  1559. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedThin.ttf",
  1560. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedSemiBold.ttf",
  1561. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensed.ttf",
  1562. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Thin.ttf",
  1563. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Medium.ttf",
  1564. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraBold.ttf",
  1565. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiBold.ttf",
  1566. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedBold.ttf",
  1567. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedExtraBold.ttf",
  1568. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Light.ttf",
  1569. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedMedium.ttf",
  1570. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedLight.ttf",
  1571. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedExtraLight.ttf",
  1572. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensed.ttf",
  1573. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedThin.ttf",
  1574. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedSemiBold.ttf",
  1575. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedBlack.ttf",
  1576. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedMedium.ttf",
  1577. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedSemiBold.ttf",
  1578. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedExtraBold.ttf",
  1579. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedExtraBold.ttf",
  1580. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedBold.ttf",
  1581. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Condensed.ttf",
  1582. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedBold.ttf",
  1583. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraLight.ttf",
  1584. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Black.ttf",
  1585. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedLight.ttf",
  1586. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedMedium.ttf",
  1587. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedBlack.ttf",
  1588. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-ExtraCondensedThin.ttf",
  1589. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedLight.ttf",
  1590. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-SemiCondensedExtraLight.ttf",
  1591. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedExtraLight.ttf",
  1592. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Regular.ttf",
  1593. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-Bold.ttf",
  1594. "fonts/NotoSerifBengali/full/ttf/NotoSerifBengali-CondensedBlack.ttf",
  1595. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensed.otf",
  1596. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensedExtraBold.otf",
  1597. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensedThin.otf",
  1598. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraBold.otf",
  1599. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-CondensedExtraBold.otf",
  1600. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensedExtraLight.otf",
  1601. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensedSemiBold.otf",
  1602. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraLight.otf",
  1603. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-CondensedLight.otf",
  1604. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensedMedium.otf",
  1605. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensedBold.otf",
  1606. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensedSemiBold.otf",
  1607. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensedExtraBold.otf",
  1608. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensedThin.otf",
  1609. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensedLight.otf",
  1610. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensedBlack.otf",
  1611. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensedLight.otf",
  1612. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-Thin.otf",
  1613. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-Light.otf",
  1614. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-Regular.otf",
  1615. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-CondensedBold.otf",
  1616. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-Medium.otf",
  1617. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-CondensedSemiBold.otf",
  1618. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-CondensedExtraLight.otf",
  1619. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensedBold.otf",
  1620. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiBold.otf",
  1621. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-CondensedBlack.otf",
  1622. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-Bold.otf",
  1623. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-Black.otf",
  1624. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-SemiCondensedBlack.otf",
  1625. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensedExtraLight.otf",
  1626. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-CondensedMedium.otf",
  1627. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-CondensedThin.otf",
  1628. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensed.otf",
  1629. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-Condensed.otf",
  1630. "fonts/NotoSerifBengali/full/otf/NotoSerifBengali-ExtraCondensedMedium.otf",
  1631. "fonts/NotoSerifBengali/full/variable-ttf/NotoSerifBengali[wdth,wght].ttf",
  1632. "fonts/NotoSerifBengali/googlefonts/variable-ttf/NotoSerifBengali[wdth,wght].ttf",
  1633. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-CondensedThin.ttf",
  1634. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensedSemiBold.ttf",
  1635. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensed.ttf",
  1636. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-Thin.ttf",
  1637. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-Medium.ttf",
  1638. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraBold.ttf",
  1639. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiBold.ttf",
  1640. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensedBold.ttf",
  1641. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensedExtraBold.ttf",
  1642. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-Light.ttf",
  1643. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensedMedium.ttf",
  1644. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-CondensedLight.ttf",
  1645. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensedExtraLight.ttf",
  1646. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensed.ttf",
  1647. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensedThin.ttf",
  1648. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-CondensedSemiBold.ttf",
  1649. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensedBlack.ttf",
  1650. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-CondensedMedium.ttf",
  1651. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensedSemiBold.ttf",
  1652. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensedExtraBold.ttf",
  1653. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-CondensedExtraBold.ttf",
  1654. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensedBold.ttf",
  1655. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-Condensed.ttf",
  1656. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-CondensedBold.ttf",
  1657. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraLight.ttf",
  1658. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-Black.ttf",
  1659. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensedLight.ttf",
  1660. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensedMedium.ttf",
  1661. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensedBlack.ttf",
  1662. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-ExtraCondensedThin.ttf",
  1663. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensedLight.ttf",
  1664. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-SemiCondensedExtraLight.ttf",
  1665. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-CondensedExtraLight.ttf",
  1666. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-Regular.ttf",
  1667. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-Bold.ttf",
  1668. "fonts/NotoSerifBengali/hinted/ttf/NotoSerifBengali-CondensedBlack.ttf"
  1669. ],
  1670. "latest_release": {
  1671. "notes": "Noto Serif Bengali v3.00\n\nThis release incudes a new design and improved engineering by Universal Thirst.\n",
  1672. "published": "2025-07-08T11:29:19+00:00",
  1673. "url": "https://github.com/notofonts/bengali/releases/tag/NotoSerifBengali-v3.000",
  1674. "version": "v3.000"
  1675. }
  1676. }
  1677. },
  1678. "known_releases": [
  1679. "NotoSerifBengali-v2.003",
  1680. "NotoSansBengali-v2.003",
  1681. "NotoSerifBengali-v3.000",
  1682. "NotoSansBengali-v3.000",
  1683. "NotoSansBengali-v3.010",
  1684. "NotoSansBengali-v3.011"
  1685. ]
  1686. },
  1687. "bhaiksuki": {
  1688. "families": {
  1689. "Noto Sans Bhaiksuki": {
  1690. "files": [
  1691. "fonts/NotoSansBhaiksuki/hinted/ttf/NotoSansBhaiksuki-Regular.ttf",
  1692. "fonts/NotoSansBhaiksuki/googlefonts/ttf/NotoSansBhaiksuki-Regular.ttf",
  1693. "fonts/NotoSansBhaiksuki/unhinted/ttf/NotoSansBhaiksuki-Regular.ttf",
  1694. "fonts/NotoSansBhaiksuki/unhinted/otf/NotoSansBhaiksuki-Regular.otf",
  1695. "fonts/NotoSansBhaiksuki/full/ttf/NotoSansBhaiksuki-Regular.ttf",
  1696. "fonts/NotoSansBhaiksuki/full/otf/NotoSansBhaiksuki-Regular.otf"
  1697. ],
  1698. "latest_release": {
  1699. "notes": "Noto Sans Bhaiksuki v2.002 This release fixes a number of fontbakery fails.\n",
  1700. "published": "2022-10-05T08:49:52",
  1701. "url": "https://github.com/notofonts/bhaiksuki/releases/tag/NotoSansBhaiksuki-v2.002",
  1702. "version": "v2.002"
  1703. }
  1704. }
  1705. },
  1706. "known_releases": [
  1707. "NotoSansBhaiksuki-v2.002"
  1708. ]
  1709. },
  1710. "brahmi": {
  1711. "families": {
  1712. "Noto Sans Brahmi": {
  1713. "files": [
  1714. "fonts/NotoSansBrahmi/unhinted/otf/NotoSansBrahmi-Regular.otf",
  1715. "fonts/NotoSansBrahmi/unhinted/ttf/NotoSansBrahmi-Regular.ttf",
  1716. "fonts/NotoSansBrahmi/full/otf/NotoSansBrahmi-Regular.otf",
  1717. "fonts/NotoSansBrahmi/full/ttf/NotoSansBrahmi-Regular.ttf",
  1718. "fonts/NotoSansBrahmi/hinted/ttf/NotoSansBrahmi-Regular.ttf",
  1719. "fonts/NotoSansBrahmi/googlefonts/ttf/NotoSansBrahmi-Regular.ttf"
  1720. ],
  1721. "latest_release": {
  1722. "notes": "Noto Sans Brahmi v2.004\n\nThis release:\n\n* Covers new codepoints in Unicode 14.0 (U+11071, U+11072), thanks to Ek Type.\n* Adds space before vocalic R (#6)\n* Improves the anchoring of AI vowel, BHATTIPROLU AA, and digits (#2, #4, #5)\n",
  1723. "published": "2024-01-22T21:55:28+00:00",
  1724. "url": "https://github.com/notofonts/brahmi/releases/tag/NotoSansBrahmi-v2.004",
  1725. "version": "v2.004"
  1726. }
  1727. }
  1728. },
  1729. "known_releases": [
  1730. "NotoSansBrahmi-v2.003",
  1731. "NotoSansBrahmi-v2.004"
  1732. ]
  1733. },
  1734. "buginese": {
  1735. "families": {
  1736. "Noto Sans Buginese": {
  1737. "files": [
  1738. "fonts/NotoSansBuginese/hinted/ttf/NotoSansBuginese-Regular.ttf",
  1739. "fonts/NotoSansBuginese/googlefonts/ttf/NotoSansBuginese-Regular.ttf",
  1740. "fonts/NotoSansBuginese/unhinted/ttf/NotoSansBuginese-Regular.ttf",
  1741. "fonts/NotoSansBuginese/unhinted/otf/NotoSansBuginese-Regular.otf",
  1742. "fonts/NotoSansBuginese/full/ttf/NotoSansBuginese-Regular.ttf",
  1743. "fonts/NotoSansBuginese/full/otf/NotoSansBuginese-Regular.otf"
  1744. ],
  1745. "latest_release": {
  1746. "notes": "Noto Sans Buginese v2.002 This release fixes mark attachment in full builds.\n",
  1747. "published": "2022-09-24T11:33:40",
  1748. "url": "https://github.com/notofonts/buginese/releases/tag/NotoSansBuginese-v2.002",
  1749. "version": "v2.002"
  1750. }
  1751. }
  1752. },
  1753. "known_releases": [
  1754. "NotoSansBuginese-v2.001",
  1755. "NotoSansBuginese-v2.002"
  1756. ]
  1757. },
  1758. "buhid": {
  1759. "families": {
  1760. "Noto Sans Buhid": {
  1761. "files": [
  1762. "fonts/NotoSansBuhid/full/otf/NotoSansBuhid-Regular.otf",
  1763. "fonts/NotoSansBuhid/full/ttf/NotoSansBuhid-Regular.ttf",
  1764. "fonts/NotoSansBuhid/googlefonts/ttf/NotoSansBuhid-Regular.ttf",
  1765. "fonts/NotoSansBuhid/unhinted/otf/NotoSansBuhid-Regular.otf",
  1766. "fonts/NotoSansBuhid/unhinted/ttf/NotoSansBuhid-Regular.ttf",
  1767. "fonts/NotoSansBuhid/hinted/ttf/NotoSansBuhid-Regular.ttf"
  1768. ],
  1769. "latest_release": {
  1770. "notes": "Noto Sans Buhid v2.001\n\n* Ensure we have a buhd script tag; fixes #1\n* Copyright & version update\n* Use typo metrics\n",
  1771. "published": "2022-06-27T13:17:09",
  1772. "url": "https://github.com/notofonts/buhid/releases/tag/NotoSansBuhid-v2.001",
  1773. "version": "v2.001"
  1774. }
  1775. }
  1776. },
  1777. "known_releases": [
  1778. "NotoSansBuhid-v2.001"
  1779. ]
  1780. },
  1781. "canadian-aboriginal": {
  1782. "families": {
  1783. "Noto Sans Canadian Aboriginal": {
  1784. "files": [
  1785. "fonts/NotoSansCanadianAboriginal/unhinted/slim-variable-ttf/NotoSansCanadianAboriginal[wght].ttf",
  1786. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-ExtraBold.ttf",
  1787. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-Bold.ttf",
  1788. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-SemiBold.ttf",
  1789. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-ExtraLight.ttf",
  1790. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-Light.ttf",
  1791. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-Black.ttf",
  1792. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-Medium.ttf",
  1793. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-Thin.ttf",
  1794. "fonts/NotoSansCanadianAboriginal/unhinted/ttf/NotoSansCanadianAboriginal-Regular.ttf",
  1795. "fonts/NotoSansCanadianAboriginal/unhinted/variable/NotoSansCanadianAboriginal[wght].ttf",
  1796. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-ExtraBold.otf",
  1797. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-Light.otf",
  1798. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-Black.otf",
  1799. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-Bold.otf",
  1800. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-Regular.otf",
  1801. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-SemiBold.otf",
  1802. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-Medium.otf",
  1803. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-ExtraLight.otf",
  1804. "fonts/NotoSansCanadianAboriginal/unhinted/otf/NotoSansCanadianAboriginal-Thin.otf",
  1805. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-ExtraBold.ttf",
  1806. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-Bold.ttf",
  1807. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-SemiBold.ttf",
  1808. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-ExtraLight.ttf",
  1809. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-Light.ttf",
  1810. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-Black.ttf",
  1811. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-Medium.ttf",
  1812. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-Thin.ttf",
  1813. "fonts/NotoSansCanadianAboriginal/hinted/ttf/NotoSansCanadianAboriginal-Regular.ttf",
  1814. "fonts/NotoSansCanadianAboriginal/full/slim-variable-ttf/NotoSansCanadianAboriginal[wght].ttf",
  1815. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-ExtraBold.ttf",
  1816. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Bold.ttf",
  1817. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-SemiBold.ttf",
  1818. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-ExtraLight.ttf",
  1819. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Light.ttf",
  1820. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Black.ttf",
  1821. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Medium.ttf",
  1822. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Thin.ttf",
  1823. "fonts/NotoSansCanadianAboriginal/full/ttf/NotoSansCanadianAboriginal-Regular.ttf",
  1824. "fonts/NotoSansCanadianAboriginal/full/variable/NotoSansCanadianAboriginal[wght].ttf",
  1825. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-ExtraBold.otf",
  1826. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-Light.otf",
  1827. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-Black.otf",
  1828. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-Bold.otf",
  1829. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-Regular.otf",
  1830. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-SemiBold.otf",
  1831. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-Medium.otf",
  1832. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-ExtraLight.otf",
  1833. "fonts/NotoSansCanadianAboriginal/full/otf/NotoSansCanadianAboriginal-Thin.otf",
  1834. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-ExtraBold.ttf",
  1835. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-Bold.ttf",
  1836. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-SemiBold.ttf",
  1837. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-ExtraLight.ttf",
  1838. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-Light.ttf",
  1839. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-Black.ttf",
  1840. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-Medium.ttf",
  1841. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-Thin.ttf",
  1842. "fonts/NotoSansCanadianAboriginal/googlefonts/ttf/NotoSansCanadianAboriginal-Regular.ttf",
  1843. "fonts/NotoSansCanadianAboriginal/googlefonts/variable/NotoSansCanadianAboriginal[wght].ttf"
  1844. ],
  1845. "latest_release": {
  1846. "notes": "Noto Sans Canadian Aboriginal v2.004\n\nThis release:\n\n* adds the narrow no-break space character (U+202F) used in Cree.\n* removes the semibold master, regularizing some spacing and dot positioning.\n",
  1847. "published": "2024-02-14T08:09:00+00:00",
  1848. "url": "https://github.com/notofonts/canadian-aboriginal/releases/tag/NotoSansCanadianAboriginal-v2.004",
  1849. "version": "v2.004"
  1850. }
  1851. }
  1852. },
  1853. "known_releases": [
  1854. "NotoSansCanadianAboriginal-v2.002",
  1855. "NotoSansCanadianAboriginal-v2.003",
  1856. "NotoSansCanadianAboriginal-v2.004"
  1857. ]
  1858. },
  1859. "carian": {
  1860. "families": {
  1861. "Noto Sans Carian": {
  1862. "files": [
  1863. "fonts/NotoSansCarian/unhinted/ttf/NotoSansCarian-Regular.ttf",
  1864. "fonts/NotoSansCarian/unhinted/otf/NotoSansCarian-Regular.otf",
  1865. "fonts/NotoSansCarian/full/ttf/NotoSansCarian-Regular.ttf",
  1866. "fonts/NotoSansCarian/full/otf/NotoSansCarian-Regular.otf",
  1867. "fonts/NotoSansCarian/googlefonts/ttf/NotoSansCarian-Regular.ttf",
  1868. "fonts/NotoSansCarian/hinted/ttf/NotoSansCarian-Regular.ttf"
  1869. ],
  1870. "latest_release": {
  1871. "notes": "Noto Sans Carian v2.002\n\nThis release fixes the shape of U+102BA CARIAN LETTER E to match paleographic sources. (#1)\n",
  1872. "published": "2023-01-03T08:33:55",
  1873. "url": "https://github.com/notofonts/carian/releases/tag/NotoSansCarian-v2.002",
  1874. "version": "v2.002"
  1875. }
  1876. }
  1877. },
  1878. "known_releases": [
  1879. "NotoSansCarian-v2.001",
  1880. "NotoSansCarian-v2.002"
  1881. ]
  1882. },
  1883. "caucasian-albanian": {
  1884. "families": {
  1885. "Noto Sans Caucasian Albanian": {
  1886. "files": [
  1887. "fonts/NotoSansCaucasianAlbanian/unhinted/ttf/NotoSansCaucasianAlbanian-Regular.ttf",
  1888. "fonts/NotoSansCaucasianAlbanian/unhinted/otf/NotoSansCaucasianAlbanian-Regular.otf",
  1889. "fonts/NotoSansCaucasianAlbanian/full/ttf/NotoSansCaucasianAlbanian-Regular.ttf",
  1890. "fonts/NotoSansCaucasianAlbanian/full/otf/NotoSansCaucasianAlbanian-Regular.otf",
  1891. "fonts/NotoSansCaucasianAlbanian/hinted/ttf/NotoSansCaucasianAlbanian-Regular.ttf",
  1892. "fonts/NotoSansCaucasianAlbanian/googlefonts/ttf/NotoSansCaucasianAlbanian-Regular.ttf"
  1893. ],
  1894. "latest_release": {
  1895. "notes": "Noto Sans Caucasian Albanian v2.005\n\nThis release:\n\n* Fixes the OS/2.usWinAscent value to conform to the Google Fonts specification\n* Enables conjoining macrons (#3)\n* Change shape of combining double macrons (#5)\n",
  1896. "published": "2023-09-25T10:33:02",
  1897. "url": "https://github.com/notofonts/caucasian-albanian/releases/tag/NotoSansCaucasianAlbanian-v2.005",
  1898. "version": "v2.005"
  1899. }
  1900. }
  1901. },
  1902. "known_releases": [
  1903. "NotoSansCaucasianAlbanian-v2.004",
  1904. "NotoSansCaucasianAlbanian-v2.005"
  1905. ]
  1906. },
  1907. "chakma": {
  1908. "families": {
  1909. "Noto Sans Chakma": {
  1910. "files": [
  1911. "fonts/NotoSansChakma/full/ttf/NotoSansChakma-Regular.ttf",
  1912. "fonts/NotoSansChakma/full/otf/NotoSansChakma-Regular.otf",
  1913. "fonts/NotoSansChakma/googlefonts/ttf/NotoSansChakma-Regular.ttf",
  1914. "fonts/NotoSansChakma/unhinted/ttf/NotoSansChakma-Regular.ttf",
  1915. "fonts/NotoSansChakma/unhinted/otf/NotoSansChakma-Regular.otf",
  1916. "fonts/NotoSansChakma/hinted/ttf/NotoSansChakma-Regular.ttf"
  1917. ],
  1918. "latest_release": {
  1919. "notes": "Noto Sans Chakma v2.003\n\nThis release:\n* Fixes a number of fontbakery fails\n* Stops producing AA vowel and EI vowel signs from virama+aa/virama+i conjuncts (see #4)\n",
  1920. "published": "2022-08-23T15:30:58",
  1921. "url": "https://github.com/notofonts/chakma/releases/tag/NotoSansChakma-v2.003",
  1922. "version": "v2.003"
  1923. }
  1924. }
  1925. },
  1926. "known_releases": [
  1927. "NotoSansChakma-v2.003"
  1928. ]
  1929. },
  1930. "cham": {
  1931. "families": {
  1932. "Noto Sans Cham": {
  1933. "files": [
  1934. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-SemiBold.ttf",
  1935. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-Bold.ttf",
  1936. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-Regular.ttf",
  1937. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-ExtraLight.ttf",
  1938. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-ExtraBold.ttf",
  1939. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-Medium.ttf",
  1940. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-Thin.ttf",
  1941. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-Black.ttf",
  1942. "fonts/NotoSansCham/googlefonts/ttf/NotoSansCham-Light.ttf",
  1943. "fonts/NotoSansCham/googlefonts/variable-ttf/NotoSansCham[wght].ttf",
  1944. "fonts/NotoSansCham/full/otf/NotoSansCham-ExtraLight.otf",
  1945. "fonts/NotoSansCham/full/otf/NotoSansCham-Thin.otf",
  1946. "fonts/NotoSansCham/full/otf/NotoSansCham-Light.otf",
  1947. "fonts/NotoSansCham/full/otf/NotoSansCham-Medium.otf",
  1948. "fonts/NotoSansCham/full/otf/NotoSansCham-Regular.otf",
  1949. "fonts/NotoSansCham/full/otf/NotoSansCham-Bold.otf",
  1950. "fonts/NotoSansCham/full/otf/NotoSansCham-ExtraBold.otf",
  1951. "fonts/NotoSansCham/full/otf/NotoSansCham-Black.otf",
  1952. "fonts/NotoSansCham/full/otf/NotoSansCham-SemiBold.otf",
  1953. "fonts/NotoSansCham/full/ttf/NotoSansCham-SemiBold.ttf",
  1954. "fonts/NotoSansCham/full/ttf/NotoSansCham-Bold.ttf",
  1955. "fonts/NotoSansCham/full/ttf/NotoSansCham-Regular.ttf",
  1956. "fonts/NotoSansCham/full/ttf/NotoSansCham-ExtraLight.ttf",
  1957. "fonts/NotoSansCham/full/ttf/NotoSansCham-ExtraBold.ttf",
  1958. "fonts/NotoSansCham/full/ttf/NotoSansCham-Medium.ttf",
  1959. "fonts/NotoSansCham/full/ttf/NotoSansCham-Thin.ttf",
  1960. "fonts/NotoSansCham/full/ttf/NotoSansCham-Black.ttf",
  1961. "fonts/NotoSansCham/full/ttf/NotoSansCham-Light.ttf",
  1962. "fonts/NotoSansCham/full/slim-variable-ttf/NotoSansCham[wght].ttf",
  1963. "fonts/NotoSansCham/full/variable-ttf/NotoSansCham[wght].ttf",
  1964. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-SemiBold.ttf",
  1965. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-Bold.ttf",
  1966. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-Regular.ttf",
  1967. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-ExtraLight.ttf",
  1968. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-ExtraBold.ttf",
  1969. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-Medium.ttf",
  1970. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-Thin.ttf",
  1971. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-Black.ttf",
  1972. "fonts/NotoSansCham/hinted/ttf/NotoSansCham-Light.ttf",
  1973. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-ExtraLight.otf",
  1974. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-Thin.otf",
  1975. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-Light.otf",
  1976. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-Medium.otf",
  1977. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-Regular.otf",
  1978. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-Bold.otf",
  1979. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-ExtraBold.otf",
  1980. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-Black.otf",
  1981. "fonts/NotoSansCham/unhinted/otf/NotoSansCham-SemiBold.otf",
  1982. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-SemiBold.ttf",
  1983. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-Bold.ttf",
  1984. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-Regular.ttf",
  1985. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-ExtraLight.ttf",
  1986. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-ExtraBold.ttf",
  1987. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-Medium.ttf",
  1988. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-Thin.ttf",
  1989. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-Black.ttf",
  1990. "fonts/NotoSansCham/unhinted/ttf/NotoSansCham-Light.ttf",
  1991. "fonts/NotoSansCham/unhinted/slim-variable-ttf/NotoSansCham[wght].ttf",
  1992. "fonts/NotoSansCham/unhinted/variable-ttf/NotoSansCham[wght].ttf"
  1993. ],
  1994. "latest_release": {
  1995. "notes": "Noto Sans Cham v2.005\n\nThis release simplifies the font's maintenance by removing the semibold master.\n",
  1996. "published": "2024-05-16T10:59:16+00:00",
  1997. "url": "https://github.com/notofonts/cham/releases/tag/NotoSansCham-v2.005",
  1998. "version": "v2.005"
  1999. }
  2000. }
  2001. },
  2002. "known_releases": [
  2003. "NotoSansCham-v2.002",
  2004. "NotoSansCham-v2.003",
  2005. "NotoSansCham-v2.004",
  2006. "NotoSansCham-v2.005"
  2007. ]
  2008. },
  2009. "cherokee": {
  2010. "families": {
  2011. "Noto Sans Cherokee": {
  2012. "files": [
  2013. "fonts/NotoSansCherokee/full/slim-variable-ttf/NotoSansCherokee[wght].ttf",
  2014. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-ExtraBold.ttf",
  2015. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Black.ttf",
  2016. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Bold.ttf",
  2017. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Thin.ttf",
  2018. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-SemiBold.ttf",
  2019. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Medium.ttf",
  2020. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-ExtraLight.ttf",
  2021. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Regular.ttf",
  2022. "fonts/NotoSansCherokee/full/ttf/NotoSansCherokee-Light.ttf",
  2023. "fonts/NotoSansCherokee/full/variable-ttf/NotoSansCherokee[wght].ttf",
  2024. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-SemiBold.otf",
  2025. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-Black.otf",
  2026. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-Thin.otf",
  2027. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-Regular.otf",
  2028. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-Medium.otf",
  2029. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-Bold.otf",
  2030. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-Light.otf",
  2031. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-ExtraLight.otf",
  2032. "fonts/NotoSansCherokee/full/otf/NotoSansCherokee-ExtraBold.otf",
  2033. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-ExtraBold.ttf",
  2034. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-Black.ttf",
  2035. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-Bold.ttf",
  2036. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-Thin.ttf",
  2037. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-SemiBold.ttf",
  2038. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-Medium.ttf",
  2039. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-ExtraLight.ttf",
  2040. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-Regular.ttf",
  2041. "fonts/NotoSansCherokee/googlefonts/ttf/NotoSansCherokee-Light.ttf",
  2042. "fonts/NotoSansCherokee/googlefonts/variable-ttf/NotoSansCherokee[wght].ttf",
  2043. "fonts/NotoSansCherokee/unhinted/slim-variable-ttf/NotoSansCherokee[wght].ttf",
  2044. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-ExtraBold.ttf",
  2045. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-Black.ttf",
  2046. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-Bold.ttf",
  2047. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-Thin.ttf",
  2048. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-SemiBold.ttf",
  2049. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-Medium.ttf",
  2050. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-ExtraLight.ttf",
  2051. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-Regular.ttf",
  2052. "fonts/NotoSansCherokee/unhinted/ttf/NotoSansCherokee-Light.ttf",
  2053. "fonts/NotoSansCherokee/unhinted/variable-ttf/NotoSansCherokee[wght].ttf",
  2054. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-SemiBold.otf",
  2055. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-Black.otf",
  2056. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-Thin.otf",
  2057. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-Regular.otf",
  2058. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-Medium.otf",
  2059. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-Bold.otf",
  2060. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-Light.otf",
  2061. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-ExtraLight.otf",
  2062. "fonts/NotoSansCherokee/unhinted/otf/NotoSansCherokee-ExtraBold.otf",
  2063. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-ExtraBold.ttf",
  2064. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-Black.ttf",
  2065. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-Bold.ttf",
  2066. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-Thin.ttf",
  2067. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-SemiBold.ttf",
  2068. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-Medium.ttf",
  2069. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-ExtraLight.ttf",
  2070. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-Regular.ttf",
  2071. "fonts/NotoSansCherokee/hinted/ttf/NotoSansCherokee-Light.ttf"
  2072. ],
  2073. "latest_release": {
  2074. "notes": "Noto Sans Cherokee v2.001\n\nThis release:\n* fixes a number of fontbakery fails\n* Moves the COMBINING DIAERESIS BELOW accent below base letters. (Fixes #2)\n",
  2075. "published": "2022-08-24T12:46:31",
  2076. "url": "https://github.com/notofonts/cherokee/releases/tag/NotoSansCherokee-v2.001",
  2077. "version": "v2.001"
  2078. }
  2079. }
  2080. },
  2081. "known_releases": [
  2082. "NotoSansCherokee-v2.001"
  2083. ]
  2084. },
  2085. "chorasmian": {
  2086. "families": {
  2087. "Noto Sans Chorasmian": {
  2088. "files": [
  2089. "fonts/NotoSansChorasmian/unhinted/otf/NotoSansChorasmian-Regular.otf",
  2090. "fonts/NotoSansChorasmian/unhinted/ttf/NotoSansChorasmian-Regular.ttf",
  2091. "fonts/NotoSansChorasmian/googlefonts/ttf/NotoSansChorasmian-Regular.ttf",
  2092. "fonts/NotoSansChorasmian/hinted/ttf/NotoSansChorasmian-Regular.ttf",
  2093. "fonts/NotoSansChorasmian/full/otf/NotoSansChorasmian-Regular.otf",
  2094. "fonts/NotoSansChorasmian/full/ttf/NotoSansChorasmian-Regular.ttf"
  2095. ],
  2096. "latest_release": {
  2097. "notes": "Noto Sans Chorasmian v1.004\n\nThis release:\n\n* Fixes the joining behaviour of aleph (#3, #5, #8)\n* Improves the spacing between various pairs (#3, #4)\n* Makes positional substitutions required, not optional (#6)\n* Removes a ligature between the digits FOUR and THREE (#7)\n",
  2098. "published": "2023-12-01T13:17:29+00:00",
  2099. "url": "https://github.com/notofonts/chorasmian/releases/tag/NotoSansChorasmian-v1.004",
  2100. "version": "v1.004"
  2101. }
  2102. }
  2103. },
  2104. "known_releases": [
  2105. "NotoSansChorasmian-v1.002",
  2106. "NotoSansChorasmian-v1.003",
  2107. "NotoSansChorasmian-v1.004"
  2108. ]
  2109. },
  2110. "coptic": {
  2111. "families": {
  2112. "Noto Sans Coptic": {
  2113. "files": [
  2114. "fonts/NotoSansCoptic/unhinted/ttf/NotoSansCoptic-Regular.ttf",
  2115. "fonts/NotoSansCoptic/unhinted/otf/NotoSansCoptic-Regular.otf",
  2116. "fonts/NotoSansCoptic/full/ttf/NotoSansCoptic-Regular.ttf",
  2117. "fonts/NotoSansCoptic/full/otf/NotoSansCoptic-Regular.otf",
  2118. "fonts/NotoSansCoptic/hinted/ttf/NotoSansCoptic-Regular.ttf",
  2119. "fonts/NotoSansCoptic/googlefonts/ttf/NotoSansCoptic-Regular.ttf"
  2120. ],
  2121. "latest_release": {
  2122. "notes": "Noto Sans Coptic v2.004\n\nThis release corrects the combination U+605 U+102E5 (numbersign + five) (#14)\n",
  2123. "published": "2023-09-25T11:27:20",
  2124. "url": "https://github.com/notofonts/coptic/releases/tag/NotoSansCoptic-v2.004",
  2125. "version": "v2.004"
  2126. }
  2127. }
  2128. },
  2129. "known_releases": [
  2130. "NotoSansCoptic-v2.002",
  2131. "NotoSansCoptic-v2.003",
  2132. "NotoSansCoptic-v2.004"
  2133. ]
  2134. },
  2135. "cuneiform": {
  2136. "families": {
  2137. "Noto Sans Cuneiform": {
  2138. "files": [
  2139. "fonts/NotoSansCuneiform/full/ttf/NotoSansCuneiform-Regular.ttf",
  2140. "fonts/NotoSansCuneiform/full/otf/NotoSansCuneiform-Regular.otf",
  2141. "fonts/NotoSansCuneiform/googlefonts/ttf/NotoSansCuneiform-Regular.ttf",
  2142. "fonts/NotoSansCuneiform/unhinted/ttf/NotoSansCuneiform-Regular.ttf",
  2143. "fonts/NotoSansCuneiform/unhinted/otf/NotoSansCuneiform-Regular.otf",
  2144. "fonts/NotoSansCuneiform/hinted/ttf/NotoSansCuneiform-Regular.ttf"
  2145. ],
  2146. "latest_release": {
  2147. "notes": "Noto Sans Cuneiform v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  2148. "published": "2022-09-19T08:45:41",
  2149. "url": "https://github.com/notofonts/cuneiform/releases/tag/NotoSansCuneiform-v2.001",
  2150. "version": "v2.001"
  2151. }
  2152. }
  2153. },
  2154. "known_releases": [
  2155. "NotoSansCuneiform-v2.001"
  2156. ]
  2157. },
  2158. "cypriot": {
  2159. "families": {
  2160. "Noto Sans Cypriot": {
  2161. "files": [
  2162. "fonts/NotoSansCypriot/googlefonts/ttf/NotoSansCypriot-Regular.ttf",
  2163. "fonts/NotoSansCypriot/full/otf/NotoSansCypriot-Regular.otf",
  2164. "fonts/NotoSansCypriot/full/ttf/NotoSansCypriot-Regular.ttf",
  2165. "fonts/NotoSansCypriot/hinted/ttf/NotoSansCypriot-Regular.ttf",
  2166. "fonts/NotoSansCypriot/unhinted/otf/NotoSansCypriot-Regular.otf",
  2167. "fonts/NotoSansCypriot/unhinted/ttf/NotoSansCypriot-Regular.ttf",
  2168. "fonts/NotoSansCypriot/unhinted/slim-otf/NotoSansCypriot-Regular.otf"
  2169. ],
  2170. "latest_release": {
  2171. "notes": "Production ready fonts",
  2172. "published": "2023-05-24T09:56:45",
  2173. "url": "https://github.com/notofonts/cypriot/releases/tag/NotoSansCypriot-v2.002",
  2174. "version": "v2.002"
  2175. }
  2176. }
  2177. },
  2178. "known_releases": [
  2179. "NotoSansCypriot-v2.001",
  2180. "NotoSansCypriot-v2.002"
  2181. ]
  2182. },
  2183. "cypro-minoan": {
  2184. "families": {
  2185. "Noto Sans Cypro Minoan": {
  2186. "files": [
  2187. "fonts/NotoSansCyproMinoan/googlefonts/ttf/NotoSansCyproMinoan-Regular.ttf",
  2188. "fonts/NotoSansCyproMinoan/unhinted/otf/NotoSansCyproMinoan-Regular.otf",
  2189. "fonts/NotoSansCyproMinoan/unhinted/ttf/NotoSansCyproMinoan-Regular.ttf",
  2190. "fonts/NotoSansCyproMinoan/full/otf/NotoSansCyproMinoan-Regular.otf",
  2191. "fonts/NotoSansCyproMinoan/full/ttf/NotoSansCyproMinoan-Regular.ttf",
  2192. "fonts/NotoSansCyproMinoan/hinted/ttf/NotoSansCyproMinoan-Regular.ttf"
  2193. ],
  2194. "latest_release": {
  2195. "notes": "Noto Sans Cypro-Minoan v1.503\n\nThis release fixes a number of fontbakery fails.\n",
  2196. "published": "2022-12-12T15:00:25",
  2197. "url": "https://github.com/notofonts/cypro-minoan/releases/tag/NotoSansCyproMinoan-v1.503",
  2198. "version": "v1.503"
  2199. }
  2200. }
  2201. },
  2202. "known_releases": [
  2203. "NotoSansCyproMinoan-v1.503"
  2204. ]
  2205. },
  2206. "deseret": {
  2207. "families": {
  2208. "Noto Sans Deseret": {
  2209. "files": [
  2210. "fonts/NotoSansDeseret/full/ttf/NotoSansDeseret-Regular.ttf",
  2211. "fonts/NotoSansDeseret/full/otf/NotoSansDeseret-Regular.otf",
  2212. "fonts/NotoSansDeseret/googlefonts/ttf/NotoSansDeseret-Regular.ttf",
  2213. "fonts/NotoSansDeseret/unhinted/ttf/NotoSansDeseret-Regular.ttf",
  2214. "fonts/NotoSansDeseret/unhinted/otf/NotoSansDeseret-Regular.otf",
  2215. "fonts/NotoSansDeseret/hinted/ttf/NotoSansDeseret-Regular.ttf"
  2216. ],
  2217. "latest_release": {
  2218. "notes": "Noto Sans Deseret v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  2219. "published": "2022-09-19T08:45:35",
  2220. "url": "https://github.com/notofonts/deseret/releases/tag/NotoSansDeseret-v2.001",
  2221. "version": "v2.001"
  2222. }
  2223. }
  2224. },
  2225. "known_releases": [
  2226. "NotoSansDeseret-v2.001"
  2227. ]
  2228. },
  2229. "devanagari": {
  2230. "families": {
  2231. "Noto Sans Devanagari": {
  2232. "files": [
  2233. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-Thin.ttf",
  2234. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-SemiBold.ttf",
  2235. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-Bold.ttf",
  2236. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-ExtraLight.ttf",
  2237. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-Light.ttf",
  2238. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-ExtraBold.ttf",
  2239. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-Medium.ttf",
  2240. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-Regular.ttf",
  2241. "fonts/NotoSansDevanagari/googlefonts/ttf/NotoSansDevanagari-Black.ttf",
  2242. "fonts/NotoSansDevanagari/googlefonts/variable-ttf/NotoSansDevanagari[wdth,wght].ttf",
  2243. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensedMedium.otf",
  2244. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-Condensed.otf",
  2245. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensedBold.otf",
  2246. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensedThin.otf",
  2247. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensedExtraBold.otf",
  2248. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensedSemiBold.otf",
  2249. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-Regular.otf",
  2250. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensedExtraBold.otf",
  2251. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraLight.otf",
  2252. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-CondensedLight.otf",
  2253. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensedThin.otf",
  2254. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-Black.otf",
  2255. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensedExtraLight.otf",
  2256. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensedExtraLight.otf",
  2257. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraBold.otf",
  2258. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-CondensedSemiBold.otf",
  2259. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-CondensedBold.otf",
  2260. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensedBlack.otf",
  2261. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-CondensedExtraBold.otf",
  2262. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-Bold.otf",
  2263. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-CondensedMedium.otf",
  2264. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensedSemiBold.otf",
  2265. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensedLight.otf",
  2266. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensedBold.otf",
  2267. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensedBlack.otf",
  2268. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-ExtraCondensed.otf",
  2269. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-CondensedExtraLight.otf",
  2270. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-Medium.otf",
  2271. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiBold.otf",
  2272. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-Thin.otf",
  2273. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-CondensedBlack.otf",
  2274. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensedMedium.otf",
  2275. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensedLight.otf",
  2276. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-SemiCondensed.otf",
  2277. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-Light.otf",
  2278. "fonts/NotoSansDevanagari/full/otf/NotoSansDevanagari-CondensedThin.otf",
  2279. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedLight.ttf",
  2280. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedExtraLight.ttf",
  2281. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedExtraBold.ttf",
  2282. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedExtraLight.ttf",
  2283. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Thin.ttf",
  2284. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiBold.ttf",
  2285. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedBlack.ttf",
  2286. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedSemiBold.ttf",
  2287. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedThin.ttf",
  2288. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedLight.ttf",
  2289. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Bold.ttf",
  2290. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedBold.ttf",
  2291. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedBold.ttf",
  2292. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraLight.ttf",
  2293. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedBold.ttf",
  2294. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedSemiBold.ttf",
  2295. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Light.ttf",
  2296. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedThin.ttf",
  2297. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraBold.ttf",
  2298. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedThin.ttf",
  2299. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Condensed.ttf",
  2300. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedBlack.ttf",
  2301. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedLight.ttf",
  2302. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedExtraLight.ttf",
  2303. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensed.ttf",
  2304. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Medium.ttf",
  2305. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedExtraBold.ttf",
  2306. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedExtraBold.ttf",
  2307. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedSemiBold.ttf",
  2308. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Regular.ttf",
  2309. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensedMedium.ttf",
  2310. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-CondensedMedium.ttf",
  2311. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedMedium.ttf",
  2312. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-SemiCondensed.ttf",
  2313. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-ExtraCondensedBlack.ttf",
  2314. "fonts/NotoSansDevanagari/full/ttf/NotoSansDevanagari-Black.ttf",
  2315. "fonts/NotoSansDevanagari/full/slim-variable-ttf/NotoSansDevanagari[wght].ttf",
  2316. "fonts/NotoSansDevanagari/full/variable-ttf/NotoSansDevanagari[wdth,wght].ttf",
  2317. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-CondensedLight.ttf",
  2318. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-CondensedExtraLight.ttf",
  2319. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensedExtraBold.ttf",
  2320. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensedExtraLight.ttf",
  2321. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-Thin.ttf",
  2322. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiBold.ttf",
  2323. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-CondensedBlack.ttf",
  2324. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-CondensedSemiBold.ttf",
  2325. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensedThin.ttf",
  2326. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensedLight.ttf",
  2327. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-Bold.ttf",
  2328. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-CondensedBold.ttf",
  2329. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensedBold.ttf",
  2330. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraLight.ttf",
  2331. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensedBold.ttf",
  2332. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensedSemiBold.ttf",
  2333. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-Light.ttf",
  2334. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensedThin.ttf",
  2335. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraBold.ttf",
  2336. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-CondensedThin.ttf",
  2337. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-Condensed.ttf",
  2338. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensedBlack.ttf",
  2339. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensedLight.ttf",
  2340. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensedExtraLight.ttf",
  2341. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensed.ttf",
  2342. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-Medium.ttf",
  2343. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensedExtraBold.ttf",
  2344. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-CondensedExtraBold.ttf",
  2345. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensedSemiBold.ttf",
  2346. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-Regular.ttf",
  2347. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensedMedium.ttf",
  2348. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-CondensedMedium.ttf",
  2349. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensedMedium.ttf",
  2350. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-SemiCondensed.ttf",
  2351. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-ExtraCondensedBlack.ttf",
  2352. "fonts/NotoSansDevanagari/hinted/ttf/NotoSansDevanagari-Black.ttf",
  2353. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensedMedium.otf",
  2354. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-Condensed.otf",
  2355. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensedBold.otf",
  2356. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensedThin.otf",
  2357. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensedExtraBold.otf",
  2358. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensedSemiBold.otf",
  2359. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-Regular.otf",
  2360. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensedExtraBold.otf",
  2361. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraLight.otf",
  2362. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-CondensedLight.otf",
  2363. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensedThin.otf",
  2364. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-Black.otf",
  2365. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensedExtraLight.otf",
  2366. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensedExtraLight.otf",
  2367. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraBold.otf",
  2368. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-CondensedSemiBold.otf",
  2369. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-CondensedBold.otf",
  2370. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensedBlack.otf",
  2371. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-CondensedExtraBold.otf",
  2372. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-Bold.otf",
  2373. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-CondensedMedium.otf",
  2374. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensedSemiBold.otf",
  2375. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensedLight.otf",
  2376. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensedBold.otf",
  2377. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensedBlack.otf",
  2378. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-ExtraCondensed.otf",
  2379. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-CondensedExtraLight.otf",
  2380. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-Medium.otf",
  2381. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiBold.otf",
  2382. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-Thin.otf",
  2383. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-CondensedBlack.otf",
  2384. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensedMedium.otf",
  2385. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensedLight.otf",
  2386. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-SemiCondensed.otf",
  2387. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-Light.otf",
  2388. "fonts/NotoSansDevanagari/unhinted/otf/NotoSansDevanagari-CondensedThin.otf",
  2389. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-CondensedLight.ttf",
  2390. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-CondensedExtraLight.ttf",
  2391. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensedExtraBold.ttf",
  2392. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensedExtraLight.ttf",
  2393. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-Thin.ttf",
  2394. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiBold.ttf",
  2395. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-CondensedBlack.ttf",
  2396. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-CondensedSemiBold.ttf",
  2397. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensedThin.ttf",
  2398. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensedLight.ttf",
  2399. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-Bold.ttf",
  2400. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-CondensedBold.ttf",
  2401. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensedBold.ttf",
  2402. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraLight.ttf",
  2403. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensedBold.ttf",
  2404. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensedSemiBold.ttf",
  2405. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-Light.ttf",
  2406. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensedThin.ttf",
  2407. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraBold.ttf",
  2408. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-CondensedThin.ttf",
  2409. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-Condensed.ttf",
  2410. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensedBlack.ttf",
  2411. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensedLight.ttf",
  2412. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensedExtraLight.ttf",
  2413. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensed.ttf",
  2414. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-Medium.ttf",
  2415. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensedExtraBold.ttf",
  2416. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-CondensedExtraBold.ttf",
  2417. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensedSemiBold.ttf",
  2418. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-Regular.ttf",
  2419. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensedMedium.ttf",
  2420. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-CondensedMedium.ttf",
  2421. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensedMedium.ttf",
  2422. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-SemiCondensed.ttf",
  2423. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-ExtraCondensedBlack.ttf",
  2424. "fonts/NotoSansDevanagari/unhinted/ttf/NotoSansDevanagari-Black.ttf",
  2425. "fonts/NotoSansDevanagari/unhinted/slim-variable-ttf/NotoSansDevanagari[wght].ttf",
  2426. "fonts/NotoSansDevanagari/unhinted/variable-ttf/NotoSansDevanagari[wdth,wght].ttf"
  2427. ],
  2428. "latest_release": {
  2429. "notes": "Noto Sans Devanagari 2.006\n\nThis release fixes a number of sequences broken in the previous release.\n",
  2430. "published": "2024-05-20T12:01:05+00:00",
  2431. "url": "https://github.com/notofonts/devanagari/releases/tag/NotoSansDevanagari-v2.006",
  2432. "version": "v2.006"
  2433. }
  2434. },
  2435. "Noto Serif Devanagari": {
  2436. "files": [
  2437. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-ExtraLight.ttf",
  2438. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-Thin.ttf",
  2439. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-Light.ttf",
  2440. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-Bold.ttf",
  2441. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-Regular.ttf",
  2442. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-SemiBold.ttf",
  2443. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-Black.ttf",
  2444. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-ExtraBold.ttf",
  2445. "fonts/NotoSerifDevanagari/googlefonts/ttf/NotoSerifDevanagari-Medium.ttf",
  2446. "fonts/NotoSerifDevanagari/googlefonts/variable-ttf/NotoSerifDevanagari[wdth,wght].ttf",
  2447. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-Medium.otf",
  2448. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensedMedium.otf",
  2449. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensedExtraLight.otf",
  2450. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-Black.otf",
  2451. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-CondensedThin.otf",
  2452. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensedMedium.otf",
  2453. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-Light.otf",
  2454. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-Thin.otf",
  2455. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensedExtraLight.otf",
  2456. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensed.otf",
  2457. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-CondensedMedium.otf",
  2458. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-CondensedBold.otf",
  2459. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraBold.otf",
  2460. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensedExtraBold.otf",
  2461. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-Regular.otf",
  2462. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensedLight.otf",
  2463. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-CondensedBlack.otf",
  2464. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-CondensedExtraBold.otf",
  2465. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensedBold.otf",
  2466. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiBold.otf",
  2467. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-CondensedSemiBold.otf",
  2468. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensedThin.otf",
  2469. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensedBold.otf",
  2470. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensedThin.otf",
  2471. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensedSemiBold.otf",
  2472. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-Condensed.otf",
  2473. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraLight.otf",
  2474. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-CondensedExtraLight.otf",
  2475. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensedBlack.otf",
  2476. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-CondensedLight.otf",
  2477. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensedSemiBold.otf",
  2478. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensedLight.otf",
  2479. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-ExtraCondensedExtraBold.otf",
  2480. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-Bold.otf",
  2481. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensedBlack.otf",
  2482. "fonts/NotoSerifDevanagari/full/otf/NotoSerifDevanagari-SemiCondensed.otf",
  2483. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraLight.ttf",
  2484. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedThin.ttf",
  2485. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedBlack.ttf",
  2486. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedBlack.ttf",
  2487. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedExtraBold.ttf",
  2488. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedBold.ttf",
  2489. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedLight.ttf",
  2490. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedBold.ttf",
  2491. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedMedium.ttf",
  2492. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensed.ttf",
  2493. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensed.ttf",
  2494. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Thin.ttf",
  2495. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedLight.ttf",
  2496. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Light.ttf",
  2497. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Bold.ttf",
  2498. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedThin.ttf",
  2499. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedBlack.ttf",
  2500. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedThin.ttf",
  2501. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedExtraLight.ttf",
  2502. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Condensed.ttf",
  2503. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedSemiBold.ttf",
  2504. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Regular.ttf",
  2505. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiBold.ttf",
  2506. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Black.ttf",
  2507. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedExtraBold.ttf",
  2508. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedExtraBold.ttf",
  2509. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedBold.ttf",
  2510. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedMedium.ttf",
  2511. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedSemiBold.ttf",
  2512. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraBold.ttf",
  2513. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedExtraLight.ttf",
  2514. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedExtraLight.ttf",
  2515. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-Medium.ttf",
  2516. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-CondensedLight.ttf",
  2517. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-ExtraCondensedSemiBold.ttf",
  2518. "fonts/NotoSerifDevanagari/full/ttf/NotoSerifDevanagari-SemiCondensedMedium.ttf",
  2519. "fonts/NotoSerifDevanagari/full/slim-variable-ttf/NotoSerifDevanagari[wght].ttf",
  2520. "fonts/NotoSerifDevanagari/full/variable-ttf/NotoSerifDevanagari[wdth,wght].ttf",
  2521. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraLight.ttf",
  2522. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-CondensedThin.ttf",
  2523. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensedBlack.ttf",
  2524. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensedBlack.ttf",
  2525. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensedExtraBold.ttf",
  2526. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensedBold.ttf",
  2527. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensedLight.ttf",
  2528. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-CondensedBold.ttf",
  2529. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-CondensedMedium.ttf",
  2530. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensed.ttf",
  2531. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensed.ttf",
  2532. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-Thin.ttf",
  2533. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensedLight.ttf",
  2534. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-Light.ttf",
  2535. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-Bold.ttf",
  2536. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensedThin.ttf",
  2537. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-CondensedBlack.ttf",
  2538. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensedThin.ttf",
  2539. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensedExtraLight.ttf",
  2540. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-Condensed.ttf",
  2541. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensedSemiBold.ttf",
  2542. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-Regular.ttf",
  2543. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiBold.ttf",
  2544. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-Black.ttf",
  2545. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-CondensedExtraBold.ttf",
  2546. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensedExtraBold.ttf",
  2547. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensedBold.ttf",
  2548. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensedMedium.ttf",
  2549. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-CondensedSemiBold.ttf",
  2550. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraBold.ttf",
  2551. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensedExtraLight.ttf",
  2552. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-CondensedExtraLight.ttf",
  2553. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-Medium.ttf",
  2554. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-CondensedLight.ttf",
  2555. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-ExtraCondensedSemiBold.ttf",
  2556. "fonts/NotoSerifDevanagari/hinted/ttf/NotoSerifDevanagari-SemiCondensedMedium.ttf",
  2557. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-Medium.otf",
  2558. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensedMedium.otf",
  2559. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensedExtraLight.otf",
  2560. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-Black.otf",
  2561. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-CondensedThin.otf",
  2562. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensedMedium.otf",
  2563. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-Light.otf",
  2564. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-Thin.otf",
  2565. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensedExtraLight.otf",
  2566. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensed.otf",
  2567. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-CondensedMedium.otf",
  2568. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-CondensedBold.otf",
  2569. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraBold.otf",
  2570. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensedExtraBold.otf",
  2571. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-Regular.otf",
  2572. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensedLight.otf",
  2573. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-CondensedBlack.otf",
  2574. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-CondensedExtraBold.otf",
  2575. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensedBold.otf",
  2576. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiBold.otf",
  2577. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-CondensedSemiBold.otf",
  2578. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensedThin.otf",
  2579. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensedBold.otf",
  2580. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensedThin.otf",
  2581. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensedSemiBold.otf",
  2582. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-Condensed.otf",
  2583. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraLight.otf",
  2584. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-CondensedExtraLight.otf",
  2585. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensedBlack.otf",
  2586. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-CondensedLight.otf",
  2587. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensedSemiBold.otf",
  2588. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensedLight.otf",
  2589. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-ExtraCondensedExtraBold.otf",
  2590. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-Bold.otf",
  2591. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensedBlack.otf",
  2592. "fonts/NotoSerifDevanagari/unhinted/otf/NotoSerifDevanagari-SemiCondensed.otf",
  2593. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraLight.ttf",
  2594. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-CondensedThin.ttf",
  2595. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensedBlack.ttf",
  2596. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensedBlack.ttf",
  2597. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensedExtraBold.ttf",
  2598. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensedBold.ttf",
  2599. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensedLight.ttf",
  2600. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-CondensedBold.ttf",
  2601. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-CondensedMedium.ttf",
  2602. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensed.ttf",
  2603. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensed.ttf",
  2604. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-Thin.ttf",
  2605. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensedLight.ttf",
  2606. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-Light.ttf",
  2607. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-Bold.ttf",
  2608. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensedThin.ttf",
  2609. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-CondensedBlack.ttf",
  2610. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensedThin.ttf",
  2611. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensedExtraLight.ttf",
  2612. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-Condensed.ttf",
  2613. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensedSemiBold.ttf",
  2614. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-Regular.ttf",
  2615. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiBold.ttf",
  2616. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-Black.ttf",
  2617. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-CondensedExtraBold.ttf",
  2618. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensedExtraBold.ttf",
  2619. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensedBold.ttf",
  2620. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensedMedium.ttf",
  2621. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-CondensedSemiBold.ttf",
  2622. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraBold.ttf",
  2623. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensedExtraLight.ttf",
  2624. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-CondensedExtraLight.ttf",
  2625. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-Medium.ttf",
  2626. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-CondensedLight.ttf",
  2627. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-ExtraCondensedSemiBold.ttf",
  2628. "fonts/NotoSerifDevanagari/unhinted/ttf/NotoSerifDevanagari-SemiCondensedMedium.ttf",
  2629. "fonts/NotoSerifDevanagari/unhinted/slim-variable-ttf/NotoSerifDevanagari[wght].ttf",
  2630. "fonts/NotoSerifDevanagari/unhinted/variable-ttf/NotoSerifDevanagari[wdth,wght].ttf"
  2631. ],
  2632. "latest_release": {
  2633. "notes": "Noto Serif Devanagari v2.006\n\nThis release fixes a small number of sequences broken in the previous release.\n",
  2634. "published": "2024-05-20T11:47:33+00:00",
  2635. "url": "https://github.com/notofonts/devanagari/releases/tag/NotoSerifDevanagari-v2.006",
  2636. "version": "v2.006"
  2637. }
  2638. }
  2639. },
  2640. "known_releases": [
  2641. "NotoSerifDevanagari-v2.003",
  2642. "NotoSansDevanagari-v2.003",
  2643. "NotoSansDevanagari-v2.004",
  2644. "NotoSerifDevanagari-v2.004",
  2645. "NotoSerifDevanagari-v2.005",
  2646. "NotoSansDevanagari-v2.005",
  2647. "NotoSerifDevanagari-v2.006",
  2648. "NotoSansDevanagari-v2.006"
  2649. ]
  2650. },
  2651. "dives-akuru": {
  2652. "families": {
  2653. "Noto Serif Dives Akuru": {
  2654. "files": [
  2655. "fonts/NotoSerifDivesAkuru/unhinted/otf/NotoSerifDivesAkuru-Regular.otf",
  2656. "fonts/NotoSerifDivesAkuru/unhinted/ttf/NotoSerifDivesAkuru-Regular.ttf",
  2657. "fonts/NotoSerifDivesAkuru/googlefonts/ttf/NotoSerifDivesAkuru-Regular.ttf",
  2658. "fonts/NotoSerifDivesAkuru/full/otf/NotoSerifDivesAkuru-Regular.otf",
  2659. "fonts/NotoSerifDivesAkuru/full/ttf/NotoSerifDivesAkuru-Regular.ttf",
  2660. "fonts/NotoSerifDivesAkuru/hinted/ttf/NotoSerifDivesAkuru-Regular.ttf"
  2661. ],
  2662. "latest_release": {
  2663. "notes": "Noto Serif Dives Akuru v2.000\n\nThis release introduces a new design by Fernando Caro based on his research at the ANRT Missing Scripts project.\n",
  2664. "published": "2025-02-06T14:08:19+00:00",
  2665. "url": "https://github.com/notofonts/dives-akuru/releases/tag/NotoSerifDivesAkuru-v2.000",
  2666. "version": "v2.000"
  2667. }
  2668. }
  2669. },
  2670. "known_releases": [
  2671. "NotoSerifDivesAkuru-v1.001",
  2672. "NotoSerifDivesAkuru-v2.000"
  2673. ]
  2674. },
  2675. "dogra": {
  2676. "families": {
  2677. "Noto Serif Dogra": {
  2678. "files": [
  2679. "fonts/NotoSerifDogra/unhinted/ttf/NotoSerifDogra-Regular.ttf",
  2680. "fonts/NotoSerifDogra/unhinted/otf/NotoSerifDogra-Regular.otf",
  2681. "fonts/NotoSerifDogra/full/ttf/NotoSerifDogra-Regular.ttf",
  2682. "fonts/NotoSerifDogra/full/otf/NotoSerifDogra-Regular.otf",
  2683. "fonts/NotoSerifDogra/hinted/ttf/NotoSerifDogra-Regular.ttf",
  2684. "fonts/NotoSerifDogra/googlefonts/ttf/NotoSerifDogra-Regular.ttf"
  2685. ],
  2686. "latest_release": {
  2687. "notes": "Noto Serif Dogra v1.007\n\nThis release:\n\n* Removes the unnecessary avagraha glyph\n* Fixes the width of the space glyph to be consistent with nonbreaking space\n* Fixes the reordering of the matra in the \"shri\" combination when using ss02 (#11)\n* Fixes the kerning of old-nga/aa (#13)\n",
  2688. "published": "2023-09-25T11:36:36",
  2689. "url": "https://github.com/notofonts/dogra/releases/tag/NotoSerifDogra-v1.007",
  2690. "version": "v1.007"
  2691. }
  2692. }
  2693. },
  2694. "known_releases": [
  2695. "NotoSerifDogra-v1.004",
  2696. "NotoSerifDogra-v1.005",
  2697. "NotoSerifDogra-v1.006",
  2698. "NotoSerifDogra-v1.007"
  2699. ]
  2700. },
  2701. "duployan": {
  2702. "families": {
  2703. "Noto Sans Duployan": {
  2704. "files": [
  2705. "fonts/NotoSansDuployan/googlefonts/ttf/NotoSansDuployan-Regular.ttf",
  2706. "fonts/NotoSansDuployan/googlefonts/ttf/NotoSansDuployan-Bold.ttf",
  2707. "fonts/NotoSansDuployan/hinted/otf/NotoSansDuployan-Bold.otf",
  2708. "fonts/NotoSansDuployan/hinted/otf/NotoSansDuployan-Regular.otf",
  2709. "fonts/NotoSansDuployan/hinted/ttf/NotoSansDuployan-Regular.ttf",
  2710. "fonts/NotoSansDuployan/hinted/ttf/NotoSansDuployan-Bold.ttf",
  2711. "fonts/NotoSansDuployan/unhinted/otf/NotoSansDuployan-Bold.otf",
  2712. "fonts/NotoSansDuployan/unhinted/otf/NotoSansDuployan-Regular.otf",
  2713. "fonts/NotoSansDuployan/unhinted/ttf/NotoSansDuployan-Regular.ttf",
  2714. "fonts/NotoSansDuployan/unhinted/ttf/NotoSansDuployan-Bold.ttf"
  2715. ],
  2716. "latest_release": {
  2717. "notes": "Production ready fonts",
  2718. "published": "2024-05-20T11:40:09+00:00",
  2719. "url": "https://github.com/notofonts/duployan/releases/tag/NotoSansDuployan-v3.002",
  2720. "version": "v3.002"
  2721. }
  2722. }
  2723. },
  2724. "known_releases": [
  2725. "NotoSansDuployan-v3.001",
  2726. "NotoSansDuployan-v3.002"
  2727. ]
  2728. },
  2729. "egyptian-hieroglyphs": {
  2730. "families": {
  2731. "Noto Sans Egyptian Hieroglyphs": {
  2732. "files": [
  2733. "fonts/NotoSansEgyptianHieroglyphs/full/otf/NotoSansEgyptianHieroglyphs-Regular.otf",
  2734. "fonts/NotoSansEgyptianHieroglyphs/full/ttf/NotoSansEgyptianHieroglyphs-Regular.ttf",
  2735. "fonts/NotoSansEgyptianHieroglyphs/googlefonts/ttf/NotoSansEgyptianHieroglyphs-Regular.ttf",
  2736. "fonts/NotoSansEgyptianHieroglyphs/unhinted/otf/NotoSansEgyptianHieroglyphs-Regular.otf",
  2737. "fonts/NotoSansEgyptianHieroglyphs/unhinted/ttf/NotoSansEgyptianHieroglyphs-Regular.ttf",
  2738. "fonts/NotoSansEgyptianHieroglyphs/hinted/ttf/NotoSansEgyptianHieroglyphs-Regular.ttf"
  2739. ],
  2740. "latest_release": {
  2741. "notes": "Noto Sans Egyptian Hieroglyphs v2.002\n\nThis release adds support for various codepoints added in Unicode 14.\nThanks to @mercury13 (drawing) and @dwerning (consultancy).\n",
  2742. "published": "2024-04-15T09:29:21+00:00",
  2743. "url": "https://github.com/notofonts/egyptian-hieroglyphs/releases/tag/NotoSansEgyptianHieroglyphs-v2.002",
  2744. "version": "v2.002"
  2745. }
  2746. }
  2747. },
  2748. "known_releases": [
  2749. "NotoSansEgyptianHieroglyphs-v2.001",
  2750. "NotoSansEgyptianHieroglyphs-v2.002"
  2751. ]
  2752. },
  2753. "elbasan": {
  2754. "families": {
  2755. "Noto Sans Elbasan": {
  2756. "files": [
  2757. "fonts/NotoSansElbasan/hinted/ttf/NotoSansElbasan-Regular.ttf",
  2758. "fonts/NotoSansElbasan/googlefonts/ttf/NotoSansElbasan-Regular.ttf",
  2759. "fonts/NotoSansElbasan/unhinted/ttf/NotoSansElbasan-Regular.ttf",
  2760. "fonts/NotoSansElbasan/unhinted/otf/NotoSansElbasan-Regular.otf",
  2761. "fonts/NotoSansElbasan/full/ttf/NotoSansElbasan-Regular.ttf",
  2762. "fonts/NotoSansElbasan/full/otf/NotoSansElbasan-Regular.otf"
  2763. ],
  2764. "latest_release": {
  2765. "notes": "Noto Sans Elbasan v2.004\n\nThis release fixes a number of fontbakery fails.\n",
  2766. "published": "2022-10-10T14:01:39",
  2767. "url": "https://github.com/notofonts/elbasan/releases/tag/NotoSansElbasan-v2.004",
  2768. "version": "v2.004"
  2769. }
  2770. }
  2771. },
  2772. "known_releases": [
  2773. "NotoSansElbasan-v2.004"
  2774. ]
  2775. },
  2776. "elymaic": {
  2777. "families": {
  2778. "Noto Sans Elymaic": {
  2779. "files": [
  2780. "fonts/NotoSansElymaic/unhinted/ttf/NotoSansElymaic-Regular.ttf",
  2781. "fonts/NotoSansElymaic/unhinted/otf/NotoSansElymaic-Regular.otf",
  2782. "fonts/NotoSansElymaic/full/ttf/NotoSansElymaic-Regular.ttf",
  2783. "fonts/NotoSansElymaic/full/otf/NotoSansElymaic-Regular.otf",
  2784. "fonts/NotoSansElymaic/hinted/ttf/NotoSansElymaic-Regular.ttf",
  2785. "fonts/NotoSansElymaic/googlefonts/ttf/NotoSansElymaic-Regular.ttf"
  2786. ],
  2787. "latest_release": {
  2788. "notes": "Noto Sans Elymaic v1.002\n\nThis releases:\n\n* Adds a new stylistic set for an allograph found at Tang-i Butan (#3)\n* Removes the erroneous yodh/zayin ligature (#1)\n* Clarifies the name of stylistic sets (#3)\n",
  2789. "published": "2023-09-25T12:02:18",
  2790. "url": "https://github.com/notofonts/elymaic/releases/tag/NotoSansElymaic-v1.002",
  2791. "version": "v1.002"
  2792. }
  2793. }
  2794. },
  2795. "known_releases": [
  2796. "NotoSansElymaic-v1.001",
  2797. "NotoSansElymaic-v1.002"
  2798. ]
  2799. },
  2800. "ethiopic": {
  2801. "families": {
  2802. "Noto Sans Ethiopic": {
  2803. "files": [
  2804. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensedExtraBold.ttf",
  2805. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-Medium.ttf",
  2806. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensedLight.ttf",
  2807. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-CondensedThin.ttf",
  2808. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensedThin.ttf",
  2809. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-CondensedBold.ttf",
  2810. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensedThin.ttf",
  2811. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-CondensedLight.ttf",
  2812. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensedBold.ttf",
  2813. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensedMedium.ttf",
  2814. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensedSemiBold.ttf",
  2815. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensedBold.ttf",
  2816. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensedSemiBold.ttf",
  2817. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-CondensedBlack.ttf",
  2818. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensedBlack.ttf",
  2819. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-Thin.ttf",
  2820. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensedExtraLight.ttf",
  2821. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiBold.ttf",
  2822. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-Regular.ttf",
  2823. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraLight.ttf",
  2824. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-Condensed.ttf",
  2825. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensedMedium.ttf",
  2826. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-CondensedMedium.ttf",
  2827. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-CondensedSemiBold.ttf",
  2828. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-CondensedExtraLight.ttf",
  2829. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensedExtraLight.ttf",
  2830. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-Black.ttf",
  2831. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensed.ttf",
  2832. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensedExtraBold.ttf",
  2833. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraBold.ttf",
  2834. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-Light.ttf",
  2835. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensed.ttf",
  2836. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-ExtraCondensedLight.ttf",
  2837. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-CondensedExtraBold.ttf",
  2838. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-Bold.ttf",
  2839. "fonts/NotoSansEthiopic/hinted/ttf/NotoSansEthiopic-SemiCondensedBlack.ttf",
  2840. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensedLight.otf",
  2841. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-CondensedExtraLight.otf",
  2842. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-Medium.otf",
  2843. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-Thin.otf",
  2844. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraBold.otf",
  2845. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensedThin.otf",
  2846. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensedExtraBold.otf",
  2847. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensedBold.otf",
  2848. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-CondensedBlack.otf",
  2849. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensedBold.otf",
  2850. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-Condensed.otf",
  2851. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-Bold.otf",
  2852. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensedBlack.otf",
  2853. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensedThin.otf",
  2854. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensedSemiBold.otf",
  2855. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensedExtraLight.otf",
  2856. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-CondensedBold.otf",
  2857. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-Light.otf",
  2858. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-Regular.otf",
  2859. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensedBlack.otf",
  2860. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensedLight.otf",
  2861. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiBold.otf",
  2862. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-CondensedExtraBold.otf",
  2863. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensedExtraLight.otf",
  2864. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraLight.otf",
  2865. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensedMedium.otf",
  2866. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-CondensedSemiBold.otf",
  2867. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensed.otf",
  2868. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-SemiCondensedMedium.otf",
  2869. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-CondensedThin.otf",
  2870. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensedSemiBold.otf",
  2871. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-CondensedLight.otf",
  2872. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensed.otf",
  2873. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-CondensedMedium.otf",
  2874. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-Black.otf",
  2875. "fonts/NotoSansEthiopic/unhinted/otf/NotoSansEthiopic-ExtraCondensedExtraBold.otf",
  2876. "fonts/NotoSansEthiopic/unhinted/variable-ttf/NotoSansEthiopic[wdth,wght].ttf",
  2877. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensedExtraBold.ttf",
  2878. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-Medium.ttf",
  2879. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensedLight.ttf",
  2880. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-CondensedThin.ttf",
  2881. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensedThin.ttf",
  2882. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-CondensedBold.ttf",
  2883. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensedThin.ttf",
  2884. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-CondensedLight.ttf",
  2885. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensedBold.ttf",
  2886. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensedMedium.ttf",
  2887. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensedSemiBold.ttf",
  2888. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensedBold.ttf",
  2889. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensedSemiBold.ttf",
  2890. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-CondensedBlack.ttf",
  2891. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensedBlack.ttf",
  2892. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-Thin.ttf",
  2893. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensedExtraLight.ttf",
  2894. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiBold.ttf",
  2895. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-Regular.ttf",
  2896. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraLight.ttf",
  2897. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-Condensed.ttf",
  2898. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensedMedium.ttf",
  2899. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-CondensedMedium.ttf",
  2900. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-CondensedSemiBold.ttf",
  2901. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-CondensedExtraLight.ttf",
  2902. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensedExtraLight.ttf",
  2903. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-Black.ttf",
  2904. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensed.ttf",
  2905. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensedExtraBold.ttf",
  2906. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraBold.ttf",
  2907. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-Light.ttf",
  2908. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensed.ttf",
  2909. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-ExtraCondensedLight.ttf",
  2910. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-CondensedExtraBold.ttf",
  2911. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-Bold.ttf",
  2912. "fonts/NotoSansEthiopic/unhinted/ttf/NotoSansEthiopic-SemiCondensedBlack.ttf",
  2913. "fonts/NotoSansEthiopic/unhinted/slim-variable-ttf/NotoSansEthiopic[wght].ttf",
  2914. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensedLight.otf",
  2915. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-CondensedExtraLight.otf",
  2916. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-Medium.otf",
  2917. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-Thin.otf",
  2918. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraBold.otf",
  2919. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensedThin.otf",
  2920. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensedExtraBold.otf",
  2921. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensedBold.otf",
  2922. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-CondensedBlack.otf",
  2923. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensedBold.otf",
  2924. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-Condensed.otf",
  2925. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-Bold.otf",
  2926. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensedBlack.otf",
  2927. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensedThin.otf",
  2928. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensedSemiBold.otf",
  2929. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensedExtraLight.otf",
  2930. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-CondensedBold.otf",
  2931. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-Light.otf",
  2932. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-Regular.otf",
  2933. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensedBlack.otf",
  2934. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensedLight.otf",
  2935. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiBold.otf",
  2936. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-CondensedExtraBold.otf",
  2937. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensedExtraLight.otf",
  2938. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraLight.otf",
  2939. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensedMedium.otf",
  2940. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-CondensedSemiBold.otf",
  2941. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensed.otf",
  2942. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-SemiCondensedMedium.otf",
  2943. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-CondensedThin.otf",
  2944. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensedSemiBold.otf",
  2945. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-CondensedLight.otf",
  2946. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensed.otf",
  2947. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-CondensedMedium.otf",
  2948. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-Black.otf",
  2949. "fonts/NotoSansEthiopic/full/otf/NotoSansEthiopic-ExtraCondensedExtraBold.otf",
  2950. "fonts/NotoSansEthiopic/full/variable-ttf/NotoSansEthiopic[wdth,wght].ttf",
  2951. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedExtraBold.ttf",
  2952. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Medium.ttf",
  2953. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedLight.ttf",
  2954. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedThin.ttf",
  2955. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedThin.ttf",
  2956. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedBold.ttf",
  2957. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedThin.ttf",
  2958. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedLight.ttf",
  2959. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedBold.ttf",
  2960. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedMedium.ttf",
  2961. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedSemiBold.ttf",
  2962. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedBold.ttf",
  2963. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedSemiBold.ttf",
  2964. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedBlack.ttf",
  2965. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedBlack.ttf",
  2966. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Thin.ttf",
  2967. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedExtraLight.ttf",
  2968. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiBold.ttf",
  2969. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Regular.ttf",
  2970. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraLight.ttf",
  2971. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Condensed.ttf",
  2972. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedMedium.ttf",
  2973. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedMedium.ttf",
  2974. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedSemiBold.ttf",
  2975. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedExtraLight.ttf",
  2976. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedExtraLight.ttf",
  2977. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Black.ttf",
  2978. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensed.ttf",
  2979. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedExtraBold.ttf",
  2980. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraBold.ttf",
  2981. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Light.ttf",
  2982. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensed.ttf",
  2983. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-ExtraCondensedLight.ttf",
  2984. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-CondensedExtraBold.ttf",
  2985. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-Bold.ttf",
  2986. "fonts/NotoSansEthiopic/full/ttf/NotoSansEthiopic-SemiCondensedBlack.ttf",
  2987. "fonts/NotoSansEthiopic/full/slim-variable-ttf/NotoSansEthiopic[wght].ttf",
  2988. "fonts/NotoSansEthiopic/googlefonts/variable-ttf/NotoSansEthiopic[wdth,wght].ttf",
  2989. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-Medium.ttf",
  2990. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-Thin.ttf",
  2991. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-SemiBold.ttf",
  2992. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-Regular.ttf",
  2993. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-ExtraLight.ttf",
  2994. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-Black.ttf",
  2995. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-ExtraBold.ttf",
  2996. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-Light.ttf",
  2997. "fonts/NotoSansEthiopic/googlefonts/ttf/NotoSansEthiopic-Bold.ttf"
  2998. ],
  2999. "latest_release": {
  3000. "notes": "Noto Sans Ethiopic v2.102\n\n- Added Unicode 14.0 Gurage characters: U+1E7E0, U+1E7E1, U+1E7E2,\n U+1E7E3, U+1E7E4, U+1E7E5, U+1E7E6, U+1E7E8, U+1E7E9, U+1E7EA,\n U+1E7EB, U+1E7ED, U+1E7EE, U+1E7F2, U+1E7F3, U+1E7F4, U+1E7F5,\n U+1E7F6, U+1E7F7, U+1E7F8, U+1E7F9, U+1E7FA, U+1E7FB, U+1E7FC,\n U+1E7FD, U+1E7FE.\n",
  3001. "published": "2022-11-04T15:46:53",
  3002. "url": "https://github.com/notofonts/ethiopic/releases/tag/NotoSansEthiopic-v2.102",
  3003. "version": "v2.102"
  3004. }
  3005. },
  3006. "Noto Serif Ethiopic": {
  3007. "files": [
  3008. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensed.ttf",
  3009. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-CondensedBlack.ttf",
  3010. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensedMedium.ttf",
  3011. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensedThin.ttf",
  3012. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-Light.ttf",
  3013. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensedSemiBold.ttf",
  3014. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-Condensed.ttf",
  3015. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-CondensedBold.ttf",
  3016. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensedExtraBold.ttf",
  3017. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraBold.ttf",
  3018. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-Thin.ttf",
  3019. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-CondensedMedium.ttf",
  3020. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensedMedium.ttf",
  3021. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-CondensedExtraBold.ttf",
  3022. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraLight.ttf",
  3023. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensedExtraLight.ttf",
  3024. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-CondensedSemiBold.ttf",
  3025. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-Black.ttf",
  3026. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensedBlack.ttf",
  3027. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensedExtraLight.ttf",
  3028. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-Regular.ttf",
  3029. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-CondensedExtraLight.ttf",
  3030. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-CondensedThin.ttf",
  3031. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensedBold.ttf",
  3032. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensedBlack.ttf",
  3033. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensedSemiBold.ttf",
  3034. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-Medium.ttf",
  3035. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensed.ttf",
  3036. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensedLight.ttf",
  3037. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensedBold.ttf",
  3038. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiCondensedExtraBold.ttf",
  3039. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-CondensedLight.ttf",
  3040. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensedThin.ttf",
  3041. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-SemiBold.ttf",
  3042. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-Bold.ttf",
  3043. "fonts/NotoSerifEthiopic/hinted/ttf/NotoSerifEthiopic-ExtraCondensedLight.ttf",
  3044. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-Light.otf",
  3045. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-Thin.otf",
  3046. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-CondensedLight.otf",
  3047. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-CondensedSemiBold.otf",
  3048. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensedThin.otf",
  3049. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensedLight.otf",
  3050. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensedBold.otf",
  3051. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiBold.otf",
  3052. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensedExtraBold.otf",
  3053. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-CondensedBold.otf",
  3054. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensedBold.otf",
  3055. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensed.otf",
  3056. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-CondensedBlack.otf",
  3057. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensedBlack.otf",
  3058. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensed.otf",
  3059. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-CondensedExtraLight.otf",
  3060. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-Black.otf",
  3061. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-Regular.otf",
  3062. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensedLight.otf",
  3063. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-CondensedExtraBold.otf",
  3064. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensedExtraBold.otf",
  3065. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraBold.otf",
  3066. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensedThin.otf",
  3067. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-Medium.otf",
  3068. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensedExtraLight.otf",
  3069. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensedExtraLight.otf",
  3070. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensedSemiBold.otf",
  3071. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-CondensedMedium.otf",
  3072. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensedBlack.otf",
  3073. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensedSemiBold.otf",
  3074. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-SemiCondensedMedium.otf",
  3075. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraCondensedMedium.otf",
  3076. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-Condensed.otf",
  3077. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-Bold.otf",
  3078. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-ExtraLight.otf",
  3079. "fonts/NotoSerifEthiopic/unhinted/otf/NotoSerifEthiopic-CondensedThin.otf",
  3080. "fonts/NotoSerifEthiopic/unhinted/variable-ttf/NotoSerifEthiopic[wdth,wght].ttf",
  3081. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensed.ttf",
  3082. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-CondensedBlack.ttf",
  3083. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensedMedium.ttf",
  3084. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensedThin.ttf",
  3085. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-Light.ttf",
  3086. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensedSemiBold.ttf",
  3087. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-Condensed.ttf",
  3088. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-CondensedBold.ttf",
  3089. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensedExtraBold.ttf",
  3090. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraBold.ttf",
  3091. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-Thin.ttf",
  3092. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-CondensedMedium.ttf",
  3093. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensedMedium.ttf",
  3094. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-CondensedExtraBold.ttf",
  3095. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraLight.ttf",
  3096. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensedExtraLight.ttf",
  3097. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-CondensedSemiBold.ttf",
  3098. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-Black.ttf",
  3099. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensedBlack.ttf",
  3100. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensedExtraLight.ttf",
  3101. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-Regular.ttf",
  3102. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-CondensedExtraLight.ttf",
  3103. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-CondensedThin.ttf",
  3104. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensedBold.ttf",
  3105. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensedBlack.ttf",
  3106. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensedSemiBold.ttf",
  3107. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-Medium.ttf",
  3108. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensed.ttf",
  3109. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensedLight.ttf",
  3110. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensedBold.ttf",
  3111. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiCondensedExtraBold.ttf",
  3112. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-CondensedLight.ttf",
  3113. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensedThin.ttf",
  3114. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-SemiBold.ttf",
  3115. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-Bold.ttf",
  3116. "fonts/NotoSerifEthiopic/unhinted/ttf/NotoSerifEthiopic-ExtraCondensedLight.ttf",
  3117. "fonts/NotoSerifEthiopic/unhinted/slim-variable-ttf/NotoSerifEthiopic[wght].ttf",
  3118. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-Light.otf",
  3119. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-Thin.otf",
  3120. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-CondensedLight.otf",
  3121. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-CondensedSemiBold.otf",
  3122. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensedThin.otf",
  3123. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensedLight.otf",
  3124. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensedBold.otf",
  3125. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiBold.otf",
  3126. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensedExtraBold.otf",
  3127. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-CondensedBold.otf",
  3128. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensedBold.otf",
  3129. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensed.otf",
  3130. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-CondensedBlack.otf",
  3131. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensedBlack.otf",
  3132. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensed.otf",
  3133. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-CondensedExtraLight.otf",
  3134. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-Black.otf",
  3135. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-Regular.otf",
  3136. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensedLight.otf",
  3137. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-CondensedExtraBold.otf",
  3138. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensedExtraBold.otf",
  3139. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraBold.otf",
  3140. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensedThin.otf",
  3141. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-Medium.otf",
  3142. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensedExtraLight.otf",
  3143. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensedExtraLight.otf",
  3144. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensedSemiBold.otf",
  3145. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-CondensedMedium.otf",
  3146. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensedBlack.otf",
  3147. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensedSemiBold.otf",
  3148. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-SemiCondensedMedium.otf",
  3149. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraCondensedMedium.otf",
  3150. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-Condensed.otf",
  3151. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-Bold.otf",
  3152. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-ExtraLight.otf",
  3153. "fonts/NotoSerifEthiopic/full/otf/NotoSerifEthiopic-CondensedThin.otf",
  3154. "fonts/NotoSerifEthiopic/full/variable-ttf/NotoSerifEthiopic[wdth,wght].ttf",
  3155. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensed.ttf",
  3156. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedBlack.ttf",
  3157. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedMedium.ttf",
  3158. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedThin.ttf",
  3159. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Light.ttf",
  3160. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedSemiBold.ttf",
  3161. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Condensed.ttf",
  3162. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedBold.ttf",
  3163. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedExtraBold.ttf",
  3164. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraBold.ttf",
  3165. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Thin.ttf",
  3166. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedMedium.ttf",
  3167. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedMedium.ttf",
  3168. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedExtraBold.ttf",
  3169. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraLight.ttf",
  3170. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedExtraLight.ttf",
  3171. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedSemiBold.ttf",
  3172. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Black.ttf",
  3173. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedBlack.ttf",
  3174. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedExtraLight.ttf",
  3175. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Regular.ttf",
  3176. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedExtraLight.ttf",
  3177. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedThin.ttf",
  3178. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedBold.ttf",
  3179. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedBlack.ttf",
  3180. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedSemiBold.ttf",
  3181. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Medium.ttf",
  3182. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensed.ttf",
  3183. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedLight.ttf",
  3184. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedBold.ttf",
  3185. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiCondensedExtraBold.ttf",
  3186. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-CondensedLight.ttf",
  3187. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedThin.ttf",
  3188. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-SemiBold.ttf",
  3189. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-Bold.ttf",
  3190. "fonts/NotoSerifEthiopic/full/ttf/NotoSerifEthiopic-ExtraCondensedLight.ttf",
  3191. "fonts/NotoSerifEthiopic/full/slim-variable-ttf/NotoSerifEthiopic[wght].ttf",
  3192. "fonts/NotoSerifEthiopic/googlefonts/variable-ttf/NotoSerifEthiopic[wdth,wght].ttf",
  3193. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-Light.ttf",
  3194. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-ExtraBold.ttf",
  3195. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-Thin.ttf",
  3196. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-ExtraLight.ttf",
  3197. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-Black.ttf",
  3198. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-Regular.ttf",
  3199. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-Medium.ttf",
  3200. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-SemiBold.ttf",
  3201. "fonts/NotoSerifEthiopic/googlefonts/ttf/NotoSerifEthiopic-Bold.ttf"
  3202. ],
  3203. "latest_release": {
  3204. "notes": "Noto Serif Ethiopic v2.102\n\n- Added Unicode 14.0 Gurage characters: U+1E7E0, U+1E7E1, U+1E7E2,\n U+1E7E3, U+1E7E4, U+1E7E5, U+1E7E6, U+1E7E8, U+1E7E9, U+1E7EA,\n U+1E7EB, U+1E7ED, U+1E7EE, U+1E7F2, U+1E7F3, U+1E7F4, U+1E7F5,\n U+1E7F6, U+1E7F7, U+1E7F8, U+1E7F9, U+1E7FA, U+1E7FB, U+1E7FC,\n U+1E7FD, U+1E7FE.\n",
  3205. "published": "2022-11-04T15:51:01",
  3206. "url": "https://github.com/notofonts/ethiopic/releases/tag/NotoSerifEthiopic-v2.102",
  3207. "version": "v2.102"
  3208. }
  3209. }
  3210. },
  3211. "known_releases": [
  3212. "NotoSansEthiopic-v2.101",
  3213. "NotoSerifEthiopic-v2.101",
  3214. "NotoSansEthiopic-v2.102",
  3215. "NotoSerifEthiopic-v2.102"
  3216. ]
  3217. },
  3218. "georgian": {
  3219. "families": {
  3220. "Noto Sans Georgian": {
  3221. "files": [
  3222. "fonts/NotoSansGeorgian/unhinted/slim-variable-ttf/NotoSansGeorgian[wght].ttf",
  3223. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensedExtraLight.ttf",
  3224. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensedExtraBold.ttf",
  3225. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensedBold.ttf",
  3226. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiBold.ttf",
  3227. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-Thin.ttf",
  3228. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-CondensedBold.ttf",
  3229. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensedLight.ttf",
  3230. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-CondensedMedium.ttf",
  3231. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensedExtraBold.ttf",
  3232. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensedMedium.ttf",
  3233. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-Light.ttf",
  3234. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensedThin.ttf",
  3235. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-CondensedLight.ttf",
  3236. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraLight.ttf",
  3237. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensedSemiBold.ttf",
  3238. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensedBlack.ttf",
  3239. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensedExtraLight.ttf",
  3240. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-Medium.ttf",
  3241. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-Regular.ttf",
  3242. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-CondensedExtraLight.ttf",
  3243. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-Condensed.ttf",
  3244. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensedSemiBold.ttf",
  3245. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensedBlack.ttf",
  3246. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-CondensedSemiBold.ttf",
  3247. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-Bold.ttf",
  3248. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-CondensedBlack.ttf",
  3249. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensed.ttf",
  3250. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensedLight.ttf",
  3251. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-CondensedExtraBold.ttf",
  3252. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraBold.ttf",
  3253. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-CondensedThin.ttf",
  3254. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensedBold.ttf",
  3255. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-SemiCondensedThin.ttf",
  3256. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensed.ttf",
  3257. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-ExtraCondensedMedium.ttf",
  3258. "fonts/NotoSansGeorgian/unhinted/ttf/NotoSansGeorgian-Black.ttf",
  3259. "fonts/NotoSansGeorgian/unhinted/variable/NotoSansGeorgian[wdth,wght].ttf",
  3260. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensedExtraLight.otf",
  3261. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensedThin.otf",
  3262. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiBold.otf",
  3263. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensedBold.otf",
  3264. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensedExtraBold.otf",
  3265. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensedBlack.otf",
  3266. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-Regular.otf",
  3267. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensedExtraBold.otf",
  3268. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-CondensedLight.otf",
  3269. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-CondensedMedium.otf",
  3270. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-CondensedSemiBold.otf",
  3271. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-Light.otf",
  3272. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensedSemiBold.otf",
  3273. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensedSemiBold.otf",
  3274. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensedMedium.otf",
  3275. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-Medium.otf",
  3276. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensed.otf",
  3277. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensedExtraLight.otf",
  3278. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-Condensed.otf",
  3279. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensedMedium.otf",
  3280. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensedBold.otf",
  3281. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-Thin.otf",
  3282. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-CondensedExtraLight.otf",
  3283. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensedBlack.otf",
  3284. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-Bold.otf",
  3285. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraCondensedLight.otf",
  3286. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-Black.otf",
  3287. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-CondensedBlack.otf",
  3288. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-CondensedBold.otf",
  3289. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensedLight.otf",
  3290. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-CondensedExtraBold.otf",
  3291. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-CondensedThin.otf",
  3292. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraBold.otf",
  3293. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-ExtraLight.otf",
  3294. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensed.otf",
  3295. "fonts/NotoSansGeorgian/unhinted/otf/NotoSansGeorgian-SemiCondensedThin.otf",
  3296. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensedExtraLight.ttf",
  3297. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensedExtraBold.ttf",
  3298. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensedBold.ttf",
  3299. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiBold.ttf",
  3300. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-Thin.ttf",
  3301. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-CondensedBold.ttf",
  3302. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensedLight.ttf",
  3303. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-CondensedMedium.ttf",
  3304. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensedExtraBold.ttf",
  3305. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensedMedium.ttf",
  3306. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-Light.ttf",
  3307. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensedThin.ttf",
  3308. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-CondensedLight.ttf",
  3309. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraLight.ttf",
  3310. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensedSemiBold.ttf",
  3311. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensedBlack.ttf",
  3312. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensedExtraLight.ttf",
  3313. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-Medium.ttf",
  3314. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-Regular.ttf",
  3315. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-CondensedExtraLight.ttf",
  3316. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-Condensed.ttf",
  3317. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensedSemiBold.ttf",
  3318. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensedBlack.ttf",
  3319. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-CondensedSemiBold.ttf",
  3320. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-Bold.ttf",
  3321. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-CondensedBlack.ttf",
  3322. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensed.ttf",
  3323. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensedLight.ttf",
  3324. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-CondensedExtraBold.ttf",
  3325. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraBold.ttf",
  3326. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-CondensedThin.ttf",
  3327. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensedBold.ttf",
  3328. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-SemiCondensedThin.ttf",
  3329. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensed.ttf",
  3330. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-ExtraCondensedMedium.ttf",
  3331. "fonts/NotoSansGeorgian/hinted/ttf/NotoSansGeorgian-Black.ttf",
  3332. "fonts/NotoSansGeorgian/full/slim-variable-ttf/NotoSansGeorgian[wght].ttf",
  3333. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedExtraLight.ttf",
  3334. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedExtraBold.ttf",
  3335. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedBold.ttf",
  3336. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiBold.ttf",
  3337. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Thin.ttf",
  3338. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedBold.ttf",
  3339. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedLight.ttf",
  3340. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedMedium.ttf",
  3341. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedExtraBold.ttf",
  3342. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedMedium.ttf",
  3343. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Light.ttf",
  3344. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedThin.ttf",
  3345. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedLight.ttf",
  3346. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraLight.ttf",
  3347. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedSemiBold.ttf",
  3348. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedBlack.ttf",
  3349. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedExtraLight.ttf",
  3350. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Medium.ttf",
  3351. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Regular.ttf",
  3352. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedExtraLight.ttf",
  3353. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Condensed.ttf",
  3354. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedSemiBold.ttf",
  3355. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedBlack.ttf",
  3356. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedSemiBold.ttf",
  3357. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Bold.ttf",
  3358. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedBlack.ttf",
  3359. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensed.ttf",
  3360. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedLight.ttf",
  3361. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedExtraBold.ttf",
  3362. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraBold.ttf",
  3363. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-CondensedThin.ttf",
  3364. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedBold.ttf",
  3365. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-SemiCondensedThin.ttf",
  3366. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensed.ttf",
  3367. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-ExtraCondensedMedium.ttf",
  3368. "fonts/NotoSansGeorgian/full/ttf/NotoSansGeorgian-Black.ttf",
  3369. "fonts/NotoSansGeorgian/full/variable/NotoSansGeorgian[wdth,wght].ttf",
  3370. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensedExtraLight.otf",
  3371. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensedThin.otf",
  3372. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiBold.otf",
  3373. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensedBold.otf",
  3374. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensedExtraBold.otf",
  3375. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensedBlack.otf",
  3376. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-Regular.otf",
  3377. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensedExtraBold.otf",
  3378. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-CondensedLight.otf",
  3379. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-CondensedMedium.otf",
  3380. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-CondensedSemiBold.otf",
  3381. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-Light.otf",
  3382. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensedSemiBold.otf",
  3383. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensedSemiBold.otf",
  3384. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensedMedium.otf",
  3385. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-Medium.otf",
  3386. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensed.otf",
  3387. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensedExtraLight.otf",
  3388. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-Condensed.otf",
  3389. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensedMedium.otf",
  3390. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensedBold.otf",
  3391. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-Thin.otf",
  3392. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-CondensedExtraLight.otf",
  3393. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensedBlack.otf",
  3394. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-Bold.otf",
  3395. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraCondensedLight.otf",
  3396. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-Black.otf",
  3397. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-CondensedBlack.otf",
  3398. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-CondensedBold.otf",
  3399. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensedLight.otf",
  3400. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-CondensedExtraBold.otf",
  3401. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-CondensedThin.otf",
  3402. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraBold.otf",
  3403. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-ExtraLight.otf",
  3404. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensed.otf",
  3405. "fonts/NotoSansGeorgian/full/otf/NotoSansGeorgian-SemiCondensedThin.otf",
  3406. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-SemiBold.ttf",
  3407. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-Thin.ttf",
  3408. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-Light.ttf",
  3409. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-ExtraLight.ttf",
  3410. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-Medium.ttf",
  3411. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-Regular.ttf",
  3412. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-Bold.ttf",
  3413. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-ExtraBold.ttf",
  3414. "fonts/NotoSansGeorgian/googlefonts/ttf/NotoSansGeorgian-Black.ttf",
  3415. "fonts/NotoSansGeorgian/googlefonts/variable/NotoSansGeorgian[wdth,wght].ttf"
  3416. ],
  3417. "latest_release": {
  3418. "notes": "Noto Sans Georgian v2.005\n\nThis release fixes an interpolation issue in Un+macron and Om+macron\n",
  3419. "published": "2024-02-14T11:24:07+00:00",
  3420. "url": "https://github.com/notofonts/georgian/releases/tag/NotoSansGeorgian-v2.005",
  3421. "version": "v2.005"
  3422. }
  3423. },
  3424. "Noto Serif Georgian": {
  3425. "files": [
  3426. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensedBlack.ttf",
  3427. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensedExtraLight.ttf",
  3428. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraBold.ttf",
  3429. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-CondensedExtraBold.ttf",
  3430. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensedThin.ttf",
  3431. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-Thin.ttf",
  3432. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-Light.ttf",
  3433. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-CondensedLight.ttf",
  3434. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-Bold.ttf",
  3435. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensedExtraBold.ttf",
  3436. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensedExtraBold.ttf",
  3437. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-CondensedMedium.ttf",
  3438. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-Black.ttf",
  3439. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiBold.ttf",
  3440. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensedBold.ttf",
  3441. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-CondensedThin.ttf",
  3442. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensedMedium.ttf",
  3443. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensedSemiBold.ttf",
  3444. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensedBold.ttf",
  3445. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-CondensedBold.ttf",
  3446. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensedMedium.ttf",
  3447. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-Condensed.ttf",
  3448. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensedExtraLight.ttf",
  3449. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-CondensedBlack.ttf",
  3450. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-CondensedExtraLight.ttf",
  3451. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraLight.ttf",
  3452. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensedBlack.ttf",
  3453. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensedThin.ttf",
  3454. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensedLight.ttf",
  3455. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-CondensedSemiBold.ttf",
  3456. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensed.ttf",
  3457. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-ExtraCondensedSemiBold.ttf",
  3458. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensed.ttf",
  3459. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-Regular.ttf",
  3460. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-Medium.ttf",
  3461. "fonts/NotoSerifGeorgian/unhinted/ttf/NotoSerifGeorgian-SemiCondensedLight.ttf",
  3462. "fonts/NotoSerifGeorgian/unhinted/variable/NotoSerifGeorgian[wdth,wght].ttf",
  3463. "fonts/NotoSerifGeorgian/unhinted/slim-variable-ttf/NotoSerifGeorgian[wght].ttf",
  3464. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensedThin.otf",
  3465. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensedMedium.otf",
  3466. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensedLight.otf",
  3467. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraLight.otf",
  3468. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-CondensedSemiBold.otf",
  3469. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensed.otf",
  3470. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensedBlack.otf",
  3471. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-Black.otf",
  3472. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensedExtraBold.otf",
  3473. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-CondensedBold.otf",
  3474. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraBold.otf",
  3475. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensedBold.otf",
  3476. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensed.otf",
  3477. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensedBlack.otf",
  3478. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-CondensedLight.otf",
  3479. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-Medium.otf",
  3480. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-Light.otf",
  3481. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-CondensedExtraBold.otf",
  3482. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-CondensedMedium.otf",
  3483. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensedSemiBold.otf",
  3484. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-Regular.otf",
  3485. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensedThin.otf",
  3486. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensedSemiBold.otf",
  3487. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-Bold.otf",
  3488. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-Thin.otf",
  3489. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-Condensed.otf",
  3490. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-CondensedBlack.otf",
  3491. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiBold.otf",
  3492. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensedExtraBold.otf",
  3493. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-ExtraCondensedExtraLight.otf",
  3494. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-CondensedThin.otf",
  3495. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensedLight.otf",
  3496. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensedExtraLight.otf",
  3497. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-CondensedExtraLight.otf",
  3498. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensedMedium.otf",
  3499. "fonts/NotoSerifGeorgian/unhinted/otf/NotoSerifGeorgian-SemiCondensedBold.otf",
  3500. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedBlack.ttf",
  3501. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedExtraLight.ttf",
  3502. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraBold.ttf",
  3503. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedExtraBold.ttf",
  3504. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedThin.ttf",
  3505. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Thin.ttf",
  3506. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Light.ttf",
  3507. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedLight.ttf",
  3508. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Bold.ttf",
  3509. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedExtraBold.ttf",
  3510. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedExtraBold.ttf",
  3511. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedMedium.ttf",
  3512. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Black.ttf",
  3513. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiBold.ttf",
  3514. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedBold.ttf",
  3515. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedThin.ttf",
  3516. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedMedium.ttf",
  3517. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedSemiBold.ttf",
  3518. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedBold.ttf",
  3519. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedBold.ttf",
  3520. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedMedium.ttf",
  3521. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Condensed.ttf",
  3522. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedExtraLight.ttf",
  3523. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedBlack.ttf",
  3524. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedExtraLight.ttf",
  3525. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraLight.ttf",
  3526. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedBlack.ttf",
  3527. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedThin.ttf",
  3528. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedLight.ttf",
  3529. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-CondensedSemiBold.ttf",
  3530. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensed.ttf",
  3531. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-ExtraCondensedSemiBold.ttf",
  3532. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensed.ttf",
  3533. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Regular.ttf",
  3534. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-Medium.ttf",
  3535. "fonts/NotoSerifGeorgian/full/ttf/NotoSerifGeorgian-SemiCondensedLight.ttf",
  3536. "fonts/NotoSerifGeorgian/full/variable/NotoSerifGeorgian[wdth,wght].ttf",
  3537. "fonts/NotoSerifGeorgian/full/slim-variable-ttf/NotoSerifGeorgian[wght].ttf",
  3538. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensedThin.otf",
  3539. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensedMedium.otf",
  3540. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensedLight.otf",
  3541. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraLight.otf",
  3542. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-CondensedSemiBold.otf",
  3543. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensed.otf",
  3544. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensedBlack.otf",
  3545. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-Black.otf",
  3546. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensedExtraBold.otf",
  3547. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-CondensedBold.otf",
  3548. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraBold.otf",
  3549. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensedBold.otf",
  3550. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensed.otf",
  3551. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensedBlack.otf",
  3552. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-CondensedLight.otf",
  3553. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-Medium.otf",
  3554. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-Light.otf",
  3555. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-CondensedExtraBold.otf",
  3556. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-CondensedMedium.otf",
  3557. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensedSemiBold.otf",
  3558. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-Regular.otf",
  3559. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensedThin.otf",
  3560. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensedSemiBold.otf",
  3561. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-Bold.otf",
  3562. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-Thin.otf",
  3563. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-Condensed.otf",
  3564. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-CondensedBlack.otf",
  3565. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiBold.otf",
  3566. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensedExtraBold.otf",
  3567. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-ExtraCondensedExtraLight.otf",
  3568. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-CondensedThin.otf",
  3569. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensedLight.otf",
  3570. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensedExtraLight.otf",
  3571. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-CondensedExtraLight.otf",
  3572. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensedMedium.otf",
  3573. "fonts/NotoSerifGeorgian/full/otf/NotoSerifGeorgian-SemiCondensedBold.otf",
  3574. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensedBlack.ttf",
  3575. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensedExtraLight.ttf",
  3576. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraBold.ttf",
  3577. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-CondensedExtraBold.ttf",
  3578. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensedThin.ttf",
  3579. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-Thin.ttf",
  3580. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-Light.ttf",
  3581. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-CondensedLight.ttf",
  3582. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-Bold.ttf",
  3583. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensedExtraBold.ttf",
  3584. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensedExtraBold.ttf",
  3585. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-CondensedMedium.ttf",
  3586. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-Black.ttf",
  3587. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiBold.ttf",
  3588. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensedBold.ttf",
  3589. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-CondensedThin.ttf",
  3590. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensedMedium.ttf",
  3591. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensedSemiBold.ttf",
  3592. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensedBold.ttf",
  3593. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-CondensedBold.ttf",
  3594. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensedMedium.ttf",
  3595. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-Condensed.ttf",
  3596. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensedExtraLight.ttf",
  3597. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-CondensedBlack.ttf",
  3598. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-CondensedExtraLight.ttf",
  3599. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraLight.ttf",
  3600. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensedBlack.ttf",
  3601. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensedThin.ttf",
  3602. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensedLight.ttf",
  3603. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-CondensedSemiBold.ttf",
  3604. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensed.ttf",
  3605. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-ExtraCondensedSemiBold.ttf",
  3606. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensed.ttf",
  3607. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-Regular.ttf",
  3608. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-Medium.ttf",
  3609. "fonts/NotoSerifGeorgian/hinted/ttf/NotoSerifGeorgian-SemiCondensedLight.ttf",
  3610. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-ExtraBold.ttf",
  3611. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-Thin.ttf",
  3612. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-Light.ttf",
  3613. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-Bold.ttf",
  3614. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-Black.ttf",
  3615. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-SemiBold.ttf",
  3616. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-ExtraLight.ttf",
  3617. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-Regular.ttf",
  3618. "fonts/NotoSerifGeorgian/googlefonts/ttf/NotoSerifGeorgian-Medium.ttf",
  3619. "fonts/NotoSerifGeorgian/googlefonts/variable/NotoSerifGeorgian[wdth,wght].ttf"
  3620. ],
  3621. "latest_release": {
  3622. "notes": "Noto Serif Georgian v2.003\n\nThis release adds the numero to full builds (#6) and fixes a kerning issue (#2)\n",
  3623. "published": "2023-09-25T12:22:15",
  3624. "url": "https://github.com/notofonts/georgian/releases/tag/NotoSerifGeorgian-v2.003",
  3625. "version": "v2.003"
  3626. }
  3627. }
  3628. },
  3629. "known_releases": [
  3630. "NotoSansGeorgian-v2.002",
  3631. "NotoSerifGeorgian-v2.002",
  3632. "NotoSerifGeorgian-v2.003",
  3633. "NotoSansGeorgian-v2.003",
  3634. "NotoSansGeorgian-v2.004",
  3635. "NotoSansGeorgian-v2.005"
  3636. ]
  3637. },
  3638. "glagolitic": {
  3639. "families": {
  3640. "Noto Sans Glagolitic": {
  3641. "files": [
  3642. "fonts/NotoSansGlagolitic/hinted/ttf/NotoSansGlagolitic-Regular.ttf",
  3643. "fonts/NotoSansGlagolitic/googlefonts/ttf/NotoSansGlagolitic-Regular.ttf",
  3644. "fonts/NotoSansGlagolitic/unhinted/ttf/NotoSansGlagolitic-Regular.ttf",
  3645. "fonts/NotoSansGlagolitic/unhinted/otf/NotoSansGlagolitic-Regular.otf",
  3646. "fonts/NotoSansGlagolitic/full/ttf/NotoSansGlagolitic-Regular.ttf",
  3647. "fonts/NotoSansGlagolitic/full/otf/NotoSansGlagolitic-Regular.otf"
  3648. ],
  3649. "latest_release": {
  3650. "notes": "Noto Sans Glagolitic v2.004\n\nThis release fixes a problem with the anchoring of glyphs to the dotted circle.\n",
  3651. "published": "2023-11-07T13:24:34+00:00",
  3652. "url": "https://github.com/notofonts/glagolitic/releases/tag/NotoSansGlagolitic-v2.004",
  3653. "version": "v2.004"
  3654. }
  3655. }
  3656. },
  3657. "known_releases": [
  3658. "NotoSansGlagolitic-v2.001",
  3659. "NotoSansGlagolitic-v2.002",
  3660. "NotoSansGlagolitic-v2.003",
  3661. "NotoSansGlagolitic-v2.004"
  3662. ]
  3663. },
  3664. "gothic": {
  3665. "families": {
  3666. "Noto Sans Gothic": {
  3667. "files": [
  3668. "fonts/NotoSansGothic/full/ttf/NotoSansGothic-Regular.ttf",
  3669. "fonts/NotoSansGothic/full/otf/NotoSansGothic-Regular.otf",
  3670. "fonts/NotoSansGothic/googlefonts/ttf/NotoSansGothic-Regular.ttf",
  3671. "fonts/NotoSansGothic/unhinted/ttf/NotoSansGothic-Regular.ttf",
  3672. "fonts/NotoSansGothic/unhinted/otf/NotoSansGothic-Regular.otf",
  3673. "fonts/NotoSansGothic/hinted/ttf/NotoSansGothic-Regular.ttf"
  3674. ],
  3675. "latest_release": {
  3676. "notes": "Noto Sans Gothic v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  3677. "published": "2022-09-19T12:22:16",
  3678. "url": "https://github.com/notofonts/gothic/releases/tag/NotoSansGothic-v2.001",
  3679. "version": "v2.001"
  3680. }
  3681. }
  3682. },
  3683. "known_releases": [
  3684. "NotoSansGothic-v2.001"
  3685. ]
  3686. },
  3687. "grantha": {
  3688. "families": {
  3689. "Noto Sans Grantha": {
  3690. "files": [
  3691. "fonts/NotoSansGrantha/googlefonts/ttf/NotoSansGrantha-Regular.ttf",
  3692. "fonts/NotoSansGrantha/full/otf/NotoSansGrantha-Regular.otf",
  3693. "fonts/NotoSansGrantha/full/ttf/NotoSansGrantha-Regular.ttf",
  3694. "fonts/NotoSansGrantha/hinted/ttf/NotoSansGrantha-Regular.ttf",
  3695. "fonts/NotoSansGrantha/unhinted/otf/NotoSansGrantha-Regular.otf",
  3696. "fonts/NotoSansGrantha/unhinted/ttf/NotoSansGrantha-Regular.ttf"
  3697. ],
  3698. "latest_release": {
  3699. "notes": "Noto Sans Grantha v2.005\n\nThis release:\n\n* Fills out the \"flat tails\" stylistic set (#17)\n* Fills out the \"alternate kha\" stylistic set (#18)\n* Fixes the spacing of vocalic R/RR (#21)\n* Ensures that successive YA PHALAA glyphs do not overlap (#22)\n",
  3700. "published": "2024-05-20T12:40:13+00:00",
  3701. "url": "https://github.com/notofonts/grantha/releases/tag/NotoSansGrantha-v2.005",
  3702. "version": "v2.005"
  3703. }
  3704. },
  3705. "Noto Serif Grantha": {
  3706. "files": [
  3707. "fonts/NotoSerifGrantha/googlefonts/ttf/NotoSerifGrantha-Regular.ttf",
  3708. "fonts/NotoSerifGrantha/full/otf/NotoSerifGrantha-Regular.otf",
  3709. "fonts/NotoSerifGrantha/full/ttf/NotoSerifGrantha-Regular.ttf",
  3710. "fonts/NotoSerifGrantha/hinted/ttf/NotoSerifGrantha-Regular.ttf",
  3711. "fonts/NotoSerifGrantha/unhinted/otf/NotoSerifGrantha-Regular.otf",
  3712. "fonts/NotoSerifGrantha/unhinted/ttf/NotoSerifGrantha-Regular.ttf"
  3713. ],
  3714. "latest_release": {
  3715. "notes": "Noto Serif Grantha v2.005\n\nThis release:\n\n* Fixes the spacing of vocalic R/RR (#21)\n* Ensures that successive YA PHALAA glyphs do not overlap (#22)\n",
  3716. "published": "2024-05-20T12:40:07+00:00",
  3717. "url": "https://github.com/notofonts/grantha/releases/tag/NotoSerifGrantha-v2.005",
  3718. "version": "v2.005"
  3719. }
  3720. }
  3721. },
  3722. "known_releases": [
  3723. "NotoSansGrantha-v2.003",
  3724. "NotoSerifGrantha-v2.004",
  3725. "NotoSerifGrantha-v2.005",
  3726. "NotoSansGrantha-v2.005"
  3727. ]
  3728. },
  3729. "gujarati": {
  3730. "families": {
  3731. "Noto Sans Gujarati": {
  3732. "files": [
  3733. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensedMedium.ttf",
  3734. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-CondensedExtraLight.ttf",
  3735. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-Medium.ttf",
  3736. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-Regular.ttf",
  3737. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensed.ttf",
  3738. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensed.ttf",
  3739. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensed.ttf",
  3740. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensedLight.ttf",
  3741. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensedExtraLight.ttf",
  3742. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensedBold.ttf",
  3743. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-CondensedBlack.ttf",
  3744. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-CondensedLight.ttf",
  3745. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensedSemiBold.ttf",
  3746. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-Black.ttf",
  3747. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-Light.ttf",
  3748. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensedMedium.ttf",
  3749. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensedBold.ttf",
  3750. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-Light.ttf",
  3751. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensedExtraBold.ttf",
  3752. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-CondensedExtraBold.ttf",
  3753. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-CondensedMedium.ttf",
  3754. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensedThin.ttf",
  3755. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensedBlack.ttf",
  3756. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensedExtraLight.ttf",
  3757. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-CondensedBold.ttf",
  3758. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiBold.ttf",
  3759. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensedBlack.ttf",
  3760. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraLight.ttf",
  3761. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensedLight.ttf",
  3762. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensedSemiBold.ttf",
  3763. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensedExtraBold.ttf",
  3764. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-CondensedLight.ttf",
  3765. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-Thin.ttf",
  3766. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensedBold.ttf",
  3767. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-CondensedThin.ttf",
  3768. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-CondensedExtraBold.ttf",
  3769. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensedBlack.ttf",
  3770. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensed.ttf",
  3771. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-Bold.ttf",
  3772. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensedThin.ttf",
  3773. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensedLight.ttf",
  3774. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-Condensed.ttf",
  3775. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensedMedium.ttf",
  3776. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-CondensedSemiBold.ttf",
  3777. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensedExtraBold.ttf",
  3778. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-CondensedBold.ttf",
  3779. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-CondensedExtraLight.ttf",
  3780. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-Bold.ttf",
  3781. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensedExtraLight.ttf",
  3782. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-Medium.ttf",
  3783. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-CondensedMedium.ttf",
  3784. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensedSemiBold.ttf",
  3785. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraBold.ttf",
  3786. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-Regular.ttf",
  3787. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-CondensedThin.ttf",
  3788. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensedExtraLight.ttf",
  3789. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensedBold.ttf",
  3790. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraLight.ttf",
  3791. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensedSemiBold.ttf",
  3792. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-Thin.ttf",
  3793. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-CondensedSemiBold.ttf",
  3794. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensedBlack.ttf",
  3795. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-Condensed.ttf",
  3796. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-ExtraCondensedMedium.ttf",
  3797. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensedLight.ttf",
  3798. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-Black.ttf",
  3799. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiCondensedExtraBold.ttf",
  3800. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-CondensedBlack.ttf",
  3801. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-SemiCondensedThin.ttf",
  3802. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujaratiUI-SemiBold.ttf",
  3803. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraBold.ttf",
  3804. "fonts/NotoSansGujarati/hinted/ttf/NotoSansGujarati-ExtraCondensedThin.ttf",
  3805. "fonts/NotoSansGujarati/unhinted/slim-variable-ttf/NotoSansGujarati[wght].ttf",
  3806. "fonts/NotoSansGujarati/unhinted/variable/NotoSansGujarati[wdth,wght].ttf",
  3807. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensedMedium.ttf",
  3808. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-CondensedExtraLight.ttf",
  3809. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-Medium.ttf",
  3810. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-Regular.ttf",
  3811. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensed.ttf",
  3812. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensed.ttf",
  3813. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensed.ttf",
  3814. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensedLight.ttf",
  3815. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensedExtraLight.ttf",
  3816. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensedBold.ttf",
  3817. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-CondensedBlack.ttf",
  3818. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-CondensedLight.ttf",
  3819. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensedSemiBold.ttf",
  3820. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-Black.ttf",
  3821. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-Light.ttf",
  3822. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensedMedium.ttf",
  3823. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensedBold.ttf",
  3824. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-Light.ttf",
  3825. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensedExtraBold.ttf",
  3826. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-CondensedExtraBold.ttf",
  3827. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-CondensedMedium.ttf",
  3828. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensedThin.ttf",
  3829. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensedBlack.ttf",
  3830. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensedExtraLight.ttf",
  3831. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-CondensedBold.ttf",
  3832. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiBold.ttf",
  3833. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensedBlack.ttf",
  3834. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraLight.ttf",
  3835. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensedLight.ttf",
  3836. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensedSemiBold.ttf",
  3837. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensedExtraBold.ttf",
  3838. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-CondensedLight.ttf",
  3839. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-Thin.ttf",
  3840. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensedBold.ttf",
  3841. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-CondensedThin.ttf",
  3842. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-CondensedExtraBold.ttf",
  3843. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensedBlack.ttf",
  3844. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensed.ttf",
  3845. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-Bold.ttf",
  3846. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensedThin.ttf",
  3847. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensedLight.ttf",
  3848. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-Condensed.ttf",
  3849. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensedMedium.ttf",
  3850. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-CondensedSemiBold.ttf",
  3851. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensedExtraBold.ttf",
  3852. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-CondensedBold.ttf",
  3853. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-CondensedExtraLight.ttf",
  3854. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-Bold.ttf",
  3855. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensedExtraLight.ttf",
  3856. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-Medium.ttf",
  3857. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-CondensedMedium.ttf",
  3858. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensedSemiBold.ttf",
  3859. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraBold.ttf",
  3860. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-Regular.ttf",
  3861. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-CondensedThin.ttf",
  3862. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensedExtraLight.ttf",
  3863. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensedBold.ttf",
  3864. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraLight.ttf",
  3865. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensedSemiBold.ttf",
  3866. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-Thin.ttf",
  3867. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-CondensedSemiBold.ttf",
  3868. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensedBlack.ttf",
  3869. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-Condensed.ttf",
  3870. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-ExtraCondensedMedium.ttf",
  3871. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensedLight.ttf",
  3872. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-Black.ttf",
  3873. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiCondensedExtraBold.ttf",
  3874. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-CondensedBlack.ttf",
  3875. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-SemiCondensedThin.ttf",
  3876. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujaratiUI-SemiBold.ttf",
  3877. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraBold.ttf",
  3878. "fonts/NotoSansGujarati/unhinted/ttf/NotoSansGujarati-ExtraCondensedThin.ttf",
  3879. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensedExtraLight.otf",
  3880. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-CondensedExtraBold.otf",
  3881. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensedLight.otf",
  3882. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-CondensedExtraBold.otf",
  3883. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-CondensedLight.otf",
  3884. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensedThin.otf",
  3885. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-CondensedBlack.otf",
  3886. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraLight.otf",
  3887. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensedSemiBold.otf",
  3888. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensedExtraBold.otf",
  3889. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-CondensedMedium.otf",
  3890. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensedBold.otf",
  3891. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-CondensedThin.otf",
  3892. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraBold.otf",
  3893. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensedThin.otf",
  3894. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-CondensedBlack.otf",
  3895. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensed.otf",
  3896. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensedExtraBold.otf",
  3897. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensedBlack.otf",
  3898. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-Light.otf",
  3899. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensedSemiBold.otf",
  3900. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-Bold.otf",
  3901. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensedExtraLight.otf",
  3902. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-Bold.otf",
  3903. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensedLight.otf",
  3904. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-CondensedExtraLight.otf",
  3905. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensedMedium.otf",
  3906. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensedBold.otf",
  3907. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-CondensedMedium.otf",
  3908. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-Black.otf",
  3909. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraBold.otf",
  3910. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-CondensedExtraLight.otf",
  3911. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensedExtraBold.otf",
  3912. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-CondensedThin.otf",
  3913. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-Light.otf",
  3914. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensedBold.otf",
  3915. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiCondensedBlack.otf",
  3916. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensed.otf",
  3917. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensedMedium.otf",
  3918. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiBold.otf",
  3919. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-Regular.otf",
  3920. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensedThin.otf",
  3921. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensedExtraLight.otf",
  3922. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensedBlack.otf",
  3923. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-Black.otf",
  3924. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensedExtraLight.otf",
  3925. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensedBlack.otf",
  3926. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-SemiBold.otf",
  3927. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensedSemiBold.otf",
  3928. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensed.otf",
  3929. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensedThin.otf",
  3930. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-Condensed.otf",
  3931. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-Thin.otf",
  3932. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensedExtraBold.otf",
  3933. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensedLight.otf",
  3934. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensedSemiBold.otf",
  3935. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-CondensedSemiBold.otf",
  3936. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensed.otf",
  3937. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-Thin.otf",
  3938. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraLight.otf",
  3939. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-ExtraCondensedMedium.otf",
  3940. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-CondensedSemiBold.otf",
  3941. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-Condensed.otf",
  3942. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-Regular.otf",
  3943. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-CondensedLight.otf",
  3944. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-Medium.otf",
  3945. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-Medium.otf",
  3946. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-ExtraCondensedBold.otf",
  3947. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujarati-CondensedBold.otf",
  3948. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-CondensedBold.otf",
  3949. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensedMedium.otf",
  3950. "fonts/NotoSansGujarati/unhinted/otf/NotoSansGujaratiUI-SemiCondensedLight.otf",
  3951. "fonts/NotoSansGujarati/googlefonts/variable/NotoSansGujarati[wdth,wght].ttf",
  3952. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-Medium.ttf",
  3953. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-Regular.ttf",
  3954. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-Black.ttf",
  3955. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-Light.ttf",
  3956. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-Light.ttf",
  3957. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-SemiBold.ttf",
  3958. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-ExtraLight.ttf",
  3959. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-Thin.ttf",
  3960. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-Bold.ttf",
  3961. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-Bold.ttf",
  3962. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-Medium.ttf",
  3963. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-ExtraBold.ttf",
  3964. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-Regular.ttf",
  3965. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-ExtraLight.ttf",
  3966. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-Thin.ttf",
  3967. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-Black.ttf",
  3968. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujaratiUI-SemiBold.ttf",
  3969. "fonts/NotoSansGujarati/googlefonts/ttf/NotoSansGujarati-ExtraBold.ttf",
  3970. "fonts/NotoSansGujarati/full/slim-variable-ttf/NotoSansGujarati[wght].ttf",
  3971. "fonts/NotoSansGujarati/full/variable/NotoSansGujarati[wdth,wght].ttf",
  3972. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedMedium.ttf",
  3973. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedExtraLight.ttf",
  3974. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Medium.ttf",
  3975. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Regular.ttf",
  3976. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensed.ttf",
  3977. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensed.ttf",
  3978. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensed.ttf",
  3979. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedLight.ttf",
  3980. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedExtraLight.ttf",
  3981. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedBold.ttf",
  3982. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedBlack.ttf",
  3983. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedLight.ttf",
  3984. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedSemiBold.ttf",
  3985. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Black.ttf",
  3986. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Light.ttf",
  3987. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedMedium.ttf",
  3988. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedBold.ttf",
  3989. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Light.ttf",
  3990. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedExtraBold.ttf",
  3991. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedExtraBold.ttf",
  3992. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedMedium.ttf",
  3993. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedThin.ttf",
  3994. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedBlack.ttf",
  3995. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedExtraLight.ttf",
  3996. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedBold.ttf",
  3997. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiBold.ttf",
  3998. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedBlack.ttf",
  3999. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraLight.ttf",
  4000. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedLight.ttf",
  4001. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedSemiBold.ttf",
  4002. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedExtraBold.ttf",
  4003. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedLight.ttf",
  4004. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Thin.ttf",
  4005. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedBold.ttf",
  4006. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedThin.ttf",
  4007. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedExtraBold.ttf",
  4008. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedBlack.ttf",
  4009. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensed.ttf",
  4010. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Bold.ttf",
  4011. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedThin.ttf",
  4012. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedLight.ttf",
  4013. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Condensed.ttf",
  4014. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedMedium.ttf",
  4015. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedSemiBold.ttf",
  4016. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedExtraBold.ttf",
  4017. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedBold.ttf",
  4018. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedExtraLight.ttf",
  4019. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Bold.ttf",
  4020. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedExtraLight.ttf",
  4021. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Medium.ttf",
  4022. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedMedium.ttf",
  4023. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedSemiBold.ttf",
  4024. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraBold.ttf",
  4025. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Regular.ttf",
  4026. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedThin.ttf",
  4027. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedExtraLight.ttf",
  4028. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedBold.ttf",
  4029. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraLight.ttf",
  4030. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedSemiBold.ttf",
  4031. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Thin.ttf",
  4032. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-CondensedSemiBold.ttf",
  4033. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedBlack.ttf",
  4034. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-Condensed.ttf",
  4035. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-ExtraCondensedMedium.ttf",
  4036. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedLight.ttf",
  4037. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-Black.ttf",
  4038. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiCondensedExtraBold.ttf",
  4039. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-CondensedBlack.ttf",
  4040. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-SemiCondensedThin.ttf",
  4041. "fonts/NotoSansGujarati/full/ttf/NotoSansGujaratiUI-SemiBold.ttf",
  4042. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraBold.ttf",
  4043. "fonts/NotoSansGujarati/full/ttf/NotoSansGujarati-ExtraCondensedThin.ttf",
  4044. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensedExtraLight.otf",
  4045. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-CondensedExtraBold.otf",
  4046. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensedLight.otf",
  4047. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-CondensedExtraBold.otf",
  4048. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-CondensedLight.otf",
  4049. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensedThin.otf",
  4050. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-CondensedBlack.otf",
  4051. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraLight.otf",
  4052. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensedSemiBold.otf",
  4053. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensedExtraBold.otf",
  4054. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-CondensedMedium.otf",
  4055. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensedBold.otf",
  4056. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-CondensedThin.otf",
  4057. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraBold.otf",
  4058. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensedThin.otf",
  4059. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-CondensedBlack.otf",
  4060. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensed.otf",
  4061. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensedExtraBold.otf",
  4062. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensedBlack.otf",
  4063. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-Light.otf",
  4064. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensedSemiBold.otf",
  4065. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-Bold.otf",
  4066. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensedExtraLight.otf",
  4067. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-Bold.otf",
  4068. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensedLight.otf",
  4069. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-CondensedExtraLight.otf",
  4070. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensedMedium.otf",
  4071. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensedBold.otf",
  4072. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-CondensedMedium.otf",
  4073. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-Black.otf",
  4074. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraBold.otf",
  4075. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-CondensedExtraLight.otf",
  4076. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensedExtraBold.otf",
  4077. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-CondensedThin.otf",
  4078. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-Light.otf",
  4079. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensedBold.otf",
  4080. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiCondensedBlack.otf",
  4081. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensed.otf",
  4082. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensedMedium.otf",
  4083. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiBold.otf",
  4084. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-Regular.otf",
  4085. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensedThin.otf",
  4086. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensedExtraLight.otf",
  4087. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensedBlack.otf",
  4088. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-Black.otf",
  4089. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensedExtraLight.otf",
  4090. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensedBlack.otf",
  4091. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-SemiBold.otf",
  4092. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensedSemiBold.otf",
  4093. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensed.otf",
  4094. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensedThin.otf",
  4095. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-Condensed.otf",
  4096. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-Thin.otf",
  4097. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensedExtraBold.otf",
  4098. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensedLight.otf",
  4099. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensedSemiBold.otf",
  4100. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-CondensedSemiBold.otf",
  4101. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensed.otf",
  4102. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-Thin.otf",
  4103. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraLight.otf",
  4104. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-ExtraCondensedMedium.otf",
  4105. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-CondensedSemiBold.otf",
  4106. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-Condensed.otf",
  4107. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-Regular.otf",
  4108. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-CondensedLight.otf",
  4109. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-Medium.otf",
  4110. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-Medium.otf",
  4111. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-ExtraCondensedBold.otf",
  4112. "fonts/NotoSansGujarati/full/otf/NotoSansGujarati-CondensedBold.otf",
  4113. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-CondensedBold.otf",
  4114. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensedMedium.otf",
  4115. "fonts/NotoSansGujarati/full/otf/NotoSansGujaratiUI-SemiCondensedLight.otf"
  4116. ],
  4117. "latest_release": {
  4118. "notes": "Noto Sans Gujarati v2.106\n\nThis release re-exports the danda/double danda glyphs and fixes an interpolation issue in uuvowelsignnuktagujr.\n",
  4119. "published": "2023-10-26T10:08:16+00:00",
  4120. "url": "https://github.com/notofonts/gujarati/releases/tag/NotoSansGujarati-v2.106",
  4121. "version": "v2.106"
  4122. }
  4123. },
  4124. "Noto Serif Gujarati": {
  4125. "files": [
  4126. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-Bold.ttf",
  4127. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-Thin.ttf",
  4128. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-Black.ttf",
  4129. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-SemiBold.ttf",
  4130. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-ExtraBold.ttf",
  4131. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-Light.ttf",
  4132. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-Medium.ttf",
  4133. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-Regular.ttf",
  4134. "fonts/NotoSerifGujarati/hinted/ttf/NotoSerifGujarati-ExtraLight.ttf",
  4135. "fonts/NotoSerifGujarati/unhinted/slim-variable-ttf/NotoSerifGujarati[wght].ttf",
  4136. "fonts/NotoSerifGujarati/unhinted/variable/NotoSerifGujarati[wght].ttf",
  4137. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-Bold.ttf",
  4138. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-Thin.ttf",
  4139. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-Black.ttf",
  4140. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-SemiBold.ttf",
  4141. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-ExtraBold.ttf",
  4142. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-Light.ttf",
  4143. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-Medium.ttf",
  4144. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-Regular.ttf",
  4145. "fonts/NotoSerifGujarati/unhinted/ttf/NotoSerifGujarati-ExtraLight.ttf",
  4146. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-Light.otf",
  4147. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-SemiBold.otf",
  4148. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-ExtraLight.otf",
  4149. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-Thin.otf",
  4150. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-Medium.otf",
  4151. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-ExtraBold.otf",
  4152. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-Black.otf",
  4153. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-Regular.otf",
  4154. "fonts/NotoSerifGujarati/unhinted/otf/NotoSerifGujarati-Bold.otf",
  4155. "fonts/NotoSerifGujarati/googlefonts/variable/NotoSerifGujarati[wght].ttf",
  4156. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-Bold.ttf",
  4157. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-Thin.ttf",
  4158. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-Black.ttf",
  4159. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-SemiBold.ttf",
  4160. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-ExtraBold.ttf",
  4161. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-Light.ttf",
  4162. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-Medium.ttf",
  4163. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-Regular.ttf",
  4164. "fonts/NotoSerifGujarati/googlefonts/ttf/NotoSerifGujarati-ExtraLight.ttf",
  4165. "fonts/NotoSerifGujarati/full/slim-variable-ttf/NotoSerifGujarati[wght].ttf",
  4166. "fonts/NotoSerifGujarati/full/variable/NotoSerifGujarati[wght].ttf",
  4167. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Bold.ttf",
  4168. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Thin.ttf",
  4169. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Black.ttf",
  4170. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-SemiBold.ttf",
  4171. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-ExtraBold.ttf",
  4172. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Light.ttf",
  4173. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Medium.ttf",
  4174. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-Regular.ttf",
  4175. "fonts/NotoSerifGujarati/full/ttf/NotoSerifGujarati-ExtraLight.ttf",
  4176. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-Light.otf",
  4177. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-SemiBold.otf",
  4178. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-ExtraLight.otf",
  4179. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-Thin.otf",
  4180. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-Medium.otf",
  4181. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-ExtraBold.otf",
  4182. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-Black.otf",
  4183. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-Regular.otf",
  4184. "fonts/NotoSerifGujarati/full/otf/NotoSerifGujarati-Bold.otf"
  4185. ],
  4186. "latest_release": {
  4187. "notes": "Noto Serif Gujarati v2.106\n\nThis release:\n\n* fixes an interpolation issue in k_ss_r\n* restores the ra-u and ra-uu ligatures\n",
  4188. "published": "2023-10-26T10:36:11+00:00",
  4189. "url": "https://github.com/notofonts/gujarati/releases/tag/NotoSerifGujarati-v2.106",
  4190. "version": "v2.106"
  4191. }
  4192. }
  4193. },
  4194. "known_releases": [
  4195. "NotoSansGujarati-v2.102",
  4196. "NotoSerifGujarati-v2.102",
  4197. "NotoSansGujarati-v2.103",
  4198. "NotoSerifGujarati-v2.103",
  4199. "NotoSansGujarati-v2.104",
  4200. "NotoSerifGujarati-v2.104",
  4201. "NotoSansGujarati-v2.105",
  4202. "NotoSerifGujarati-v2.105",
  4203. "NotoSansGujarati-v2.106",
  4204. "NotoSerifGujarati-v2.106"
  4205. ]
  4206. },
  4207. "gunjala-gondi": {
  4208. "families": {
  4209. "Noto Sans Gunjala Gondi": {
  4210. "files": [
  4211. "fonts/NotoSansGunjalaGondi/full/slim-variable-ttf/NotoSansGunjalaGondi[wght].ttf",
  4212. "fonts/NotoSansGunjalaGondi/full/ttf/NotoSansGunjalaGondi-Bold.ttf",
  4213. "fonts/NotoSansGunjalaGondi/full/ttf/NotoSansGunjalaGondi-Semibold.ttf",
  4214. "fonts/NotoSansGunjalaGondi/full/ttf/NotoSansGunjalaGondi-Regular.ttf",
  4215. "fonts/NotoSansGunjalaGondi/full/ttf/NotoSansGunjalaGondi-Medium.ttf",
  4216. "fonts/NotoSansGunjalaGondi/full/otf/NotoSansGunjalaGondi-Medium.otf",
  4217. "fonts/NotoSansGunjalaGondi/full/otf/NotoSansGunjalaGondi-Regular.otf",
  4218. "fonts/NotoSansGunjalaGondi/full/otf/NotoSansGunjalaGondi-Semibold.otf",
  4219. "fonts/NotoSansGunjalaGondi/full/otf/NotoSansGunjalaGondi-Bold.otf",
  4220. "fonts/NotoSansGunjalaGondi/full/variable-ttf/NotoSansGunjalaGondi[wght].ttf",
  4221. "fonts/NotoSansGunjalaGondi/googlefonts/ttf/NotoSansGunjalaGondi-Bold.ttf",
  4222. "fonts/NotoSansGunjalaGondi/googlefonts/ttf/NotoSansGunjalaGondi-Regular.ttf",
  4223. "fonts/NotoSansGunjalaGondi/googlefonts/ttf/NotoSansGunjalaGondi-Medium.ttf",
  4224. "fonts/NotoSansGunjalaGondi/googlefonts/variable-ttf/NotoSansGunjalaGondi[wght].ttf",
  4225. "fonts/NotoSansGunjalaGondi/unhinted/slim-variable-ttf/NotoSansGunjalaGondi[wght].ttf",
  4226. "fonts/NotoSansGunjalaGondi/unhinted/ttf/NotoSansGunjalaGondi-Bold.ttf",
  4227. "fonts/NotoSansGunjalaGondi/unhinted/ttf/NotoSansGunjalaGondi-Semibold.ttf",
  4228. "fonts/NotoSansGunjalaGondi/unhinted/ttf/NotoSansGunjalaGondi-Regular.ttf",
  4229. "fonts/NotoSansGunjalaGondi/unhinted/ttf/NotoSansGunjalaGondi-Medium.ttf",
  4230. "fonts/NotoSansGunjalaGondi/unhinted/otf/NotoSansGunjalaGondi-Medium.otf",
  4231. "fonts/NotoSansGunjalaGondi/unhinted/otf/NotoSansGunjalaGondi-Regular.otf",
  4232. "fonts/NotoSansGunjalaGondi/unhinted/otf/NotoSansGunjalaGondi-Semibold.otf",
  4233. "fonts/NotoSansGunjalaGondi/unhinted/otf/NotoSansGunjalaGondi-Bold.otf",
  4234. "fonts/NotoSansGunjalaGondi/unhinted/variable-ttf/NotoSansGunjalaGondi[wght].ttf",
  4235. "fonts/NotoSansGunjalaGondi/hinted/ttf/NotoSansGunjalaGondi-Bold.ttf",
  4236. "fonts/NotoSansGunjalaGondi/hinted/ttf/NotoSansGunjalaGondi-Semibold.ttf",
  4237. "fonts/NotoSansGunjalaGondi/hinted/ttf/NotoSansGunjalaGondi-Regular.ttf",
  4238. "fonts/NotoSansGunjalaGondi/hinted/ttf/NotoSansGunjalaGondi-Medium.ttf"
  4239. ],
  4240. "latest_release": {
  4241. "notes": "This release:\r\n\r\n* Fixes matra decomposition where the AA vowel would disappear (#2)\r\n* Fixes some contextual forms of -OO/-AU vowels (#1)",
  4242. "published": "2023-06-21T15:20:25",
  4243. "url": "https://github.com/notofonts/gunjala-gondi/releases/tag/NotoSansGunjalaGondi-v1.004",
  4244. "version": "v1.004"
  4245. }
  4246. }
  4247. },
  4248. "known_releases": [
  4249. "NotoSansGunjalaGondi-v1.003",
  4250. "NotoSansGunjalaGondi-v1.004"
  4251. ]
  4252. },
  4253. "gurmukhi": {
  4254. "families": {
  4255. "Noto Sans Gurmukhi": {
  4256. "files": [
  4257. "fonts/NotoSansGurmukhi/full/slim-variable-ttf/NotoSansGurmukhi[wght].ttf",
  4258. "fonts/NotoSansGurmukhi/full/variable-ttf/NotoSansGurmukhi[wdth,wght].ttf",
  4259. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-Medium.otf",
  4260. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-CondensedThin.otf",
  4261. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensedBold.otf",
  4262. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensedLight.otf",
  4263. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-Light.otf",
  4264. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensedThin.otf",
  4265. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensed.otf",
  4266. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensedMedium.otf",
  4267. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensedSemiBold.otf",
  4268. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraBold.otf",
  4269. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensedExtraLight.otf",
  4270. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensedLight.otf",
  4271. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-CondensedBlack.otf",
  4272. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-CondensedSemiBold.otf",
  4273. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensedThin.otf",
  4274. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-Bold.otf",
  4275. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-CondensedThin.otf",
  4276. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-Regular.otf",
  4277. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensedBlack.otf",
  4278. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensedSemiBold.otf",
  4279. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensedSemiBold.otf",
  4280. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-CondensedLight.otf",
  4281. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-CondensedExtraBold.otf",
  4282. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensedBlack.otf",
  4283. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-Medium.otf",
  4284. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-Thin.otf",
  4285. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensedThin.otf",
  4286. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensed.otf",
  4287. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensedExtraLight.otf",
  4288. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-Thin.otf",
  4289. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensedExtraLight.otf",
  4290. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-CondensedExtraBold.otf",
  4291. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensedExtraLight.otf",
  4292. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-Regular.otf",
  4293. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensedBlack.otf",
  4294. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-CondensedBold.otf",
  4295. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensedExtraBold.otf",
  4296. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraLight.otf",
  4297. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-CondensedMedium.otf",
  4298. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-Black.otf",
  4299. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensedThin.otf",
  4300. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-CondensedBlack.otf",
  4301. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensed.otf",
  4302. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-Light.otf",
  4303. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-CondensedExtraLight.otf",
  4304. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-Condensed.otf",
  4305. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraLight.otf",
  4306. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensedBold.otf",
  4307. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensedExtraBold.otf",
  4308. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensedMedium.otf",
  4309. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-Condensed.otf",
  4310. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraBold.otf",
  4311. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensedMedium.otf",
  4312. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiBold.otf",
  4313. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensedLight.otf",
  4314. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-ExtraCondensedLight.otf",
  4315. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensed.otf",
  4316. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-CondensedBold.otf",
  4317. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-ExtraCondensedBold.otf",
  4318. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensedMedium.otf",
  4319. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-CondensedMedium.otf",
  4320. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-CondensedSemiBold.otf",
  4321. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensedExtraBold.otf",
  4322. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensedSemiBold.otf",
  4323. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-CondensedLight.otf",
  4324. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiBold.otf",
  4325. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensedBold.otf",
  4326. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-CondensedExtraLight.otf",
  4327. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-Bold.otf",
  4328. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhiUI-SemiCondensedBlack.otf",
  4329. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-Black.otf",
  4330. "fonts/NotoSansGurmukhi/full/otf/NotoSansGurmukhi-SemiCondensedExtraBold.otf",
  4331. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedThin.ttf",
  4332. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedMedium.ttf",
  4333. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedThin.ttf",
  4334. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedSemiBold.ttf",
  4335. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedLight.ttf",
  4336. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedExtraBold.ttf",
  4337. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedBold.ttf",
  4338. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedBlack.ttf",
  4339. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedExtraBold.ttf",
  4340. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedLight.ttf",
  4341. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraLight.ttf",
  4342. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedSemiBold.ttf",
  4343. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedBlack.ttf",
  4344. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedSemiBold.ttf",
  4345. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedSemiBold.ttf",
  4346. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedExtraLight.ttf",
  4347. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Condensed.ttf",
  4348. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Condensed.ttf",
  4349. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensed.ttf",
  4350. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedMedium.ttf",
  4351. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedBold.ttf",
  4352. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedBlack.ttf",
  4353. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraBold.ttf",
  4354. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraBold.ttf",
  4355. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedLight.ttf",
  4356. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraLight.ttf",
  4357. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedLight.ttf",
  4358. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiBold.ttf",
  4359. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedMedium.ttf",
  4360. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Thin.ttf",
  4361. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Regular.ttf",
  4362. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedThin.ttf",
  4363. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensed.ttf",
  4364. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Regular.ttf",
  4365. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedBold.ttf",
  4366. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensed.ttf",
  4367. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedExtraLight.ttf",
  4368. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedBlack.ttf",
  4369. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraCondensedThin.ttf",
  4370. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Bold.ttf",
  4371. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensed.ttf",
  4372. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Light.ttf",
  4373. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Medium.ttf",
  4374. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedThin.ttf",
  4375. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedMedium.ttf",
  4376. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Black.ttf",
  4377. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Bold.ttf",
  4378. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedBold.ttf",
  4379. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedSemiBold.ttf",
  4380. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraBold.ttf",
  4381. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiBold.ttf",
  4382. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedLight.ttf",
  4383. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Light.ttf",
  4384. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedExtraBold.ttf",
  4385. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Black.ttf",
  4386. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedExtraBold.ttf",
  4387. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedExtraLight.ttf",
  4388. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-Thin.ttf",
  4389. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedExtraLight.ttf",
  4390. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-ExtraLight.ttf",
  4391. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedMedium.ttf",
  4392. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedBlack.ttf",
  4393. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedLight.ttf",
  4394. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-SemiCondensedBold.ttf",
  4395. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedSemiBold.ttf",
  4396. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedBold.ttf",
  4397. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-CondensedBlack.ttf",
  4398. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-SemiCondensedMedium.ttf",
  4399. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedThin.ttf",
  4400. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhiUI-Medium.ttf",
  4401. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-ExtraCondensedExtraBold.ttf",
  4402. "fonts/NotoSansGurmukhi/full/ttf/NotoSansGurmukhi-CondensedExtraLight.ttf",
  4403. "fonts/NotoSansGurmukhi/googlefonts/variable-ttf/NotoSansGurmukhi[wdth,wght].ttf",
  4404. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-ExtraLight.ttf",
  4405. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-ExtraBold.ttf",
  4406. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-SemiBold.ttf",
  4407. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-Thin.ttf",
  4408. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-Regular.ttf",
  4409. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-Regular.ttf",
  4410. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-Bold.ttf",
  4411. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-Light.ttf",
  4412. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-Medium.ttf",
  4413. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-Black.ttf",
  4414. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-Bold.ttf",
  4415. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-ExtraBold.ttf",
  4416. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-SemiBold.ttf",
  4417. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-Light.ttf",
  4418. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-Black.ttf",
  4419. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhi-Thin.ttf",
  4420. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-ExtraLight.ttf",
  4421. "fonts/NotoSansGurmukhi/googlefonts/ttf/NotoSansGurmukhiUI-Medium.ttf",
  4422. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensedThin.ttf",
  4423. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensedMedium.ttf",
  4424. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-CondensedThin.ttf",
  4425. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-CondensedSemiBold.ttf",
  4426. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensedLight.ttf",
  4427. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensedExtraBold.ttf",
  4428. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensedBold.ttf",
  4429. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensedBlack.ttf",
  4430. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensedExtraBold.ttf",
  4431. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensedLight.ttf",
  4432. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraLight.ttf",
  4433. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensedSemiBold.ttf",
  4434. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-CondensedBlack.ttf",
  4435. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensedSemiBold.ttf",
  4436. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-CondensedSemiBold.ttf",
  4437. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensedExtraLight.ttf",
  4438. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-Condensed.ttf",
  4439. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-Condensed.ttf",
  4440. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensed.ttf",
  4441. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensedMedium.ttf",
  4442. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-CondensedBold.ttf",
  4443. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensedBlack.ttf",
  4444. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraBold.ttf",
  4445. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraBold.ttf",
  4446. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-CondensedLight.ttf",
  4447. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraLight.ttf",
  4448. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-CondensedLight.ttf",
  4449. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiBold.ttf",
  4450. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-CondensedMedium.ttf",
  4451. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-Thin.ttf",
  4452. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-Regular.ttf",
  4453. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensedThin.ttf",
  4454. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensed.ttf",
  4455. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-Regular.ttf",
  4456. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-CondensedBold.ttf",
  4457. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensed.ttf",
  4458. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensedExtraLight.ttf",
  4459. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensedBlack.ttf",
  4460. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraCondensedThin.ttf",
  4461. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-Bold.ttf",
  4462. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensed.ttf",
  4463. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-Light.ttf",
  4464. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-Medium.ttf",
  4465. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensedThin.ttf",
  4466. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensedMedium.ttf",
  4467. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-Black.ttf",
  4468. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-Bold.ttf",
  4469. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensedBold.ttf",
  4470. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensedSemiBold.ttf",
  4471. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraBold.ttf",
  4472. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiBold.ttf",
  4473. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensedLight.ttf",
  4474. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-Light.ttf",
  4475. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-CondensedExtraBold.ttf",
  4476. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-Black.ttf",
  4477. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-CondensedExtraBold.ttf",
  4478. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensedExtraLight.ttf",
  4479. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-Thin.ttf",
  4480. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-CondensedExtraLight.ttf",
  4481. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-ExtraLight.ttf",
  4482. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-CondensedMedium.ttf",
  4483. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensedBlack.ttf",
  4484. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensedLight.ttf",
  4485. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-SemiCondensedBold.ttf",
  4486. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensedSemiBold.ttf",
  4487. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensedBold.ttf",
  4488. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-CondensedBlack.ttf",
  4489. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-SemiCondensedMedium.ttf",
  4490. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-CondensedThin.ttf",
  4491. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhiUI-Medium.ttf",
  4492. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-ExtraCondensedExtraBold.ttf",
  4493. "fonts/NotoSansGurmukhi/hinted/ttf/NotoSansGurmukhi-CondensedExtraLight.ttf",
  4494. "fonts/NotoSansGurmukhi/unhinted/slim-variable-ttf/NotoSansGurmukhi[wght].ttf",
  4495. "fonts/NotoSansGurmukhi/unhinted/variable-ttf/NotoSansGurmukhi[wdth,wght].ttf",
  4496. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-Medium.otf",
  4497. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-CondensedThin.otf",
  4498. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensedBold.otf",
  4499. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensedLight.otf",
  4500. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-Light.otf",
  4501. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensedThin.otf",
  4502. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensed.otf",
  4503. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensedMedium.otf",
  4504. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensedSemiBold.otf",
  4505. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraBold.otf",
  4506. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensedExtraLight.otf",
  4507. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensedLight.otf",
  4508. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-CondensedBlack.otf",
  4509. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-CondensedSemiBold.otf",
  4510. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensedThin.otf",
  4511. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-Bold.otf",
  4512. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-CondensedThin.otf",
  4513. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-Regular.otf",
  4514. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensedBlack.otf",
  4515. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensedSemiBold.otf",
  4516. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensedSemiBold.otf",
  4517. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-CondensedLight.otf",
  4518. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-CondensedExtraBold.otf",
  4519. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensedBlack.otf",
  4520. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-Medium.otf",
  4521. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-Thin.otf",
  4522. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensedThin.otf",
  4523. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensed.otf",
  4524. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensedExtraLight.otf",
  4525. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-Thin.otf",
  4526. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensedExtraLight.otf",
  4527. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-CondensedExtraBold.otf",
  4528. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensedExtraLight.otf",
  4529. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-Regular.otf",
  4530. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensedBlack.otf",
  4531. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-CondensedBold.otf",
  4532. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensedExtraBold.otf",
  4533. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraLight.otf",
  4534. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-CondensedMedium.otf",
  4535. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-Black.otf",
  4536. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensedThin.otf",
  4537. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-CondensedBlack.otf",
  4538. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensed.otf",
  4539. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-Light.otf",
  4540. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-CondensedExtraLight.otf",
  4541. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-Condensed.otf",
  4542. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraLight.otf",
  4543. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensedBold.otf",
  4544. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensedExtraBold.otf",
  4545. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensedMedium.otf",
  4546. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-Condensed.otf",
  4547. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraBold.otf",
  4548. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensedMedium.otf",
  4549. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiBold.otf",
  4550. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensedLight.otf",
  4551. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-ExtraCondensedLight.otf",
  4552. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensed.otf",
  4553. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-CondensedBold.otf",
  4554. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-ExtraCondensedBold.otf",
  4555. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensedMedium.otf",
  4556. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-CondensedMedium.otf",
  4557. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-CondensedSemiBold.otf",
  4558. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensedExtraBold.otf",
  4559. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensedSemiBold.otf",
  4560. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-CondensedLight.otf",
  4561. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiBold.otf",
  4562. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensedBold.otf",
  4563. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-CondensedExtraLight.otf",
  4564. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-Bold.otf",
  4565. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhiUI-SemiCondensedBlack.otf",
  4566. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-Black.otf",
  4567. "fonts/NotoSansGurmukhi/unhinted/otf/NotoSansGurmukhi-SemiCondensedExtraBold.otf",
  4568. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensedThin.ttf",
  4569. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensedMedium.ttf",
  4570. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-CondensedThin.ttf",
  4571. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-CondensedSemiBold.ttf",
  4572. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensedLight.ttf",
  4573. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensedExtraBold.ttf",
  4574. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensedBold.ttf",
  4575. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensedBlack.ttf",
  4576. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensedExtraBold.ttf",
  4577. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensedLight.ttf",
  4578. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraLight.ttf",
  4579. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensedSemiBold.ttf",
  4580. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-CondensedBlack.ttf",
  4581. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensedSemiBold.ttf",
  4582. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-CondensedSemiBold.ttf",
  4583. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensedExtraLight.ttf",
  4584. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-Condensed.ttf",
  4585. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-Condensed.ttf",
  4586. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensed.ttf",
  4587. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensedMedium.ttf",
  4588. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-CondensedBold.ttf",
  4589. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensedBlack.ttf",
  4590. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraBold.ttf",
  4591. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraBold.ttf",
  4592. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-CondensedLight.ttf",
  4593. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensedExtraLight.ttf",
  4594. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-CondensedLight.ttf",
  4595. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiBold.ttf",
  4596. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-CondensedMedium.ttf",
  4597. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-Thin.ttf",
  4598. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-Regular.ttf",
  4599. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensedThin.ttf",
  4600. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensed.ttf",
  4601. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-Regular.ttf",
  4602. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-CondensedBold.ttf",
  4603. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensed.ttf",
  4604. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensedExtraLight.ttf",
  4605. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensedBlack.ttf",
  4606. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraCondensedThin.ttf",
  4607. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-Bold.ttf",
  4608. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensed.ttf",
  4609. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-Light.ttf",
  4610. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-Medium.ttf",
  4611. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensedThin.ttf",
  4612. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensedMedium.ttf",
  4613. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-Black.ttf",
  4614. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-Bold.ttf",
  4615. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensedBold.ttf",
  4616. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensedSemiBold.ttf",
  4617. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraBold.ttf",
  4618. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiBold.ttf",
  4619. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensedLight.ttf",
  4620. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-Light.ttf",
  4621. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-CondensedExtraBold.ttf",
  4622. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-Black.ttf",
  4623. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-CondensedExtraBold.ttf",
  4624. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensedExtraLight.ttf",
  4625. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-Thin.ttf",
  4626. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-CondensedExtraLight.ttf",
  4627. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-ExtraLight.ttf",
  4628. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-CondensedMedium.ttf",
  4629. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensedBlack.ttf",
  4630. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensedLight.ttf",
  4631. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-SemiCondensedBold.ttf",
  4632. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensedSemiBold.ttf",
  4633. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensedBold.ttf",
  4634. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-CondensedBlack.ttf",
  4635. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-SemiCondensedMedium.ttf",
  4636. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-CondensedThin.ttf",
  4637. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhiUI-Medium.ttf",
  4638. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-ExtraCondensedExtraBold.ttf",
  4639. "fonts/NotoSansGurmukhi/unhinted/ttf/NotoSansGurmukhi-CondensedExtraLight.ttf"
  4640. ],
  4641. "latest_release": {
  4642. "notes": "Noto Sans Gurmurkhi v2.004\n\nThis release:\n* Is a bit smaller by removing unnecessary ligatures (#2)\n* Fixes the positioning of bindi before the II matra (#23)\n",
  4643. "published": "2023-03-27T10:14:38",
  4644. "url": "https://github.com/notofonts/gurmukhi/releases/tag/NotoSansGurmukhi-v2.004",
  4645. "version": "v2.004"
  4646. }
  4647. },
  4648. "Noto Serif Gurmukhi": {
  4649. "files": [
  4650. "fonts/NotoSerifGurmukhi/full/slim-variable-ttf/NotoSerifGurmukhi[wght].ttf",
  4651. "fonts/NotoSerifGurmukhi/full/variable-ttf/NotoSerifGurmukhi[wght].ttf",
  4652. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-SemiBold.otf",
  4653. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-Black.otf",
  4654. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-ExtraLight.otf",
  4655. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-Regular.otf",
  4656. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-Medium.otf",
  4657. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-ExtraBold.otf",
  4658. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-Light.otf",
  4659. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-Thin.otf",
  4660. "fonts/NotoSerifGurmukhi/full/otf/NotoSerifGurmukhi-Bold.otf",
  4661. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Black.ttf",
  4662. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-ExtraLight.ttf",
  4663. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-ExtraBold.ttf",
  4664. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Medium.ttf",
  4665. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Bold.ttf",
  4666. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-SemiBold.ttf",
  4667. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Regular.ttf",
  4668. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Light.ttf",
  4669. "fonts/NotoSerifGurmukhi/full/ttf/NotoSerifGurmukhi-Thin.ttf",
  4670. "fonts/NotoSerifGurmukhi/googlefonts/variable-ttf/NotoSerifGurmukhi[wght].ttf",
  4671. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-Black.ttf",
  4672. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-ExtraLight.ttf",
  4673. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-ExtraBold.ttf",
  4674. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-Medium.ttf",
  4675. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-Bold.ttf",
  4676. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-SemiBold.ttf",
  4677. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-Regular.ttf",
  4678. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-Light.ttf",
  4679. "fonts/NotoSerifGurmukhi/googlefonts/ttf/NotoSerifGurmukhi-Thin.ttf",
  4680. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-Black.ttf",
  4681. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-ExtraLight.ttf",
  4682. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-ExtraBold.ttf",
  4683. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-Medium.ttf",
  4684. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-Bold.ttf",
  4685. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-SemiBold.ttf",
  4686. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-Regular.ttf",
  4687. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-Light.ttf",
  4688. "fonts/NotoSerifGurmukhi/hinted/ttf/NotoSerifGurmukhi-Thin.ttf",
  4689. "fonts/NotoSerifGurmukhi/unhinted/slim-variable-ttf/NotoSerifGurmukhi[wght].ttf",
  4690. "fonts/NotoSerifGurmukhi/unhinted/variable-ttf/NotoSerifGurmukhi[wght].ttf",
  4691. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-SemiBold.otf",
  4692. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-Black.otf",
  4693. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-ExtraLight.otf",
  4694. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-Regular.otf",
  4695. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-Medium.otf",
  4696. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-ExtraBold.otf",
  4697. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-Light.otf",
  4698. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-Thin.otf",
  4699. "fonts/NotoSerifGurmukhi/unhinted/otf/NotoSerifGurmukhi-Bold.otf",
  4700. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-Black.ttf",
  4701. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-ExtraLight.ttf",
  4702. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-ExtraBold.ttf",
  4703. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-Medium.ttf",
  4704. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-Bold.ttf",
  4705. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-SemiBold.ttf",
  4706. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-Regular.ttf",
  4707. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-Light.ttf",
  4708. "fonts/NotoSerifGurmukhi/unhinted/ttf/NotoSerifGurmukhi-Thin.ttf"
  4709. ],
  4710. "latest_release": {
  4711. "notes": "Noto Serif Gurmukhi v2.004\n\nThis release:\n* Fixes the positioning of bindi before the II matra (#23)\n",
  4712. "published": "2023-03-27T10:17:10",
  4713. "url": "https://github.com/notofonts/gurmukhi/releases/tag/NotoSerifGurmukhi-v2.004",
  4714. "version": "v2.004"
  4715. }
  4716. }
  4717. },
  4718. "known_releases": [
  4719. "NotoSansGurmukhi-v2.003",
  4720. "NotoSerifGurmukhi-v2.003",
  4721. "NotoSansGurmukhi-v2.004",
  4722. "NotoSerifGurmukhi-v2.004"
  4723. ]
  4724. },
  4725. "hanifi-rohingya": {
  4726. "families": {
  4727. "Noto Sans Hanifi Rohingya": {
  4728. "files": [
  4729. "fonts/NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Medium.ttf",
  4730. "fonts/NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Bold.ttf",
  4731. "fonts/NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-Regular.ttf",
  4732. "fonts/NotoSansHanifiRohingya/full/ttf/NotoSansHanifiRohingya-SemiBold.ttf",
  4733. "fonts/NotoSansHanifiRohingya/full/otf/NotoSansHanifiRohingya-Regular.otf",
  4734. "fonts/NotoSansHanifiRohingya/full/otf/NotoSansHanifiRohingya-SemiBold.otf",
  4735. "fonts/NotoSansHanifiRohingya/full/otf/NotoSansHanifiRohingya-Bold.otf",
  4736. "fonts/NotoSansHanifiRohingya/full/otf/NotoSansHanifiRohingya-Medium.otf",
  4737. "fonts/NotoSansHanifiRohingya/full/variable-ttf/NotoSansHanifiRohingya[wght].ttf",
  4738. "fonts/NotoSansHanifiRohingya/full/slim-variable-ttf/NotoSansHanifiRohingya[wght].ttf",
  4739. "fonts/NotoSansHanifiRohingya/hinted/ttf/NotoSansHanifiRohingya-Medium.ttf",
  4740. "fonts/NotoSansHanifiRohingya/hinted/ttf/NotoSansHanifiRohingya-Bold.ttf",
  4741. "fonts/NotoSansHanifiRohingya/hinted/ttf/NotoSansHanifiRohingya-Regular.ttf",
  4742. "fonts/NotoSansHanifiRohingya/hinted/ttf/NotoSansHanifiRohingya-SemiBold.ttf",
  4743. "fonts/NotoSansHanifiRohingya/unhinted/ttf/NotoSansHanifiRohingya-Medium.ttf",
  4744. "fonts/NotoSansHanifiRohingya/unhinted/ttf/NotoSansHanifiRohingya-Bold.ttf",
  4745. "fonts/NotoSansHanifiRohingya/unhinted/ttf/NotoSansHanifiRohingya-Regular.ttf",
  4746. "fonts/NotoSansHanifiRohingya/unhinted/ttf/NotoSansHanifiRohingya-SemiBold.ttf",
  4747. "fonts/NotoSansHanifiRohingya/unhinted/otf/NotoSansHanifiRohingya-Regular.otf",
  4748. "fonts/NotoSansHanifiRohingya/unhinted/otf/NotoSansHanifiRohingya-SemiBold.otf",
  4749. "fonts/NotoSansHanifiRohingya/unhinted/otf/NotoSansHanifiRohingya-Bold.otf",
  4750. "fonts/NotoSansHanifiRohingya/unhinted/otf/NotoSansHanifiRohingya-Medium.otf",
  4751. "fonts/NotoSansHanifiRohingya/unhinted/variable-ttf/NotoSansHanifiRohingya[wght].ttf",
  4752. "fonts/NotoSansHanifiRohingya/unhinted/slim-variable-ttf/NotoSansHanifiRohingya[wght].ttf",
  4753. "fonts/NotoSansHanifiRohingya/googlefonts/ttf/NotoSansHanifiRohingya-Medium.ttf",
  4754. "fonts/NotoSansHanifiRohingya/googlefonts/ttf/NotoSansHanifiRohingya-Bold.ttf",
  4755. "fonts/NotoSansHanifiRohingya/googlefonts/ttf/NotoSansHanifiRohingya-Regular.ttf",
  4756. "fonts/NotoSansHanifiRohingya/googlefonts/ttf/NotoSansHanifiRohingya-SemiBold.ttf",
  4757. "fonts/NotoSansHanifiRohingya/googlefonts/variable-ttf/NotoSansHanifiRohingya[wght].ttf"
  4758. ],
  4759. "latest_release": {
  4760. "notes": "This release fixes some collisions between tassi and tana marks (#2)",
  4761. "published": "2023-06-23T08:55:00",
  4762. "url": "https://github.com/notofonts/hanifi-rohingya/releases/tag/NotoSansHanifiRohingya-v2.102",
  4763. "version": "v2.102"
  4764. }
  4765. }
  4766. },
  4767. "known_releases": [
  4768. "NotoSansHanifiRohingya-v2.101",
  4769. "NotoSansHanifiRohingya-v2.102"
  4770. ]
  4771. },
  4772. "hanunoo": {
  4773. "families": {
  4774. "Noto Sans Hanunoo": {
  4775. "files": [
  4776. "fonts/NotoSansHanunoo/full/ttf/NotoSansHanunoo-Regular.ttf",
  4777. "fonts/NotoSansHanunoo/full/otf/NotoSansHanunoo-Regular.otf",
  4778. "fonts/NotoSansHanunoo/hinted/ttf/NotoSansHanunoo-Regular.ttf",
  4779. "fonts/NotoSansHanunoo/unhinted/slim-otf/NotoSansHanunoo-Regular.otf",
  4780. "fonts/NotoSansHanunoo/unhinted/ttf/NotoSansHanunoo-Regular.ttf",
  4781. "fonts/NotoSansHanunoo/unhinted/otf/NotoSansHanunoo-Regular.otf",
  4782. "fonts/NotoSansHanunoo/googlefonts/ttf/NotoSansHanunoo-Regular.ttf"
  4783. ],
  4784. "latest_release": {
  4785. "notes": "This release makes U+1734 HANUNOO SIGN PAMUDPOD spacing, fixing issue #2",
  4786. "published": "2023-06-22T12:03:36",
  4787. "url": "https://github.com/notofonts/hanunoo/releases/tag/NotoSansHanunoo-v2.004",
  4788. "version": "v2.004"
  4789. }
  4790. }
  4791. },
  4792. "known_releases": [
  4793. "NotoSansHanunoo-v2.003",
  4794. "NotoSansHanunoo-v2.004"
  4795. ]
  4796. },
  4797. "hatran": {
  4798. "families": {
  4799. "Noto Sans Hatran": {
  4800. "files": [
  4801. "fonts/NotoSansHatran/full/ttf/NotoSansHatran-Regular.ttf",
  4802. "fonts/NotoSansHatran/full/otf/NotoSansHatran-Regular.otf",
  4803. "fonts/NotoSansHatran/googlefonts/ttf/NotoSansHatran-Regular.ttf",
  4804. "fonts/NotoSansHatran/unhinted/ttf/NotoSansHatran-Regular.ttf",
  4805. "fonts/NotoSansHatran/unhinted/otf/NotoSansHatran-Regular.otf",
  4806. "fonts/NotoSansHatran/hinted/ttf/NotoSansHatran-Regular.ttf"
  4807. ],
  4808. "latest_release": {
  4809. "notes": "Noto Sans Hatran v2.001 This release fixes a number of fontbakery fails.\n",
  4810. "published": "2022-09-24T14:07:13",
  4811. "url": "https://github.com/notofonts/hatran/releases/tag/NotoSansHatran-v2.001",
  4812. "version": "v2.001"
  4813. }
  4814. }
  4815. },
  4816. "known_releases": [
  4817. "NotoSansHatran-v2.001"
  4818. ]
  4819. },
  4820. "hebrew": {
  4821. "families": {
  4822. "Noto Rashi Hebrew": {
  4823. "files": [
  4824. "fonts/NotoRashiHebrew/full/slim-variable-ttf/NotoRashiHebrew[wght].ttf",
  4825. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-Light.ttf",
  4826. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-Black.ttf",
  4827. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-Regular.ttf",
  4828. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-ExtraBold.ttf",
  4829. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-ExtraLight.ttf",
  4830. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-SemiBold.ttf",
  4831. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-Medium.ttf",
  4832. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-Bold.ttf",
  4833. "fonts/NotoRashiHebrew/full/ttf/NotoRashiHebrew-Thin.ttf",
  4834. "fonts/NotoRashiHebrew/full/variable/NotoRashiHebrew[wght].ttf",
  4835. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-SemiBold.otf",
  4836. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-Light.otf",
  4837. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-Bold.otf",
  4838. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-Regular.otf",
  4839. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-ExtraBold.otf",
  4840. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-Medium.otf",
  4841. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-Thin.otf",
  4842. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-ExtraLight.otf",
  4843. "fonts/NotoRashiHebrew/full/otf/NotoRashiHebrew-Black.otf",
  4844. "fonts/NotoRashiHebrew/unhinted/slim-variable-ttf/NotoRashiHebrew[wght].ttf",
  4845. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-Light.ttf",
  4846. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-Black.ttf",
  4847. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-Regular.ttf",
  4848. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-ExtraBold.ttf",
  4849. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-ExtraLight.ttf",
  4850. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-SemiBold.ttf",
  4851. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-Medium.ttf",
  4852. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-Bold.ttf",
  4853. "fonts/NotoRashiHebrew/unhinted/ttf/NotoRashiHebrew-Thin.ttf",
  4854. "fonts/NotoRashiHebrew/unhinted/variable/NotoRashiHebrew[wght].ttf",
  4855. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-SemiBold.otf",
  4856. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-Light.otf",
  4857. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-Bold.otf",
  4858. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-Regular.otf",
  4859. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-ExtraBold.otf",
  4860. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-Medium.otf",
  4861. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-Thin.otf",
  4862. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-ExtraLight.otf",
  4863. "fonts/NotoRashiHebrew/unhinted/otf/NotoRashiHebrew-Black.otf",
  4864. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-Light.ttf",
  4865. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-Black.ttf",
  4866. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-Regular.ttf",
  4867. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-ExtraBold.ttf",
  4868. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-ExtraLight.ttf",
  4869. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-SemiBold.ttf",
  4870. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-Medium.ttf",
  4871. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-Bold.ttf",
  4872. "fonts/NotoRashiHebrew/googlefonts/ttf/NotoRashiHebrew-Thin.ttf",
  4873. "fonts/NotoRashiHebrew/googlefonts/variable/NotoRashiHebrew[wght].ttf",
  4874. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-Light.ttf",
  4875. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-Black.ttf",
  4876. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-Regular.ttf",
  4877. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-ExtraBold.ttf",
  4878. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-ExtraLight.ttf",
  4879. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-SemiBold.ttf",
  4880. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-Medium.ttf",
  4881. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-Bold.ttf",
  4882. "fonts/NotoRashiHebrew/hinted/ttf/NotoRashiHebrew-Thin.ttf"
  4883. ],
  4884. "latest_release": {
  4885. "notes": "Noto Rashi Hebrew v1.007\n\nThis release:\n\n* Fixes interpolation issues (#35)\n* Corrects the width (#39) and position of marks under double-yud and double-vov (#38, thanks to @markhdavid)\n* Improves the anchoring of yod (#40, thanks to @markhdavid)\n* Adds the U+053F yod triangle character (#46)\n* Improves the spacing of tsadi (#33)\n",
  4886. "published": "2024-04-22T14:08:01+00:00",
  4887. "url": "https://github.com/notofonts/hebrew/releases/tag/NotoRashiHebrew-v1.007",
  4888. "version": "v1.007"
  4889. }
  4890. },
  4891. "Noto Sans Hebrew": {
  4892. "files": [
  4893. "fonts/NotoSansHebrew/googlefonts/variable-ttf/NotoSansHebrew[wdth,wght].ttf",
  4894. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensedExtraBold.otf",
  4895. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensedBold.otf",
  4896. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-Light.otf",
  4897. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensedBold.otf",
  4898. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensed.otf",
  4899. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensedThin.otf",
  4900. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-Medium.otf",
  4901. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-CondensedMedium.otf",
  4902. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-CondensedSemiBold.otf",
  4903. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-CondensedThin.otf",
  4904. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensedMedium.otf",
  4905. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiBold.otf",
  4906. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensed.otf",
  4907. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensedSemiBold.otf",
  4908. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-Condensed.otf",
  4909. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensedExtraBold.otf",
  4910. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensedThin.otf",
  4911. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensedExtraLight.otf",
  4912. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-CondensedBlack.otf",
  4913. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensedMedium.otf",
  4914. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-CondensedLight.otf",
  4915. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensedBlack.otf",
  4916. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-Bold.otf",
  4917. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-Regular.otf",
  4918. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-CondensedExtraLight.otf",
  4919. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensedExtraLight.otf",
  4920. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensedSemiBold.otf",
  4921. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensedBlack.otf",
  4922. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraLight.otf",
  4923. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraBold.otf",
  4924. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-Thin.otf",
  4925. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-CondensedBold.otf",
  4926. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-Black.otf",
  4927. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-CondensedExtraBold.otf",
  4928. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-ExtraCondensedLight.otf",
  4929. "fonts/NotoSansHebrew/full/otf/NotoSansHebrew-SemiCondensedLight.otf",
  4930. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensed.ttf",
  4931. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedExtraBold.ttf",
  4932. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Black.ttf",
  4933. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedThin.ttf",
  4934. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedMedium.ttf",
  4935. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedLight.ttf",
  4936. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Light.ttf",
  4937. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedExtraLight.ttf",
  4938. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraBold.ttf",
  4939. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedBlack.ttf",
  4940. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedSemiBold.ttf",
  4941. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedBold.ttf",
  4942. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedExtraBold.ttf",
  4943. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensed.ttf",
  4944. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedBlack.ttf",
  4945. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedThin.ttf",
  4946. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedSemiBold.ttf",
  4947. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedSemiBold.ttf",
  4948. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedBold.ttf",
  4949. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedExtraLight.ttf",
  4950. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedBlack.ttf",
  4951. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedMedium.ttf",
  4952. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedLight.ttf",
  4953. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedLight.ttf",
  4954. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Bold.ttf",
  4955. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraLight.ttf",
  4956. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-CondensedExtraLight.ttf",
  4957. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Regular.ttf",
  4958. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiBold.ttf",
  4959. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Condensed.ttf",
  4960. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedExtraBold.ttf",
  4961. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Thin.ttf",
  4962. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-ExtraCondensedThin.ttf",
  4963. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedMedium.ttf",
  4964. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-Medium.ttf",
  4965. "fonts/NotoSansHebrew/full/ttf/NotoSansHebrew-SemiCondensedBold.ttf",
  4966. "fonts/NotoSansHebrew/full/slim-variable-ttf/NotoSansHebrew[wght].ttf",
  4967. "fonts/NotoSansHebrew/full/variable-ttf/NotoSansHebrew[wdth,wght].ttf",
  4968. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensed.ttf",
  4969. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensedExtraBold.ttf",
  4970. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-Black.ttf",
  4971. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensedThin.ttf",
  4972. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensedMedium.ttf",
  4973. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-CondensedLight.ttf",
  4974. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-Light.ttf",
  4975. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensedExtraLight.ttf",
  4976. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraBold.ttf",
  4977. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-CondensedBlack.ttf",
  4978. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensedSemiBold.ttf",
  4979. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensedBold.ttf",
  4980. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-CondensedExtraBold.ttf",
  4981. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensed.ttf",
  4982. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensedBlack.ttf",
  4983. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-CondensedThin.ttf",
  4984. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-CondensedSemiBold.ttf",
  4985. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensedSemiBold.ttf",
  4986. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-CondensedBold.ttf",
  4987. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensedExtraLight.ttf",
  4988. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensedBlack.ttf",
  4989. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-CondensedMedium.ttf",
  4990. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensedLight.ttf",
  4991. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensedLight.ttf",
  4992. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-Bold.ttf",
  4993. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraLight.ttf",
  4994. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-CondensedExtraLight.ttf",
  4995. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-Regular.ttf",
  4996. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiBold.ttf",
  4997. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-Condensed.ttf",
  4998. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensedExtraBold.ttf",
  4999. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-Thin.ttf",
  5000. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-ExtraCondensedThin.ttf",
  5001. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensedMedium.ttf",
  5002. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-Medium.ttf",
  5003. "fonts/NotoSansHebrew/hinted/ttf/NotoSansHebrew-SemiCondensedBold.ttf",
  5004. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensedExtraBold.otf",
  5005. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensedBold.otf",
  5006. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-Light.otf",
  5007. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensedBold.otf",
  5008. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensed.otf",
  5009. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensedThin.otf",
  5010. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-Medium.otf",
  5011. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-CondensedMedium.otf",
  5012. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-CondensedSemiBold.otf",
  5013. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-CondensedThin.otf",
  5014. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensedMedium.otf",
  5015. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiBold.otf",
  5016. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensed.otf",
  5017. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensedSemiBold.otf",
  5018. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-Condensed.otf",
  5019. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensedExtraBold.otf",
  5020. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensedThin.otf",
  5021. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensedExtraLight.otf",
  5022. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-CondensedBlack.otf",
  5023. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensedMedium.otf",
  5024. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-CondensedLight.otf",
  5025. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensedBlack.otf",
  5026. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-Bold.otf",
  5027. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-Regular.otf",
  5028. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-CondensedExtraLight.otf",
  5029. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensedExtraLight.otf",
  5030. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensedSemiBold.otf",
  5031. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensedBlack.otf",
  5032. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraLight.otf",
  5033. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraBold.otf",
  5034. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-Thin.otf",
  5035. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-CondensedBold.otf",
  5036. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-Black.otf",
  5037. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-CondensedExtraBold.otf",
  5038. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-ExtraCondensedLight.otf",
  5039. "fonts/NotoSansHebrew/unhinted/otf/NotoSansHebrew-SemiCondensedLight.otf",
  5040. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensed.ttf",
  5041. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensedExtraBold.ttf",
  5042. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-Black.ttf",
  5043. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensedThin.ttf",
  5044. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensedMedium.ttf",
  5045. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-CondensedLight.ttf",
  5046. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-Light.ttf",
  5047. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensedExtraLight.ttf",
  5048. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraBold.ttf",
  5049. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-CondensedBlack.ttf",
  5050. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensedSemiBold.ttf",
  5051. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensedBold.ttf",
  5052. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-CondensedExtraBold.ttf",
  5053. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensed.ttf",
  5054. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensedBlack.ttf",
  5055. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-CondensedThin.ttf",
  5056. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-CondensedSemiBold.ttf",
  5057. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensedSemiBold.ttf",
  5058. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-CondensedBold.ttf",
  5059. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensedExtraLight.ttf",
  5060. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensedBlack.ttf",
  5061. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-CondensedMedium.ttf",
  5062. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensedLight.ttf",
  5063. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensedLight.ttf",
  5064. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-Bold.ttf",
  5065. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraLight.ttf",
  5066. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-CondensedExtraLight.ttf",
  5067. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-Regular.ttf",
  5068. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiBold.ttf",
  5069. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-Condensed.ttf",
  5070. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensedExtraBold.ttf",
  5071. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-Thin.ttf",
  5072. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-ExtraCondensedThin.ttf",
  5073. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensedMedium.ttf",
  5074. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-Medium.ttf",
  5075. "fonts/NotoSansHebrew/unhinted/ttf/NotoSansHebrew-SemiCondensedBold.ttf",
  5076. "fonts/NotoSansHebrew/unhinted/slim-variable-ttf/NotoSansHebrew[wght].ttf",
  5077. "fonts/NotoSansHebrew/unhinted/variable-ttf/NotoSansHebrew[wdth,wght].ttf"
  5078. ],
  5079. "latest_release": {
  5080. "notes": "Noto Sans Hebrew v3.001\n\nThis release introduces a new design by Ben Nathan.\n",
  5081. "published": "2024-06-03T13:44:21+00:00",
  5082. "url": "https://github.com/notofonts/hebrew/releases/tag/NotoSansHebrew-v3.001",
  5083. "version": "v3.001"
  5084. }
  5085. },
  5086. "Noto Serif Hebrew": {
  5087. "files": [
  5088. "fonts/NotoSerifHebrew/full/slim-variable-ttf/NotoSerifHebrew[wght].ttf",
  5089. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedLight.ttf",
  5090. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Medium.ttf",
  5091. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedMedium.ttf",
  5092. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedExtraLight.ttf",
  5093. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedExtraLight.ttf",
  5094. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Regular.ttf",
  5095. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Thin.ttf",
  5096. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedThin.ttf",
  5097. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraLight.ttf",
  5098. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedThin.ttf",
  5099. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Bold.ttf",
  5100. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedLight.ttf",
  5101. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraBold.ttf",
  5102. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Black.ttf",
  5103. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedLight.ttf",
  5104. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedBlack.ttf",
  5105. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedBold.ttf",
  5106. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedBlack.ttf",
  5107. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedExtraBold.ttf",
  5108. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensedSemiBold.ttf",
  5109. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Light.ttf",
  5110. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedBold.ttf",
  5111. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedExtraLight.ttf",
  5112. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedExtraBold.ttf",
  5113. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedMedium.ttf",
  5114. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedBold.ttf",
  5115. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedBlack.ttf",
  5116. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedMedium.ttf",
  5117. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedExtraBold.ttf",
  5118. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedThin.ttf",
  5119. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-Condensed.ttf",
  5120. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensed.ttf",
  5121. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-CondensedSemiBold.ttf",
  5122. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiCondensed.ttf",
  5123. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-ExtraCondensedSemiBold.ttf",
  5124. "fonts/NotoSerifHebrew/full/ttf/NotoSerifHebrew-SemiBold.ttf",
  5125. "fonts/NotoSerifHebrew/full/variable/NotoSerifHebrew[wdth,wght].ttf",
  5126. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensedLight.otf",
  5127. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-CondensedBold.otf",
  5128. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensedExtraLight.otf",
  5129. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-CondensedLight.otf",
  5130. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensedExtraBold.otf",
  5131. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-Condensed.otf",
  5132. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensedBold.otf",
  5133. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-Bold.otf",
  5134. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-Thin.otf",
  5135. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-CondensedExtraBold.otf",
  5136. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensedSemiBold.otf",
  5137. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensedThin.otf",
  5138. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensedExtraBold.otf",
  5139. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensedExtraLight.otf",
  5140. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-CondensedThin.otf",
  5141. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-CondensedMedium.otf",
  5142. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensed.otf",
  5143. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-Black.otf",
  5144. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-Medium.otf",
  5145. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensed.otf",
  5146. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-CondensedSemiBold.otf",
  5147. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-CondensedExtraLight.otf",
  5148. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensedThin.otf",
  5149. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraLight.otf",
  5150. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-Light.otf",
  5151. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraBold.otf",
  5152. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-Regular.otf",
  5153. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensedBlack.otf",
  5154. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensedLight.otf",
  5155. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensedBlack.otf",
  5156. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensedSemiBold.otf",
  5157. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-CondensedBlack.otf",
  5158. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiBold.otf",
  5159. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-SemiCondensedMedium.otf",
  5160. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensedMedium.otf",
  5161. "fonts/NotoSerifHebrew/full/otf/NotoSerifHebrew-ExtraCondensedBold.otf",
  5162. "fonts/NotoSerifHebrew/unhinted/slim-variable-ttf/NotoSerifHebrew[wght].ttf",
  5163. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-CondensedLight.ttf",
  5164. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-Medium.ttf",
  5165. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensedMedium.ttf",
  5166. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-CondensedExtraLight.ttf",
  5167. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensedExtraLight.ttf",
  5168. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-Regular.ttf",
  5169. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-Thin.ttf",
  5170. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-CondensedThin.ttf",
  5171. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraLight.ttf",
  5172. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensedThin.ttf",
  5173. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-Bold.ttf",
  5174. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensedLight.ttf",
  5175. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraBold.ttf",
  5176. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-Black.ttf",
  5177. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensedLight.ttf",
  5178. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensedBlack.ttf",
  5179. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensedBold.ttf",
  5180. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-CondensedBlack.ttf",
  5181. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensedExtraBold.ttf",
  5182. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensedSemiBold.ttf",
  5183. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-Light.ttf",
  5184. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensedBold.ttf",
  5185. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensedExtraLight.ttf",
  5186. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-CondensedExtraBold.ttf",
  5187. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-CondensedMedium.ttf",
  5188. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-CondensedBold.ttf",
  5189. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensedBlack.ttf",
  5190. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensedMedium.ttf",
  5191. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensedExtraBold.ttf",
  5192. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensedThin.ttf",
  5193. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-Condensed.ttf",
  5194. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensed.ttf",
  5195. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-CondensedSemiBold.ttf",
  5196. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiCondensed.ttf",
  5197. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-ExtraCondensedSemiBold.ttf",
  5198. "fonts/NotoSerifHebrew/unhinted/ttf/NotoSerifHebrew-SemiBold.ttf",
  5199. "fonts/NotoSerifHebrew/unhinted/variable/NotoSerifHebrew[wdth,wght].ttf",
  5200. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensedLight.otf",
  5201. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-CondensedBold.otf",
  5202. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensedExtraLight.otf",
  5203. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-CondensedLight.otf",
  5204. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensedExtraBold.otf",
  5205. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-Condensed.otf",
  5206. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensedBold.otf",
  5207. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-Bold.otf",
  5208. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-Thin.otf",
  5209. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-CondensedExtraBold.otf",
  5210. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensedSemiBold.otf",
  5211. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensedThin.otf",
  5212. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensedExtraBold.otf",
  5213. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensedExtraLight.otf",
  5214. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-CondensedThin.otf",
  5215. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-CondensedMedium.otf",
  5216. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensed.otf",
  5217. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-Black.otf",
  5218. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-Medium.otf",
  5219. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensed.otf",
  5220. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-CondensedSemiBold.otf",
  5221. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-CondensedExtraLight.otf",
  5222. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensedThin.otf",
  5223. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraLight.otf",
  5224. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-Light.otf",
  5225. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraBold.otf",
  5226. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-Regular.otf",
  5227. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensedBlack.otf",
  5228. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensedLight.otf",
  5229. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensedBlack.otf",
  5230. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensedSemiBold.otf",
  5231. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-CondensedBlack.otf",
  5232. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiBold.otf",
  5233. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-SemiCondensedMedium.otf",
  5234. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensedMedium.otf",
  5235. "fonts/NotoSerifHebrew/unhinted/otf/NotoSerifHebrew-ExtraCondensedBold.otf",
  5236. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-Medium.ttf",
  5237. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-Regular.ttf",
  5238. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-Thin.ttf",
  5239. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-ExtraLight.ttf",
  5240. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-Bold.ttf",
  5241. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-ExtraBold.ttf",
  5242. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-Black.ttf",
  5243. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-Light.ttf",
  5244. "fonts/NotoSerifHebrew/googlefonts/ttf/NotoSerifHebrew-SemiBold.ttf",
  5245. "fonts/NotoSerifHebrew/googlefonts/variable/NotoSerifHebrew[wdth,wght].ttf",
  5246. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-CondensedLight.ttf",
  5247. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-Medium.ttf",
  5248. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensedMedium.ttf",
  5249. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-CondensedExtraLight.ttf",
  5250. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensedExtraLight.ttf",
  5251. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-Regular.ttf",
  5252. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-Thin.ttf",
  5253. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-CondensedThin.ttf",
  5254. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraLight.ttf",
  5255. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensedThin.ttf",
  5256. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-Bold.ttf",
  5257. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensedLight.ttf",
  5258. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraBold.ttf",
  5259. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-Black.ttf",
  5260. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensedLight.ttf",
  5261. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensedBlack.ttf",
  5262. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensedBold.ttf",
  5263. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-CondensedBlack.ttf",
  5264. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensedExtraBold.ttf",
  5265. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensedSemiBold.ttf",
  5266. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-Light.ttf",
  5267. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensedBold.ttf",
  5268. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensedExtraLight.ttf",
  5269. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-CondensedExtraBold.ttf",
  5270. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-CondensedMedium.ttf",
  5271. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-CondensedBold.ttf",
  5272. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensedBlack.ttf",
  5273. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensedMedium.ttf",
  5274. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensedExtraBold.ttf",
  5275. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensedThin.ttf",
  5276. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-Condensed.ttf",
  5277. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensed.ttf",
  5278. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-CondensedSemiBold.ttf",
  5279. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiCondensed.ttf",
  5280. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-ExtraCondensedSemiBold.ttf",
  5281. "fonts/NotoSerifHebrew/hinted/ttf/NotoSerifHebrew-SemiBold.ttf"
  5282. ],
  5283. "latest_release": {
  5284. "notes": "Noto Serif Hebrew v2.004\n\nThis release:\n\n* Corrects the position of marks under double-yud and double-vov (#38, thanks to @markhdavid)\n* Adds the U+053F yod triangle character (#46)\n",
  5285. "published": "2024-04-22T14:00:25+00:00",
  5286. "url": "https://github.com/notofonts/hebrew/releases/tag/NotoSerifHebrew-v2.004",
  5287. "version": "v2.004"
  5288. }
  5289. }
  5290. },
  5291. "known_releases": [
  5292. "NotoRashiHebrew-v1.005",
  5293. "NotoSerifHebrew-v2.003",
  5294. "NotoSansHebrew-v2.003",
  5295. "NotoRashiHebrew-v1.006",
  5296. "NotoSansHebrew-v2.004",
  5297. "NotoSerifHebrew-v2.004",
  5298. "NotoRashiHebrew-v1.007",
  5299. "NotoSansHebrew-v3.001"
  5300. ]
  5301. },
  5302. "hentaigana": {
  5303. "families": {
  5304. "Noto Serif Hentaigana": {
  5305. "files": [
  5306. "fonts/NotoSerifHentaigana/unhinted/slim-variable-ttf/NotoSerifHentaigana[wght].ttf",
  5307. "fonts/NotoSerifHentaigana/unhinted/ttf/NotoSerifHentaigana-Light.ttf",
  5308. "fonts/NotoSerifHentaigana/unhinted/ttf/NotoSerifHentaigana-ExtraLight.ttf",
  5309. "fonts/NotoSerifHentaigana/unhinted/ttf/NotoSerifHentaigana-Bold.ttf",
  5310. "fonts/NotoSerifHentaigana/unhinted/ttf/NotoSerifHentaigana-Regular.ttf",
  5311. "fonts/NotoSerifHentaigana/unhinted/ttf/NotoSerifHentaigana-Black.ttf",
  5312. "fonts/NotoSerifHentaigana/unhinted/ttf/NotoSerifHentaigana-SemiBold.ttf",
  5313. "fonts/NotoSerifHentaigana/unhinted/ttf/NotoSerifHentaigana-Medium.ttf",
  5314. "fonts/NotoSerifHentaigana/unhinted/variable/NotoSerifHentaigana[wght].ttf",
  5315. "fonts/NotoSerifHentaigana/unhinted/otf/NotoSerifHentaigana-Light.otf",
  5316. "fonts/NotoSerifHentaigana/unhinted/otf/NotoSerifHentaigana-SemiBold.otf",
  5317. "fonts/NotoSerifHentaigana/unhinted/otf/NotoSerifHentaigana-Bold.otf",
  5318. "fonts/NotoSerifHentaigana/unhinted/otf/NotoSerifHentaigana-Regular.otf",
  5319. "fonts/NotoSerifHentaigana/unhinted/otf/NotoSerifHentaigana-Medium.otf",
  5320. "fonts/NotoSerifHentaigana/unhinted/otf/NotoSerifHentaigana-ExtraLight.otf",
  5321. "fonts/NotoSerifHentaigana/unhinted/otf/NotoSerifHentaigana-Black.otf",
  5322. "fonts/NotoSerifHentaigana/hinted/ttf/NotoSerifHentaigana-Light.ttf",
  5323. "fonts/NotoSerifHentaigana/hinted/ttf/NotoSerifHentaigana-ExtraLight.ttf",
  5324. "fonts/NotoSerifHentaigana/hinted/ttf/NotoSerifHentaigana-Bold.ttf",
  5325. "fonts/NotoSerifHentaigana/hinted/ttf/NotoSerifHentaigana-Regular.ttf",
  5326. "fonts/NotoSerifHentaigana/hinted/ttf/NotoSerifHentaigana-Black.ttf",
  5327. "fonts/NotoSerifHentaigana/hinted/ttf/NotoSerifHentaigana-SemiBold.ttf",
  5328. "fonts/NotoSerifHentaigana/hinted/ttf/NotoSerifHentaigana-Medium.ttf",
  5329. "fonts/NotoSerifHentaigana/full/slim-variable-ttf/NotoSerifHentaigana[wght].ttf",
  5330. "fonts/NotoSerifHentaigana/full/ttf/NotoSerifHentaigana-Light.ttf",
  5331. "fonts/NotoSerifHentaigana/full/ttf/NotoSerifHentaigana-ExtraLight.ttf",
  5332. "fonts/NotoSerifHentaigana/full/ttf/NotoSerifHentaigana-Bold.ttf",
  5333. "fonts/NotoSerifHentaigana/full/ttf/NotoSerifHentaigana-Regular.ttf",
  5334. "fonts/NotoSerifHentaigana/full/ttf/NotoSerifHentaigana-Black.ttf",
  5335. "fonts/NotoSerifHentaigana/full/ttf/NotoSerifHentaigana-SemiBold.ttf",
  5336. "fonts/NotoSerifHentaigana/full/ttf/NotoSerifHentaigana-Medium.ttf",
  5337. "fonts/NotoSerifHentaigana/full/variable/NotoSerifHentaigana[wght].ttf",
  5338. "fonts/NotoSerifHentaigana/full/otf/NotoSerifHentaigana-Light.otf",
  5339. "fonts/NotoSerifHentaigana/full/otf/NotoSerifHentaigana-SemiBold.otf",
  5340. "fonts/NotoSerifHentaigana/full/otf/NotoSerifHentaigana-Bold.otf",
  5341. "fonts/NotoSerifHentaigana/full/otf/NotoSerifHentaigana-Regular.otf",
  5342. "fonts/NotoSerifHentaigana/full/otf/NotoSerifHentaigana-Medium.otf",
  5343. "fonts/NotoSerifHentaigana/full/otf/NotoSerifHentaigana-ExtraLight.otf",
  5344. "fonts/NotoSerifHentaigana/full/otf/NotoSerifHentaigana-Black.otf",
  5345. "fonts/NotoSerifHentaigana/googlefonts/ttf/NotoSerifHentaigana-Light.ttf",
  5346. "fonts/NotoSerifHentaigana/googlefonts/ttf/NotoSerifHentaigana-ExtraLight.ttf",
  5347. "fonts/NotoSerifHentaigana/googlefonts/ttf/NotoSerifHentaigana-Bold.ttf",
  5348. "fonts/NotoSerifHentaigana/googlefonts/ttf/NotoSerifHentaigana-Regular.ttf",
  5349. "fonts/NotoSerifHentaigana/googlefonts/ttf/NotoSerifHentaigana-Black.ttf",
  5350. "fonts/NotoSerifHentaigana/googlefonts/ttf/NotoSerifHentaigana-SemiBold.ttf",
  5351. "fonts/NotoSerifHentaigana/googlefonts/ttf/NotoSerifHentaigana-Medium.ttf",
  5352. "fonts/NotoSerifHentaigana/googlefonts/variable/NotoSerifHentaigana[wght].ttf"
  5353. ],
  5354. "latest_release": {
  5355. "notes": "Noto Serif Hentaigana v1.000\n\nThis is the first release of Noto Serif Hentaigana, a font to cover the codepoints of the Kana Extended Unicode block.\n",
  5356. "published": "2024-02-26T20:43:02+00:00",
  5357. "url": "https://github.com/notofonts/hentaigana/releases/tag/NotoSerifHentaigana-v1.000",
  5358. "version": "v1.000"
  5359. }
  5360. }
  5361. },
  5362. "known_releases": [
  5363. "NotoSerifHentaigana-v1.000"
  5364. ]
  5365. },
  5366. "imperial-aramaic": {
  5367. "families": {
  5368. "Noto Sans Imperial Aramaic": {
  5369. "files": [
  5370. "fonts/NotoSansImperialAramaic/googlefonts/ttf/NotoSansImperialAramaic-Regular.ttf",
  5371. "fonts/NotoSansImperialAramaic/full/otf/NotoSansImperialAramaic-Regular.otf",
  5372. "fonts/NotoSansImperialAramaic/full/ttf/NotoSansImperialAramaic-Regular.ttf",
  5373. "fonts/NotoSansImperialAramaic/hinted/ttf/NotoSansImperialAramaic-Regular.ttf",
  5374. "fonts/NotoSansImperialAramaic/unhinted/otf/NotoSansImperialAramaic-Regular.otf",
  5375. "fonts/NotoSansImperialAramaic/unhinted/ttf/NotoSansImperialAramaic-Regular.ttf"
  5376. ],
  5377. "latest_release": {
  5378. "notes": "Noto Sans Imperial Aramaic v2.002\n\nThis very minor update adds a default languagesystem.\n",
  5379. "published": "2024-05-16T11:20:06+00:00",
  5380. "url": "https://github.com/notofonts/imperial-aramaic/releases/tag/NotoSansImperialAramaic-v2.002",
  5381. "version": "v2.002"
  5382. }
  5383. }
  5384. },
  5385. "known_releases": [
  5386. "NotoSansImperialAramaic-v2.001",
  5387. "NotoSansImperialAramaic-v2.002"
  5388. ]
  5389. },
  5390. "indic-siyaq-numbers": {
  5391. "families": {
  5392. "Noto Sans Indic Siyaq Numbers": {
  5393. "files": [
  5394. "fonts/NotoSansIndicSiyaqNumbers/full/ttf/NotoSansIndicSiyaqNumbers-Regular.ttf",
  5395. "fonts/NotoSansIndicSiyaqNumbers/full/otf/NotoSansIndicSiyaqNumbers-Regular.otf",
  5396. "fonts/NotoSansIndicSiyaqNumbers/googlefonts/ttf/NotoSansIndicSiyaqNumbers-Regular.ttf",
  5397. "fonts/NotoSansIndicSiyaqNumbers/unhinted/ttf/NotoSansIndicSiyaqNumbers-Regular.ttf",
  5398. "fonts/NotoSansIndicSiyaqNumbers/unhinted/otf/NotoSansIndicSiyaqNumbers-Regular.otf",
  5399. "fonts/NotoSansIndicSiyaqNumbers/hinted/ttf/NotoSansIndicSiyaqNumbers-Regular.ttf"
  5400. ],
  5401. "latest_release": {
  5402. "notes": "Noto Sans Indic Siyaq Numbers v2.002\n\nThis release fixes a number of fontbakery fails.\n",
  5403. "published": "2022-09-21T14:23:52",
  5404. "url": "https://github.com/notofonts/indic-siyaq-numbers/releases/tag/NotoSansIndicSiyaqNumbers-v2.002",
  5405. "version": "v2.002"
  5406. }
  5407. }
  5408. },
  5409. "known_releases": [
  5410. "NotoSansIndicSiyaqNumbers-v2.002"
  5411. ]
  5412. },
  5413. "inscriptional-pahlavi": {
  5414. "families": {
  5415. "Noto Sans Inscriptional Pahlavi": {
  5416. "files": [
  5417. "fonts/NotoSansInscriptionalPahlavi/googlefonts/ttf/NotoSansInscriptionalPahlavi-Regular.ttf",
  5418. "fonts/NotoSansInscriptionalPahlavi/full/otf/NotoSansInscriptionalPahlavi-Regular.otf",
  5419. "fonts/NotoSansInscriptionalPahlavi/full/ttf/NotoSansInscriptionalPahlavi-Regular.ttf",
  5420. "fonts/NotoSansInscriptionalPahlavi/hinted/ttf/NotoSansInscriptionalPahlavi-Regular.ttf",
  5421. "fonts/NotoSansInscriptionalPahlavi/unhinted/otf/NotoSansInscriptionalPahlavi-Regular.otf",
  5422. "fonts/NotoSansInscriptionalPahlavi/unhinted/ttf/NotoSansInscriptionalPahlavi-Regular.ttf"
  5423. ],
  5424. "latest_release": {
  5425. "notes": "Noto Sans Inscriptional Pahlavi v2.004\n\nThis release improves the kerning after beth (#1) and fixes repeated beths (#2)\n",
  5426. "published": "2024-05-16T11:26:55+00:00",
  5427. "url": "https://github.com/notofonts/inscriptional-pahlavi/releases/tag/NotoSansInscriptionalPahlavi-v2.004",
  5428. "version": "v2.004"
  5429. }
  5430. }
  5431. },
  5432. "known_releases": [
  5433. "NotoSansInscriptionalPahlavi-v2.003",
  5434. "NotoSansInscriptionalPahlavi-v2.004"
  5435. ]
  5436. },
  5437. "inscriptional-parthian": {
  5438. "families": {
  5439. "Noto Sans Inscriptional Parthian": {
  5440. "files": [
  5441. "fonts/NotoSansInscriptionalParthian/googlefonts/ttf/NotoSansInscriptionalParthian-Regular.ttf",
  5442. "fonts/NotoSansInscriptionalParthian/full/otf/NotoSansInscriptionalParthian-Regular.otf",
  5443. "fonts/NotoSansInscriptionalParthian/full/ttf/NotoSansInscriptionalParthian-Regular.ttf",
  5444. "fonts/NotoSansInscriptionalParthian/hinted/ttf/NotoSansInscriptionalParthian-Regular.ttf",
  5445. "fonts/NotoSansInscriptionalParthian/unhinted/otf/NotoSansInscriptionalParthian-Regular.otf",
  5446. "fonts/NotoSansInscriptionalParthian/unhinted/ttf/NotoSansInscriptionalParthian-Regular.ttf"
  5447. ],
  5448. "latest_release": {
  5449. "notes": "Noto Sans Inscriptional Parthian v2.004\n\nThis release fixes the kerning of swash nuns (#1, #4)\n",
  5450. "published": "2024-05-16T11:21:58+00:00",
  5451. "url": "https://github.com/notofonts/inscriptional-parthian/releases/tag/NotoSansInscriptionalParthian-v2.004",
  5452. "version": "v2.004"
  5453. }
  5454. }
  5455. },
  5456. "known_releases": [
  5457. "NotoSansInscriptionalParthian-v2.003",
  5458. "NotoSansInscriptionalParthian-v2.004"
  5459. ]
  5460. },
  5461. "javanese": {
  5462. "families": {
  5463. "Noto Sans Javanese": {
  5464. "files": [
  5465. "fonts/NotoSansJavanese/full/ttf/NotoSansJavanese-Regular.ttf",
  5466. "fonts/NotoSansJavanese/full/ttf/NotoSansJavanese-Bold.ttf",
  5467. "fonts/NotoSansJavanese/full/otf/NotoSansJavanese-Regular.otf",
  5468. "fonts/NotoSansJavanese/full/otf/NotoSansJavanese-Bold.otf",
  5469. "fonts/NotoSansJavanese/full/variable-ttf/NotoSansJavanese[wght].ttf",
  5470. "fonts/NotoSansJavanese/full/slim-variable-ttf/NotoSansJavanese[wght].ttf",
  5471. "fonts/NotoSansJavanese/hinted/ttf/NotoSansJavanese-Regular.ttf",
  5472. "fonts/NotoSansJavanese/hinted/ttf/NotoSansJavanese-Bold.ttf",
  5473. "fonts/NotoSansJavanese/unhinted/ttf/NotoSansJavanese-Regular.ttf",
  5474. "fonts/NotoSansJavanese/unhinted/ttf/NotoSansJavanese-Bold.ttf",
  5475. "fonts/NotoSansJavanese/unhinted/otf/NotoSansJavanese-Regular.otf",
  5476. "fonts/NotoSansJavanese/unhinted/otf/NotoSansJavanese-Bold.otf",
  5477. "fonts/NotoSansJavanese/unhinted/variable-ttf/NotoSansJavanese[wght].ttf",
  5478. "fonts/NotoSansJavanese/unhinted/slim-variable-ttf/NotoSansJavanese[wght].ttf",
  5479. "fonts/NotoSansJavanese/googlefonts/ttf/NotoSansJavanese-Regular.ttf",
  5480. "fonts/NotoSansJavanese/googlefonts/ttf/NotoSansJavanese-Bold.ttf",
  5481. "fonts/NotoSansJavanese/googlefonts/variable-ttf/NotoSansJavanese[wght].ttf"
  5482. ],
  5483. "latest_release": {
  5484. "notes": "Noto Sans Javanese 2.005\n\nThis release:\n\n- Adds a second level pasangan stack (#2)\n- Allows cakra ligatures around above marks (#7)\n",
  5485. "published": "2023-06-28T10:43:24",
  5486. "url": "https://github.com/notofonts/javanese/releases/tag/NotoSansJavanese-v2.005",
  5487. "version": "v2.005"
  5488. }
  5489. }
  5490. },
  5491. "known_releases": [
  5492. "NotoSansJavanese-v2.004",
  5493. "NotoSansJavanese-v2.005"
  5494. ]
  5495. },
  5496. "kaithi": {
  5497. "families": {
  5498. "Noto Sans Kaithi": {
  5499. "files": [
  5500. "fonts/NotoSansKaithi/googlefonts/ttf/NotoSansKaithi-Regular.ttf",
  5501. "fonts/NotoSansKaithi/full/otf/NotoSansKaithi-Regular.otf",
  5502. "fonts/NotoSansKaithi/full/ttf/NotoSansKaithi-Regular.ttf",
  5503. "fonts/NotoSansKaithi/hinted/ttf/NotoSansKaithi-Regular.ttf",
  5504. "fonts/NotoSansKaithi/unhinted/otf/NotoSansKaithi-Regular.otf",
  5505. "fonts/NotoSansKaithi/unhinted/ttf/NotoSansKaithi-Regular.ttf"
  5506. ],
  5507. "latest_release": {
  5508. "notes": "Noto Sans Kaithi v2.006\n\nThis release:\n\n* Improves the display of half forms with zero width joiners (#26)\n* Deletes duplicate above marks (#27)\n* Anchors U vowel correctly onto dotless YA (#22)\n* Places the REPH correctly on LA (#23)\n* Improves the display of alternate U vowel conjuncts (#24)\n",
  5509. "published": "2024-06-13T09:32:12+00:00",
  5510. "url": "https://github.com/notofonts/kaithi/releases/tag/NotoSansKaithi-v2.006",
  5511. "version": "v2.006"
  5512. }
  5513. }
  5514. },
  5515. "known_releases": [
  5516. "NotoSansKaithi-v2.004",
  5517. "NotoSansKaithi-v2.005",
  5518. "NotoSansKaithi-v2.006"
  5519. ]
  5520. },
  5521. "kannada": {
  5522. "families": {
  5523. "Noto Sans Kannada": {
  5524. "files": [
  5525. "fonts/NotoSansKannada/full/slim-variable-ttf/NotoSansKannada[wght].ttf",
  5526. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedBlack.ttf",
  5527. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-Bold.ttf",
  5528. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensed.ttf",
  5529. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-Light.ttf",
  5530. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Regular.ttf",
  5531. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiBold.ttf",
  5532. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedExtraLight.ttf",
  5533. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedBold.ttf",
  5534. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedSemiBold.ttf",
  5535. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedExtraLight.ttf",
  5536. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraLight.ttf",
  5537. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedExtraBold.ttf",
  5538. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedLight.ttf",
  5539. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedExtraBold.ttf",
  5540. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Bold.ttf",
  5541. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-Black.ttf",
  5542. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedThin.ttf",
  5543. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedBlack.ttf",
  5544. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedThin.ttf",
  5545. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedBold.ttf",
  5546. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedBold.ttf",
  5547. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedMedium.ttf",
  5548. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedBold.ttf",
  5549. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedBlack.ttf",
  5550. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedSemiBold.ttf",
  5551. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-Thin.ttf",
  5552. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedExtraLight.ttf",
  5553. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedExtraBold.ttf",
  5554. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Thin.ttf",
  5555. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedLight.ttf",
  5556. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraBold.ttf",
  5557. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedExtraLight.ttf",
  5558. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Black.ttf",
  5559. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensed.ttf",
  5560. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedExtraLight.ttf",
  5561. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Condensed.ttf",
  5562. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedSemiBold.ttf",
  5563. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedExtraBold.ttf",
  5564. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedExtraBold.ttf",
  5565. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedExtraLight.ttf",
  5566. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedLight.ttf",
  5567. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedLight.ttf",
  5568. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-Medium.ttf",
  5569. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraBold.ttf",
  5570. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedBlack.ttf",
  5571. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedSemiBold.ttf",
  5572. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraLight.ttf",
  5573. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedBold.ttf",
  5574. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedSemiBold.ttf",
  5575. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedSemiBold.ttf",
  5576. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiBold.ttf",
  5577. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-Regular.ttf",
  5578. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedBlack.ttf",
  5579. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedMedium.ttf",
  5580. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedBlack.ttf",
  5581. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensed.ttf",
  5582. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedThin.ttf",
  5583. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Medium.ttf",
  5584. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensedThin.ttf",
  5585. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-Condensed.ttf",
  5586. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedMedium.ttf",
  5587. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedThin.ttf",
  5588. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedLight.ttf",
  5589. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-ExtraCondensedExtraBold.ttf",
  5590. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-Light.ttf",
  5591. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-CondensedMedium.ttf",
  5592. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-SemiCondensed.ttf",
  5593. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-SemiCondensedMedium.ttf",
  5594. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedBold.ttf",
  5595. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedThin.ttf",
  5596. "fonts/NotoSansKannada/full/ttf/NotoSansKannadaUI-ExtraCondensedLight.ttf",
  5597. "fonts/NotoSansKannada/full/ttf/NotoSansKannada-CondensedMedium.ttf",
  5598. "fonts/NotoSansKannada/full/variable-ttf/NotoSansKannada[wdth,wght].ttf",
  5599. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensedThin.otf",
  5600. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensedBlack.otf",
  5601. "fonts/NotoSansKannada/full/otf/NotoSansKannada-Regular.otf",
  5602. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-Regular.otf",
  5603. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensedExtraBold.otf",
  5604. "fonts/NotoSansKannada/full/otf/NotoSansKannada-CondensedMedium.otf",
  5605. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-Light.otf",
  5606. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensedLight.otf",
  5607. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensedExtraLight.otf",
  5608. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensedBlack.otf",
  5609. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-CondensedBlack.otf",
  5610. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensedBold.otf",
  5611. "fonts/NotoSansKannada/full/otf/NotoSansKannada-CondensedBold.otf",
  5612. "fonts/NotoSansKannada/full/otf/NotoSansKannada-CondensedExtraBold.otf",
  5613. "fonts/NotoSansKannada/full/otf/NotoSansKannada-Bold.otf",
  5614. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraLight.otf",
  5615. "fonts/NotoSansKannada/full/otf/NotoSansKannada-Thin.otf",
  5616. "fonts/NotoSansKannada/full/otf/NotoSansKannada-Black.otf",
  5617. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensedLight.otf",
  5618. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-Condensed.otf",
  5619. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-CondensedBold.otf",
  5620. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensedExtraBold.otf",
  5621. "fonts/NotoSansKannada/full/otf/NotoSansKannada-CondensedLight.otf",
  5622. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensedExtraBold.otf",
  5623. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiBold.otf",
  5624. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensedExtraLight.otf",
  5625. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensedSemiBold.otf",
  5626. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensedSemiBold.otf",
  5627. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensedMedium.otf",
  5628. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraBold.otf",
  5629. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensedBlack.otf",
  5630. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensedBlack.otf",
  5631. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensedBold.otf",
  5632. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-CondensedLight.otf",
  5633. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-CondensedExtraBold.otf",
  5634. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensedExtraLight.otf",
  5635. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensedMedium.otf",
  5636. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiBold.otf",
  5637. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-CondensedThin.otf",
  5638. "fonts/NotoSansKannada/full/otf/NotoSansKannada-CondensedSemiBold.otf",
  5639. "fonts/NotoSansKannada/full/otf/NotoSansKannada-CondensedThin.otf",
  5640. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensedThin.otf",
  5641. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensedLight.otf",
  5642. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensedThin.otf",
  5643. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensed.otf",
  5644. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensedThin.otf",
  5645. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-Medium.otf",
  5646. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensed.otf",
  5647. "fonts/NotoSansKannada/full/otf/NotoSansKannada-CondensedBlack.otf",
  5648. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensedMedium.otf",
  5649. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensed.otf",
  5650. "fonts/NotoSansKannada/full/otf/NotoSansKannada-Condensed.otf",
  5651. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensedSemiBold.otf",
  5652. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-Bold.otf",
  5653. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-CondensedSemiBold.otf",
  5654. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensedExtraBold.otf",
  5655. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-Thin.otf",
  5656. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensedMedium.otf",
  5657. "fonts/NotoSansKannada/full/otf/NotoSansKannada-CondensedExtraLight.otf",
  5658. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensedLight.otf",
  5659. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-CondensedMedium.otf",
  5660. "fonts/NotoSansKannada/full/otf/NotoSansKannada-Medium.otf",
  5661. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-Black.otf",
  5662. "fonts/NotoSansKannada/full/otf/NotoSansKannada-Light.otf",
  5663. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraCondensedBold.otf",
  5664. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensedBold.otf",
  5665. "fonts/NotoSansKannada/full/otf/NotoSansKannada-SemiCondensedSemiBold.otf",
  5666. "fonts/NotoSansKannada/full/otf/NotoSansKannada-ExtraLight.otf",
  5667. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-SemiCondensed.otf",
  5668. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraBold.otf",
  5669. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-CondensedExtraLight.otf",
  5670. "fonts/NotoSansKannada/full/otf/NotoSansKannadaUI-ExtraCondensedExtraLight.otf",
  5671. "fonts/NotoSansKannada/unhinted/slim-variable-ttf/NotoSansKannada[wght].ttf",
  5672. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensedBlack.ttf",
  5673. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-Bold.ttf",
  5674. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensed.ttf",
  5675. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-Light.ttf",
  5676. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-Regular.ttf",
  5677. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiBold.ttf",
  5678. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-CondensedExtraLight.ttf",
  5679. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensedBold.ttf",
  5680. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-CondensedSemiBold.ttf",
  5681. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensedExtraLight.ttf",
  5682. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraLight.ttf",
  5683. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensedExtraBold.ttf",
  5684. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-CondensedLight.ttf",
  5685. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensedExtraBold.ttf",
  5686. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-Bold.ttf",
  5687. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-Black.ttf",
  5688. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-CondensedThin.ttf",
  5689. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-CondensedBlack.ttf",
  5690. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-CondensedThin.ttf",
  5691. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensedBold.ttf",
  5692. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-CondensedBold.ttf",
  5693. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensedMedium.ttf",
  5694. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensedBold.ttf",
  5695. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensedBlack.ttf",
  5696. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-CondensedSemiBold.ttf",
  5697. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-Thin.ttf",
  5698. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensedExtraLight.ttf",
  5699. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-CondensedExtraBold.ttf",
  5700. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-Thin.ttf",
  5701. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensedLight.ttf",
  5702. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraBold.ttf",
  5703. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-CondensedExtraLight.ttf",
  5704. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-Black.ttf",
  5705. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensed.ttf",
  5706. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensedExtraLight.ttf",
  5707. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-Condensed.ttf",
  5708. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensedSemiBold.ttf",
  5709. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-CondensedExtraBold.ttf",
  5710. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensedExtraBold.ttf",
  5711. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensedExtraLight.ttf",
  5712. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-CondensedLight.ttf",
  5713. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensedLight.ttf",
  5714. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-Medium.ttf",
  5715. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraBold.ttf",
  5716. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensedBlack.ttf",
  5717. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensedSemiBold.ttf",
  5718. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraLight.ttf",
  5719. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-CondensedBold.ttf",
  5720. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensedSemiBold.ttf",
  5721. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensedSemiBold.ttf",
  5722. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiBold.ttf",
  5723. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-Regular.ttf",
  5724. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensedBlack.ttf",
  5725. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensedMedium.ttf",
  5726. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-CondensedBlack.ttf",
  5727. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensed.ttf",
  5728. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensedThin.ttf",
  5729. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-Medium.ttf",
  5730. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensedThin.ttf",
  5731. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-Condensed.ttf",
  5732. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensedMedium.ttf",
  5733. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensedThin.ttf",
  5734. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensedLight.ttf",
  5735. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-ExtraCondensedExtraBold.ttf",
  5736. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-Light.ttf",
  5737. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-CondensedMedium.ttf",
  5738. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-SemiCondensed.ttf",
  5739. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-SemiCondensedMedium.ttf",
  5740. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensedBold.ttf",
  5741. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensedThin.ttf",
  5742. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannadaUI-ExtraCondensedLight.ttf",
  5743. "fonts/NotoSansKannada/unhinted/ttf/NotoSansKannada-CondensedMedium.ttf",
  5744. "fonts/NotoSansKannada/unhinted/variable-ttf/NotoSansKannada-UI-VF.ttf",
  5745. "fonts/NotoSansKannada/unhinted/variable-ttf/NotoSansKannada[wdth,wght].ttf",
  5746. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensedThin.otf",
  5747. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensedBlack.otf",
  5748. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-Regular.otf",
  5749. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-Regular.otf",
  5750. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensedExtraBold.otf",
  5751. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-CondensedMedium.otf",
  5752. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-Light.otf",
  5753. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensedLight.otf",
  5754. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensedExtraLight.otf",
  5755. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensedBlack.otf",
  5756. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-CondensedBlack.otf",
  5757. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensedBold.otf",
  5758. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-CondensedBold.otf",
  5759. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-CondensedExtraBold.otf",
  5760. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-Bold.otf",
  5761. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraLight.otf",
  5762. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-Thin.otf",
  5763. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-Black.otf",
  5764. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensedLight.otf",
  5765. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-Condensed.otf",
  5766. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-CondensedBold.otf",
  5767. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensedExtraBold.otf",
  5768. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-CondensedLight.otf",
  5769. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensedExtraBold.otf",
  5770. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiBold.otf",
  5771. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensedExtraLight.otf",
  5772. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensedSemiBold.otf",
  5773. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensedSemiBold.otf",
  5774. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensedMedium.otf",
  5775. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraBold.otf",
  5776. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensedBlack.otf",
  5777. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensedBlack.otf",
  5778. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensedBold.otf",
  5779. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-CondensedLight.otf",
  5780. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-CondensedExtraBold.otf",
  5781. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensedExtraLight.otf",
  5782. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensedMedium.otf",
  5783. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiBold.otf",
  5784. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-CondensedThin.otf",
  5785. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-CondensedSemiBold.otf",
  5786. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-CondensedThin.otf",
  5787. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensedThin.otf",
  5788. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensedLight.otf",
  5789. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensedThin.otf",
  5790. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensed.otf",
  5791. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensedThin.otf",
  5792. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-Medium.otf",
  5793. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensed.otf",
  5794. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-CondensedBlack.otf",
  5795. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensedMedium.otf",
  5796. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensed.otf",
  5797. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-Condensed.otf",
  5798. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensedSemiBold.otf",
  5799. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-Bold.otf",
  5800. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-CondensedSemiBold.otf",
  5801. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensedExtraBold.otf",
  5802. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-Thin.otf",
  5803. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensedMedium.otf",
  5804. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-CondensedExtraLight.otf",
  5805. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensedLight.otf",
  5806. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-CondensedMedium.otf",
  5807. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-Medium.otf",
  5808. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-Black.otf",
  5809. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-Light.otf",
  5810. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraCondensedBold.otf",
  5811. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensedBold.otf",
  5812. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-SemiCondensedSemiBold.otf",
  5813. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannada-ExtraLight.otf",
  5814. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-SemiCondensed.otf",
  5815. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraBold.otf",
  5816. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-CondensedExtraLight.otf",
  5817. "fonts/NotoSansKannada/unhinted/otf/NotoSansKannadaUI-ExtraCondensedExtraLight.otf",
  5818. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensedBlack.ttf",
  5819. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-Bold.ttf",
  5820. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensed.ttf",
  5821. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-Light.ttf",
  5822. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-Regular.ttf",
  5823. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiBold.ttf",
  5824. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-CondensedExtraLight.ttf",
  5825. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensedBold.ttf",
  5826. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-CondensedSemiBold.ttf",
  5827. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensedExtraLight.ttf",
  5828. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraLight.ttf",
  5829. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensedExtraBold.ttf",
  5830. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-CondensedLight.ttf",
  5831. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensedExtraBold.ttf",
  5832. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-Bold.ttf",
  5833. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-Black.ttf",
  5834. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-CondensedThin.ttf",
  5835. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-CondensedBlack.ttf",
  5836. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-CondensedThin.ttf",
  5837. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensedBold.ttf",
  5838. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-CondensedBold.ttf",
  5839. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensedMedium.ttf",
  5840. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensedBold.ttf",
  5841. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensedBlack.ttf",
  5842. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-CondensedSemiBold.ttf",
  5843. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-Thin.ttf",
  5844. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensedExtraLight.ttf",
  5845. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-CondensedExtraBold.ttf",
  5846. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-Thin.ttf",
  5847. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensedLight.ttf",
  5848. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraBold.ttf",
  5849. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-CondensedExtraLight.ttf",
  5850. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-Black.ttf",
  5851. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensed.ttf",
  5852. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensedExtraLight.ttf",
  5853. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-Condensed.ttf",
  5854. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensedSemiBold.ttf",
  5855. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-CondensedExtraBold.ttf",
  5856. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensedExtraBold.ttf",
  5857. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensedExtraLight.ttf",
  5858. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-CondensedLight.ttf",
  5859. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensedLight.ttf",
  5860. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-Medium.ttf",
  5861. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraBold.ttf",
  5862. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensedBlack.ttf",
  5863. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensedSemiBold.ttf",
  5864. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraLight.ttf",
  5865. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-CondensedBold.ttf",
  5866. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensedSemiBold.ttf",
  5867. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensedSemiBold.ttf",
  5868. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiBold.ttf",
  5869. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-Regular.ttf",
  5870. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensedBlack.ttf",
  5871. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensedMedium.ttf",
  5872. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-CondensedBlack.ttf",
  5873. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensed.ttf",
  5874. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensedThin.ttf",
  5875. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-Medium.ttf",
  5876. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensedThin.ttf",
  5877. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-Condensed.ttf",
  5878. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensedMedium.ttf",
  5879. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensedThin.ttf",
  5880. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensedLight.ttf",
  5881. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-ExtraCondensedExtraBold.ttf",
  5882. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-Light.ttf",
  5883. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-CondensedMedium.ttf",
  5884. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-SemiCondensed.ttf",
  5885. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-SemiCondensedMedium.ttf",
  5886. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensedBold.ttf",
  5887. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensedThin.ttf",
  5888. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannadaUI-ExtraCondensedLight.ttf",
  5889. "fonts/NotoSansKannada/hinted/ttf/NotoSansKannada-CondensedMedium.ttf",
  5890. "fonts/NotoSansKannada/googlefonts/variable-ttf/NotoSansKannada[wdth,wght].ttf"
  5891. ],
  5892. "latest_release": {
  5893. "notes": "Noto Sans Kannada v2.006\n\nThis release fives the interpolation of anusvaraboveright (#59) and imprves the shaping behaviour of some marks (#56, #60)\n",
  5894. "published": "2024-09-19T04:20:15+00:00",
  5895. "url": "https://github.com/notofonts/kannada/releases/tag/NotoSansKannada-v2.006",
  5896. "version": "v2.006"
  5897. }
  5898. },
  5899. "Noto Serif Kannada": {
  5900. "files": [
  5901. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-Bold.ttf",
  5902. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-Thin.ttf",
  5903. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-Light.ttf",
  5904. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-Black.ttf",
  5905. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-ExtraLight.ttf",
  5906. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-Regular.ttf",
  5907. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-Medium.ttf",
  5908. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-ExtraBold.ttf",
  5909. "fonts/NotoSerifKannada/unhinted/ttf/NotoSerifKannada-SemiBold.ttf",
  5910. "fonts/NotoSerifKannada/unhinted/variable/NotoSerifKannada[wght].ttf",
  5911. "fonts/NotoSerifKannada/unhinted/slim-variable-ttf/NotoSerifKannada[wght].ttf",
  5912. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-Bold.otf",
  5913. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-SemiBold.otf",
  5914. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-Regular.otf",
  5915. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-Light.otf",
  5916. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-Thin.otf",
  5917. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-ExtraLight.otf",
  5918. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-Black.otf",
  5919. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-Medium.otf",
  5920. "fonts/NotoSerifKannada/unhinted/otf/NotoSerifKannada-ExtraBold.otf",
  5921. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Bold.ttf",
  5922. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Thin.ttf",
  5923. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Light.ttf",
  5924. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Black.ttf",
  5925. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-ExtraLight.ttf",
  5926. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Regular.ttf",
  5927. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-Medium.ttf",
  5928. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-ExtraBold.ttf",
  5929. "fonts/NotoSerifKannada/full/ttf/NotoSerifKannada-SemiBold.ttf",
  5930. "fonts/NotoSerifKannada/full/variable/NotoSerifKannada[wght].ttf",
  5931. "fonts/NotoSerifKannada/full/slim-variable-ttf/NotoSerifKannada[wght].ttf",
  5932. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-Bold.otf",
  5933. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-SemiBold.otf",
  5934. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-Regular.otf",
  5935. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-Light.otf",
  5936. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-Thin.otf",
  5937. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-ExtraLight.otf",
  5938. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-Black.otf",
  5939. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-Medium.otf",
  5940. "fonts/NotoSerifKannada/full/otf/NotoSerifKannada-ExtraBold.otf",
  5941. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-Bold.ttf",
  5942. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-Thin.ttf",
  5943. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-Light.ttf",
  5944. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-Black.ttf",
  5945. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-ExtraLight.ttf",
  5946. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-Regular.ttf",
  5947. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-Medium.ttf",
  5948. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-ExtraBold.ttf",
  5949. "fonts/NotoSerifKannada/hinted/ttf/NotoSerifKannada-SemiBold.ttf",
  5950. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-Bold.ttf",
  5951. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-Thin.ttf",
  5952. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-Light.ttf",
  5953. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-Black.ttf",
  5954. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-ExtraLight.ttf",
  5955. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-Regular.ttf",
  5956. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-Medium.ttf",
  5957. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-ExtraBold.ttf",
  5958. "fonts/NotoSerifKannada/googlefonts/ttf/NotoSerifKannada-SemiBold.ttf",
  5959. "fonts/NotoSerifKannada/googlefonts/variable/NotoSerifKannada[wght].ttf"
  5960. ],
  5961. "latest_release": {
  5962. "notes": "Noto Serif Kannada v2.005\n\nThis release adds the Unicode 14 glyph NAKAARA POLLU U+0CDD and Unicode 15 glyph COMBINING ANUSVARA ABOVE RIGHT U+0CF3.\n",
  5963. "published": "2023-09-26T13:54:04",
  5964. "url": "https://github.com/notofonts/kannada/releases/tag/NotoSerifKannada-v2.005",
  5965. "version": "v2.005"
  5966. }
  5967. }
  5968. },
  5969. "known_releases": [
  5970. "NotoSerifKannada-v2.003",
  5971. "NotoSansKannada-v2.003",
  5972. "NotoSansKannada-v2.004",
  5973. "NotoSerifKannada-v2.004",
  5974. "NotoSerifKannada-v2.005",
  5975. "NotoSansKannada-v2.005",
  5976. "NotoSansKannada-v2.006"
  5977. ]
  5978. },
  5979. "kawi": {
  5980. "families": {
  5981. "Noto Sans Kawi": {
  5982. "files": [
  5983. "fonts/NotoSansKawi/full/ttf/NotoSansKawi-Bold.ttf",
  5984. "fonts/NotoSansKawi/full/ttf/NotoSansKawi-Regular.ttf",
  5985. "fonts/NotoSansKawi/full/otf/NotoSansKawi-Regular.otf",
  5986. "fonts/NotoSansKawi/full/otf/NotoSansKawi-Bold.otf",
  5987. "fonts/NotoSansKawi/full/variable-ttf/NotoSansKawi[wght].ttf",
  5988. "fonts/NotoSansKawi/full/slim-variable-ttf/NotoSansKawi[wght].ttf",
  5989. "fonts/NotoSansKawi/hinted/ttf/NotoSansKawi-Bold.ttf",
  5990. "fonts/NotoSansKawi/hinted/ttf/NotoSansKawi-Regular.ttf",
  5991. "fonts/NotoSansKawi/unhinted/ttf/NotoSansKawi-Bold.ttf",
  5992. "fonts/NotoSansKawi/unhinted/ttf/NotoSansKawi-Regular.ttf",
  5993. "fonts/NotoSansKawi/unhinted/otf/NotoSansKawi-Regular.otf",
  5994. "fonts/NotoSansKawi/unhinted/otf/NotoSansKawi-Bold.otf",
  5995. "fonts/NotoSansKawi/unhinted/variable-ttf/NotoSansKawi[wght].ttf",
  5996. "fonts/NotoSansKawi/unhinted/slim-variable-ttf/NotoSansKawi[wght].ttf",
  5997. "fonts/NotoSansKawi/googlefonts/ttf/NotoSansKawi-Bold.ttf",
  5998. "fonts/NotoSansKawi/googlefonts/ttf/NotoSansKawi-Regular.ttf",
  5999. "fonts/NotoSansKawi/googlefonts/variable-ttf/NotoSansKawi[wght].ttf"
  6000. ],
  6001. "latest_release": {
  6002. "notes": "Noto Sans Kawi v1.000\n\nThis new family supports the Kawi (Old Javanese) script added in Unicode 15.0\n",
  6003. "published": "2023-06-28T15:30:00",
  6004. "url": "https://github.com/notofonts/kawi/releases/tag/NotoSansKawi-v1.000",
  6005. "version": "v1.000"
  6006. }
  6007. }
  6008. },
  6009. "known_releases": [
  6010. "NotoSansKawi-v1.000"
  6011. ]
  6012. },
  6013. "kayah-li": {
  6014. "families": {
  6015. "Noto Sans Kayah Li": {
  6016. "files": [
  6017. "fonts/NotoSansKayahLi/full/slim-variable-ttf/NotoSansKayahLi[wght].ttf",
  6018. "fonts/NotoSansKayahLi/full/ttf/NotoSansKayahLi-SemiBold.ttf",
  6019. "fonts/NotoSansKayahLi/full/ttf/NotoSansKayahLi-Bold.ttf",
  6020. "fonts/NotoSansKayahLi/full/ttf/NotoSansKayahLi-Medium.ttf",
  6021. "fonts/NotoSansKayahLi/full/ttf/NotoSansKayahLi-Regular.ttf",
  6022. "fonts/NotoSansKayahLi/full/variable-ttf/NotoSansKayahLi[wght].ttf",
  6023. "fonts/NotoSansKayahLi/full/otf/NotoSansKayahLi-SemiBold.otf",
  6024. "fonts/NotoSansKayahLi/full/otf/NotoSansKayahLi-Medium.otf",
  6025. "fonts/NotoSansKayahLi/full/otf/NotoSansKayahLi-Regular.otf",
  6026. "fonts/NotoSansKayahLi/full/otf/NotoSansKayahLi-Bold.otf",
  6027. "fonts/NotoSansKayahLi/googlefonts/ttf/NotoSansKayahLi-SemiBold.ttf",
  6028. "fonts/NotoSansKayahLi/googlefonts/ttf/NotoSansKayahLi-Bold.ttf",
  6029. "fonts/NotoSansKayahLi/googlefonts/ttf/NotoSansKayahLi-Medium.ttf",
  6030. "fonts/NotoSansKayahLi/googlefonts/ttf/NotoSansKayahLi-Regular.ttf",
  6031. "fonts/NotoSansKayahLi/googlefonts/variable-ttf/NotoSansKayahLi[wght].ttf",
  6032. "fonts/NotoSansKayahLi/unhinted/slim-variable-ttf/NotoSansKayahLi[wght].ttf",
  6033. "fonts/NotoSansKayahLi/unhinted/ttf/NotoSansKayahLi-SemiBold.ttf",
  6034. "fonts/NotoSansKayahLi/unhinted/ttf/NotoSansKayahLi-Bold.ttf",
  6035. "fonts/NotoSansKayahLi/unhinted/ttf/NotoSansKayahLi-Medium.ttf",
  6036. "fonts/NotoSansKayahLi/unhinted/ttf/NotoSansKayahLi-Regular.ttf",
  6037. "fonts/NotoSansKayahLi/unhinted/variable-ttf/NotoSansKayahLi[wght].ttf",
  6038. "fonts/NotoSansKayahLi/unhinted/otf/NotoSansKayahLi-SemiBold.otf",
  6039. "fonts/NotoSansKayahLi/unhinted/otf/NotoSansKayahLi-Medium.otf",
  6040. "fonts/NotoSansKayahLi/unhinted/otf/NotoSansKayahLi-Regular.otf",
  6041. "fonts/NotoSansKayahLi/unhinted/otf/NotoSansKayahLi-Bold.otf",
  6042. "fonts/NotoSansKayahLi/hinted/ttf/NotoSansKayahLi-SemiBold.ttf",
  6043. "fonts/NotoSansKayahLi/hinted/ttf/NotoSansKayahLi-Bold.ttf",
  6044. "fonts/NotoSansKayahLi/hinted/ttf/NotoSansKayahLi-Medium.ttf",
  6045. "fonts/NotoSansKayahLi/hinted/ttf/NotoSansKayahLi-Regular.ttf"
  6046. ],
  6047. "latest_release": {
  6048. "notes": "Noto Sans Kayah Li v2.002\n\nThis release fixes a number of fontbakery fails.\n",
  6049. "published": "2022-08-28T16:44:57",
  6050. "url": "https://github.com/notofonts/kayah-li/releases/tag/NotoSansKayahLi-v2.002",
  6051. "version": "v2.002"
  6052. }
  6053. }
  6054. },
  6055. "known_releases": [
  6056. "NotoSansKayahLi-v2.002"
  6057. ]
  6058. },
  6059. "kharoshthi": {
  6060. "families": {
  6061. "Noto Sans Kharoshthi": {
  6062. "files": [
  6063. "fonts/NotoSansKharoshthi/unhinted/ttf/NotoSansKharoshthi-Regular.ttf",
  6064. "fonts/NotoSansKharoshthi/unhinted/otf/NotoSansKharoshthi-Regular.otf",
  6065. "fonts/NotoSansKharoshthi/full/ttf/NotoSansKharoshthi-Regular.ttf",
  6066. "fonts/NotoSansKharoshthi/full/otf/NotoSansKharoshthi-Regular.otf",
  6067. "fonts/NotoSansKharoshthi/googlefonts/ttf/NotoSansKharoshthi-Regular.ttf",
  6068. "fonts/NotoSansKharoshthi/hinted/ttf/NotoSansKharoshthi-Regular.ttf"
  6069. ],
  6070. "latest_release": {
  6071. "notes": "Noto Sans Kharoshthi v2.004\n\nThis release:\n* Fixes the shape and positioning of the cauda mark (#2)\n* Fixes a number of fontbakery fails\n",
  6072. "published": "2023-01-02T11:53:21",
  6073. "url": "https://github.com/notofonts/kharoshthi/releases/tag/NotoSansKharoshthi-v2.004",
  6074. "version": "v2.004"
  6075. }
  6076. }
  6077. },
  6078. "known_releases": [
  6079. "NotoSansKharoshthi-v2.004"
  6080. ]
  6081. },
  6082. "khitan-small-script": {
  6083. "families": {
  6084. "Noto Fangsong KSSRotated": {
  6085. "files": [
  6086. "fonts/NotoFangsongKSSRotated/unhinted/ttf/NotoFangsongKSSRotated-Regular.ttf",
  6087. "fonts/NotoFangsongKSSRotated/unhinted/otf/NotoFangsongKSSRotated-Regular.otf",
  6088. "fonts/NotoFangsongKSSRotated/full/ttf/NotoFangsongKSSRotated-Regular.ttf",
  6089. "fonts/NotoFangsongKSSRotated/full/otf/NotoFangsongKSSRotated-Regular.otf",
  6090. "fonts/NotoFangsongKSSRotated/googlefonts/ttf/NotoFangsongKSSRotated-Regular.ttf",
  6091. "fonts/NotoFangsongKSSRotated/hinted/ttf/NotoFangsongKSSRotated-Regular.ttf"
  6092. ],
  6093. "latest_release": {
  6094. "notes": "Noto Fangsong KSS Rotated v1.000 This is a new Noto family, covering the Khitan Small Script introduced in Unicode 13.0. This is a rotated variant of the main font.\n",
  6095. "published": "2023-01-11T13:44:11",
  6096. "url": "https://github.com/notofonts/khitan-small-script/releases/tag/NotoFangsongKSSRotated-v1.000",
  6097. "version": "v1.000"
  6098. }
  6099. },
  6100. "Noto Fangsong KSSVertical": {
  6101. "files": [
  6102. "fonts/NotoFangsongKSSVertical/unhinted/ttf/NotoFangsongKSSVertical-Regular.ttf",
  6103. "fonts/NotoFangsongKSSVertical/unhinted/otf/NotoFangsongKSSVertical-Regular.otf",
  6104. "fonts/NotoFangsongKSSVertical/full/ttf/NotoFangsongKSSVertical-Regular.ttf",
  6105. "fonts/NotoFangsongKSSVertical/full/otf/NotoFangsongKSSVertical-Regular.otf",
  6106. "fonts/NotoFangsongKSSVertical/googlefonts/ttf/NotoFangsongKSSVertical-Regular.ttf",
  6107. "fonts/NotoFangsongKSSVertical/hinted/ttf/NotoFangsongKSSVertical-Regular.ttf"
  6108. ],
  6109. "latest_release": {
  6110. "notes": "Noto Fangsong KSS Vertical v1.000 This is a new Noto family, covering the Khitan Small Script introduced in Unicode 13.0. This is a variant of the main font designed for vertical typesetting.\n",
  6111. "published": "2023-01-11T14:29:49",
  6112. "url": "https://github.com/notofonts/khitan-small-script/releases/tag/NotoFangsongKSSVertical-v1.000",
  6113. "version": "v1.000"
  6114. }
  6115. },
  6116. "Noto Serif Khitan Small Script": {
  6117. "files": [
  6118. "fonts/NotoSerifKhitanSmallScript/googlefonts/ttf/NotoSerifKhitanSmallScript-Regular.ttf",
  6119. "fonts/NotoSerifKhitanSmallScript/hinted/ttf/NotoSerifKhitanSmallScript-Regular.ttf",
  6120. "fonts/NotoSerifKhitanSmallScript/unhinted/otf/NotoSerifKhitanSmallScript-Regular.otf",
  6121. "fonts/NotoSerifKhitanSmallScript/unhinted/ttf/NotoSerifKhitanSmallScript-Regular.ttf",
  6122. "fonts/NotoSerifKhitanSmallScript/full/otf/NotoSerifKhitanSmallScript-Regular.otf",
  6123. "fonts/NotoSerifKhitanSmallScript/full/ttf/NotoSerifKhitanSmallScript-Regular.ttf"
  6124. ],
  6125. "latest_release": {
  6126. "notes": "Noto Serif Khitan Small Script v1.000 This is a new Noto family, covering the Khitan Small Script introduced in Unicode 13.0.\n",
  6127. "published": "2023-01-11T13:25:06",
  6128. "url": "https://github.com/notofonts/khitan-small-script/releases/tag/NotoSerifKhitanSmallScript-v1.000",
  6129. "version": "v1.000"
  6130. }
  6131. }
  6132. },
  6133. "known_releases": [
  6134. "NotoSerifKhitanSmallScript-v1.000",
  6135. "NotoFangsongKSSRotated-v1.000",
  6136. "NotoFangsongKSSVertical-v1.000"
  6137. ]
  6138. },
  6139. "khmer": {
  6140. "families": {
  6141. "Noto Sans Khmer": {
  6142. "files": [
  6143. "fonts/NotoSansKhmer/googlefonts/variable/NotoSansKhmer[wdth,wght].ttf",
  6144. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-ExtraBold.ttf",
  6145. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-Black.ttf",
  6146. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-Light.ttf",
  6147. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-Thin.ttf",
  6148. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-Medium.ttf",
  6149. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-Regular.ttf",
  6150. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-Bold.ttf",
  6151. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-SemiBold.ttf",
  6152. "fonts/NotoSansKhmer/googlefonts/ttf/NotoSansKhmer-ExtraLight.ttf",
  6153. "fonts/NotoSansKhmer/full/variable/NotoSansKhmer[wdth,wght].ttf",
  6154. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-CondensedThin.otf",
  6155. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensedThin.otf",
  6156. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraBold.otf",
  6157. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiBold.otf",
  6158. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-CondensedBlack.otf",
  6159. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensed.otf",
  6160. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-Regular.otf",
  6161. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensedBlack.otf",
  6162. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraLight.otf",
  6163. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensedExtraLight.otf",
  6164. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensedMedium.otf",
  6165. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensedExtraBold.otf",
  6166. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensedLight.otf",
  6167. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensedThin.otf",
  6168. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensedMedium.otf",
  6169. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-Condensed.otf",
  6170. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-Thin.otf",
  6171. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensedBold.otf",
  6172. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-CondensedMedium.otf",
  6173. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensed.otf",
  6174. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-CondensedSemiBold.otf",
  6175. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensedBlack.otf",
  6176. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-Black.otf",
  6177. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-Light.otf",
  6178. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensedExtraLight.otf",
  6179. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensedExtraBold.otf",
  6180. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-CondensedLight.otf",
  6181. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-CondensedExtraLight.otf",
  6182. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensedSemiBold.otf",
  6183. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-CondensedBold.otf",
  6184. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-CondensedExtraBold.otf",
  6185. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-ExtraCondensedSemiBold.otf",
  6186. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-Medium.otf",
  6187. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensedLight.otf",
  6188. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-Bold.otf",
  6189. "fonts/NotoSansKhmer/full/otf/NotoSansKhmer-SemiCondensedBold.otf",
  6190. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedSemiBold.ttf",
  6191. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedBlack.ttf",
  6192. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedBlack.ttf",
  6193. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedMedium.ttf",
  6194. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedThin.ttf",
  6195. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedLight.ttf",
  6196. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedMedium.ttf",
  6197. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedExtraBold.ttf",
  6198. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensed.ttf",
  6199. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraBold.ttf",
  6200. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Black.ttf",
  6201. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedExtraBold.ttf",
  6202. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedBold.ttf",
  6203. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedExtraLight.ttf",
  6204. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedSemiBold.ttf",
  6205. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedSemiBold.ttf",
  6206. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensed.ttf",
  6207. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedLight.ttf",
  6208. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Condensed.ttf",
  6209. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Light.ttf",
  6210. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Thin.ttf",
  6211. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Medium.ttf",
  6212. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedExtraLight.ttf",
  6213. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedLight.ttf",
  6214. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Regular.ttf",
  6215. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedThin.ttf",
  6216. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-Bold.ttf",
  6217. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedBold.ttf",
  6218. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedThin.ttf",
  6219. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedExtraLight.ttf",
  6220. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedBlack.ttf",
  6221. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiBold.ttf",
  6222. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraLight.ttf",
  6223. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-CondensedMedium.ttf",
  6224. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-ExtraCondensedExtraBold.ttf",
  6225. "fonts/NotoSansKhmer/full/ttf/NotoSansKhmer-SemiCondensedBold.ttf",
  6226. "fonts/NotoSansKhmer/full/slim-variable-ttf/NotoSansKhmer[wght].ttf",
  6227. "fonts/NotoSansKhmer/unhinted/variable/NotoSansKhmer[wdth,wght].ttf",
  6228. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-CondensedThin.otf",
  6229. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensedThin.otf",
  6230. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraBold.otf",
  6231. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiBold.otf",
  6232. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-CondensedBlack.otf",
  6233. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensed.otf",
  6234. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-Regular.otf",
  6235. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensedBlack.otf",
  6236. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraLight.otf",
  6237. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensedExtraLight.otf",
  6238. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensedMedium.otf",
  6239. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensedExtraBold.otf",
  6240. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensedLight.otf",
  6241. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensedThin.otf",
  6242. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensedMedium.otf",
  6243. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-Condensed.otf",
  6244. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-Thin.otf",
  6245. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensedBold.otf",
  6246. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-CondensedMedium.otf",
  6247. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensed.otf",
  6248. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-CondensedSemiBold.otf",
  6249. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensedBlack.otf",
  6250. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-Black.otf",
  6251. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-Light.otf",
  6252. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensedExtraLight.otf",
  6253. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensedExtraBold.otf",
  6254. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-CondensedLight.otf",
  6255. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-CondensedExtraLight.otf",
  6256. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensedSemiBold.otf",
  6257. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-CondensedBold.otf",
  6258. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-CondensedExtraBold.otf",
  6259. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-ExtraCondensedSemiBold.otf",
  6260. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-Medium.otf",
  6261. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensedLight.otf",
  6262. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-Bold.otf",
  6263. "fonts/NotoSansKhmer/unhinted/otf/NotoSansKhmer-SemiCondensedBold.otf",
  6264. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-CondensedSemiBold.ttf",
  6265. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-CondensedBlack.ttf",
  6266. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensedBlack.ttf",
  6267. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensedMedium.ttf",
  6268. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-CondensedThin.ttf",
  6269. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensedLight.ttf",
  6270. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensedMedium.ttf",
  6271. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-CondensedExtraBold.ttf",
  6272. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensed.ttf",
  6273. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraBold.ttf",
  6274. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-Black.ttf",
  6275. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensedExtraBold.ttf",
  6276. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensedBold.ttf",
  6277. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensedExtraLight.ttf",
  6278. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensedSemiBold.ttf",
  6279. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensedSemiBold.ttf",
  6280. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensed.ttf",
  6281. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensedLight.ttf",
  6282. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-Condensed.ttf",
  6283. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-Light.ttf",
  6284. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-Thin.ttf",
  6285. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-Medium.ttf",
  6286. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensedExtraLight.ttf",
  6287. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-CondensedLight.ttf",
  6288. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-Regular.ttf",
  6289. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensedThin.ttf",
  6290. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-Bold.ttf",
  6291. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-CondensedBold.ttf",
  6292. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensedThin.ttf",
  6293. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-CondensedExtraLight.ttf",
  6294. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensedBlack.ttf",
  6295. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiBold.ttf",
  6296. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraLight.ttf",
  6297. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-CondensedMedium.ttf",
  6298. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-ExtraCondensedExtraBold.ttf",
  6299. "fonts/NotoSansKhmer/unhinted/ttf/NotoSansKhmer-SemiCondensedBold.ttf",
  6300. "fonts/NotoSansKhmer/unhinted/slim-variable-ttf/NotoSansKhmer[wght].ttf",
  6301. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-CondensedSemiBold.ttf",
  6302. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-CondensedBlack.ttf",
  6303. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensedBlack.ttf",
  6304. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensedMedium.ttf",
  6305. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-CondensedThin.ttf",
  6306. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensedLight.ttf",
  6307. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensedMedium.ttf",
  6308. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-CondensedExtraBold.ttf",
  6309. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensed.ttf",
  6310. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraBold.ttf",
  6311. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-Black.ttf",
  6312. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensedExtraBold.ttf",
  6313. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensedBold.ttf",
  6314. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensedExtraLight.ttf",
  6315. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensedSemiBold.ttf",
  6316. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensedSemiBold.ttf",
  6317. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensed.ttf",
  6318. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensedLight.ttf",
  6319. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-Condensed.ttf",
  6320. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-Light.ttf",
  6321. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-Thin.ttf",
  6322. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-Medium.ttf",
  6323. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensedExtraLight.ttf",
  6324. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-CondensedLight.ttf",
  6325. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-Regular.ttf",
  6326. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensedThin.ttf",
  6327. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-Bold.ttf",
  6328. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-CondensedBold.ttf",
  6329. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensedThin.ttf",
  6330. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-CondensedExtraLight.ttf",
  6331. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensedBlack.ttf",
  6332. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiBold.ttf",
  6333. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraLight.ttf",
  6334. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-CondensedMedium.ttf",
  6335. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-ExtraCondensedExtraBold.ttf",
  6336. "fonts/NotoSansKhmer/hinted/ttf/NotoSansKhmer-SemiCondensedBold.ttf"
  6337. ],
  6338. "latest_release": {
  6339. "notes": "Noto Sans Khmer v2.004\n\nThis release:\n\n* Changes the vertical metrics to match the Google Fonts specification\n* Fixes the handling of some consonant shifters (#7)\n* Better selects the low form of prebase ro in deep stacks (#8)\n",
  6340. "published": "2023-09-28T14:39:26",
  6341. "url": "https://github.com/notofonts/khmer/releases/tag/NotoSansKhmer-v2.004",
  6342. "version": "v2.004"
  6343. }
  6344. },
  6345. "Noto Serif Khmer": {
  6346. "files": [
  6347. "fonts/NotoSerifKhmer/googlefonts/variable/NotoSerifKhmer[wdth,wght].ttf",
  6348. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-Light.ttf",
  6349. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-Regular.ttf",
  6350. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-ExtraLight.ttf",
  6351. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-Black.ttf",
  6352. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-Bold.ttf",
  6353. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-SemiBold.ttf",
  6354. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-Medium.ttf",
  6355. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-ExtraBold.ttf",
  6356. "fonts/NotoSerifKhmer/googlefonts/ttf/NotoSerifKhmer-Thin.ttf",
  6357. "fonts/NotoSerifKhmer/full/variable/NotoSerifKhmer[wdth,wght].ttf",
  6358. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-Medium.otf",
  6359. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-Black.otf",
  6360. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-CondensedExtraLight.otf",
  6361. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensedBold.otf",
  6362. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensed.otf",
  6363. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensedExtraBold.otf",
  6364. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraLight.otf",
  6365. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensed.otf",
  6366. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensedBold.otf",
  6367. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-Regular.otf",
  6368. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-Bold.otf",
  6369. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-Thin.otf",
  6370. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-Light.otf",
  6371. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensedBlack.otf",
  6372. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensedMedium.otf",
  6373. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-CondensedLight.otf",
  6374. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-Condensed.otf",
  6375. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-CondensedSemiBold.otf",
  6376. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensedThin.otf",
  6377. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensedThin.otf",
  6378. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-CondensedBold.otf",
  6379. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensedExtraLight.otf",
  6380. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensedLight.otf",
  6381. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-CondensedBlack.otf",
  6382. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensedSemiBold.otf",
  6383. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraBold.otf",
  6384. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensedBlack.otf",
  6385. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensedExtraBold.otf",
  6386. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensedLight.otf",
  6387. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiBold.otf",
  6388. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensedMedium.otf",
  6389. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-CondensedExtraBold.otf",
  6390. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-CondensedThin.otf",
  6391. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-ExtraCondensedSemiBold.otf",
  6392. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-SemiCondensedExtraLight.otf",
  6393. "fonts/NotoSerifKhmer/full/otf/NotoSerifKhmer-CondensedMedium.otf",
  6394. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedThin.ttf",
  6395. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedThin.ttf",
  6396. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Light.ttf",
  6397. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedExtraBold.ttf",
  6398. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedBlack.ttf",
  6399. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Condensed.ttf",
  6400. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Regular.ttf",
  6401. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedExtraLight.ttf",
  6402. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedBold.ttf",
  6403. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedBold.ttf",
  6404. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedLight.ttf",
  6405. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedBlack.ttf",
  6406. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedBold.ttf",
  6407. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraLight.ttf",
  6408. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedExtraBold.ttf",
  6409. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Black.ttf",
  6410. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedSemiBold.ttf",
  6411. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Bold.ttf",
  6412. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedLight.ttf",
  6413. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedExtraLight.ttf",
  6414. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedBlack.ttf",
  6415. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedExtraBold.ttf",
  6416. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiBold.ttf",
  6417. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedThin.ttf",
  6418. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedMedium.ttf",
  6419. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedSemiBold.ttf",
  6420. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedLight.ttf",
  6421. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensed.ttf",
  6422. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedExtraLight.ttf",
  6423. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Medium.ttf",
  6424. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-CondensedMedium.ttf",
  6425. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraBold.ttf",
  6426. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensed.ttf",
  6427. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-Thin.ttf",
  6428. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-ExtraCondensedSemiBold.ttf",
  6429. "fonts/NotoSerifKhmer/full/ttf/NotoSerifKhmer-SemiCondensedMedium.ttf",
  6430. "fonts/NotoSerifKhmer/full/slim-variable-ttf/NotoSerifKhmer[wght].ttf",
  6431. "fonts/NotoSerifKhmer/unhinted/variable/NotoSerifKhmer[wdth,wght].ttf",
  6432. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-Medium.otf",
  6433. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-Black.otf",
  6434. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-CondensedExtraLight.otf",
  6435. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensedBold.otf",
  6436. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensed.otf",
  6437. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensedExtraBold.otf",
  6438. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraLight.otf",
  6439. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensed.otf",
  6440. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensedBold.otf",
  6441. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-Regular.otf",
  6442. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-Bold.otf",
  6443. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-Thin.otf",
  6444. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-Light.otf",
  6445. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensedBlack.otf",
  6446. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensedMedium.otf",
  6447. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-CondensedLight.otf",
  6448. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-Condensed.otf",
  6449. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-CondensedSemiBold.otf",
  6450. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensedThin.otf",
  6451. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensedThin.otf",
  6452. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-CondensedBold.otf",
  6453. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensedExtraLight.otf",
  6454. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensedLight.otf",
  6455. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-CondensedBlack.otf",
  6456. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensedSemiBold.otf",
  6457. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraBold.otf",
  6458. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensedBlack.otf",
  6459. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensedExtraBold.otf",
  6460. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensedLight.otf",
  6461. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiBold.otf",
  6462. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensedMedium.otf",
  6463. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-CondensedExtraBold.otf",
  6464. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-CondensedThin.otf",
  6465. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-ExtraCondensedSemiBold.otf",
  6466. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-SemiCondensedExtraLight.otf",
  6467. "fonts/NotoSerifKhmer/unhinted/otf/NotoSerifKhmer-CondensedMedium.otf",
  6468. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensedThin.ttf",
  6469. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-CondensedThin.ttf",
  6470. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-Light.ttf",
  6471. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-CondensedExtraBold.ttf",
  6472. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensedBlack.ttf",
  6473. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-Condensed.ttf",
  6474. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-Regular.ttf",
  6475. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensedExtraLight.ttf",
  6476. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensedBold.ttf",
  6477. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensedBold.ttf",
  6478. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensedLight.ttf",
  6479. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-CondensedBlack.ttf",
  6480. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-CondensedBold.ttf",
  6481. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraLight.ttf",
  6482. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensedExtraBold.ttf",
  6483. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-Black.ttf",
  6484. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensedSemiBold.ttf",
  6485. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-Bold.ttf",
  6486. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-CondensedLight.ttf",
  6487. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-CondensedExtraLight.ttf",
  6488. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensedBlack.ttf",
  6489. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensedExtraBold.ttf",
  6490. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiBold.ttf",
  6491. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensedThin.ttf",
  6492. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensedMedium.ttf",
  6493. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-CondensedSemiBold.ttf",
  6494. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensedLight.ttf",
  6495. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensed.ttf",
  6496. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensedExtraLight.ttf",
  6497. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-Medium.ttf",
  6498. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-CondensedMedium.ttf",
  6499. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraBold.ttf",
  6500. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensed.ttf",
  6501. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-Thin.ttf",
  6502. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-ExtraCondensedSemiBold.ttf",
  6503. "fonts/NotoSerifKhmer/unhinted/ttf/NotoSerifKhmer-SemiCondensedMedium.ttf",
  6504. "fonts/NotoSerifKhmer/unhinted/slim-variable-ttf/NotoSerifKhmer[wght].ttf",
  6505. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensedThin.ttf",
  6506. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-CondensedThin.ttf",
  6507. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-Light.ttf",
  6508. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-CondensedExtraBold.ttf",
  6509. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensedBlack.ttf",
  6510. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-Condensed.ttf",
  6511. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-Regular.ttf",
  6512. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensedExtraLight.ttf",
  6513. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensedBold.ttf",
  6514. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensedBold.ttf",
  6515. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensedLight.ttf",
  6516. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-CondensedBlack.ttf",
  6517. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-CondensedBold.ttf",
  6518. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraLight.ttf",
  6519. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensedExtraBold.ttf",
  6520. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-Black.ttf",
  6521. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensedSemiBold.ttf",
  6522. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-Bold.ttf",
  6523. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-CondensedLight.ttf",
  6524. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-CondensedExtraLight.ttf",
  6525. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensedBlack.ttf",
  6526. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensedExtraBold.ttf",
  6527. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiBold.ttf",
  6528. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensedThin.ttf",
  6529. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensedMedium.ttf",
  6530. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-CondensedSemiBold.ttf",
  6531. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensedLight.ttf",
  6532. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensed.ttf",
  6533. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensedExtraLight.ttf",
  6534. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-Medium.ttf",
  6535. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-CondensedMedium.ttf",
  6536. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraBold.ttf",
  6537. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensed.ttf",
  6538. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-Thin.ttf",
  6539. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-ExtraCondensedSemiBold.ttf",
  6540. "fonts/NotoSerifKhmer/hinted/ttf/NotoSerifKhmer-SemiCondensedMedium.ttf"
  6541. ],
  6542. "latest_release": {
  6543. "notes": "Noto Serif Khmer v2.004\n\nThis release:\n\n* Changes the vertical metrics to match the Google Fonts specification\n* Fixes the handling of some consonant shifters (#7)\n* Better selects the low form of prebase ro in deep stacks (#8)\n",
  6544. "published": "2023-09-28T16:04:54",
  6545. "url": "https://github.com/notofonts/khmer/releases/tag/NotoSerifKhmer-v2.004",
  6546. "version": "v2.004"
  6547. }
  6548. }
  6549. },
  6550. "known_releases": [
  6551. "NotoSerifKhmer-v2.003",
  6552. "NotoSansKhmer-v2.003",
  6553. "NotoSansKhmer-v2.004",
  6554. "NotoSerifKhmer-v2.004"
  6555. ]
  6556. },
  6557. "khojki": {
  6558. "families": {
  6559. "Noto Sans Khojki": {
  6560. "files": [
  6561. "fonts/NotoSansKhojki/unhinted/ttf/NotoSansKhojki-Regular.ttf",
  6562. "fonts/NotoSansKhojki/unhinted/otf/NotoSansKhojki-Regular.otf",
  6563. "fonts/NotoSansKhojki/full/ttf/NotoSansKhojki-Regular.ttf",
  6564. "fonts/NotoSansKhojki/full/otf/NotoSansKhojki-Regular.otf",
  6565. "fonts/NotoSansKhojki/hinted/ttf/NotoSansKhojki-Regular.ttf",
  6566. "fonts/NotoSansKhojki/googlefonts/ttf/NotoSansKhojki-Regular.ttf"
  6567. ],
  6568. "latest_release": {
  6569. "notes": "Noto Sans Khojki v2.005\n\nThis release:\n\n* Fixes the anchoring of alternate anusvara (#23)\n* Allows for kerning of sequences with marks (#13)\n* Adds the newly encoded characters QA (U+1123F) and SHORT I (U+11240)\n",
  6570. "published": "2023-09-25T13:46:35",
  6571. "url": "https://github.com/notofonts/khojki/releases/tag/NotoSansKhojki-v2.005",
  6572. "version": "v2.005"
  6573. }
  6574. },
  6575. "Noto Serif Khojki": {
  6576. "files": [
  6577. "fonts/NotoSerifKhojki/unhinted/ttf/NotoSerifKhojki-Regular.ttf",
  6578. "fonts/NotoSerifKhojki/unhinted/ttf/NotoSerifKhojki-Bold.ttf",
  6579. "fonts/NotoSerifKhojki/unhinted/variable/NotoSerifKhojki[wght].ttf",
  6580. "fonts/NotoSerifKhojki/unhinted/slim-variable-ttf/NotoSerifKhojki[wght].ttf",
  6581. "fonts/NotoSerifKhojki/unhinted/otf/NotoSerifKhojki-Regular.otf",
  6582. "fonts/NotoSerifKhojki/unhinted/otf/NotoSerifKhojki-Bold.otf",
  6583. "fonts/NotoSerifKhojki/full/ttf/NotoSerifKhojki-Regular.ttf",
  6584. "fonts/NotoSerifKhojki/full/ttf/NotoSerifKhojki-Bold.ttf",
  6585. "fonts/NotoSerifKhojki/full/variable/NotoSerifKhojki[wght].ttf",
  6586. "fonts/NotoSerifKhojki/full/slim-variable-ttf/NotoSerifKhojki[wght].ttf",
  6587. "fonts/NotoSerifKhojki/full/otf/NotoSerifKhojki-Regular.otf",
  6588. "fonts/NotoSerifKhojki/full/otf/NotoSerifKhojki-Bold.otf",
  6589. "fonts/NotoSerifKhojki/hinted/ttf/NotoSerifKhojki-Regular.ttf",
  6590. "fonts/NotoSerifKhojki/hinted/ttf/NotoSerifKhojki-Bold.ttf",
  6591. "fonts/NotoSerifKhojki/googlefonts/ttf/NotoSerifKhojki-Regular.ttf",
  6592. "fonts/NotoSerifKhojki/googlefonts/ttf/NotoSerifKhojki-Bold.ttf",
  6593. "fonts/NotoSerifKhojki/googlefonts/variable/NotoSerifKhojki[wght].ttf"
  6594. ],
  6595. "latest_release": {
  6596. "notes": "Noto Serif Khojki v2.005\n\nThis release:\n\n* Improves the display of nukta combinations (#14, #22)\n* Correct reorders the nukta + sukun combination (#15)\n* Allow conjuncts to form in the presence of a nukta (#16)\n* Uses the steeper alternative E vowel to avoid clashes (#17)\n* Fixes the kerning and display of AI vowel (#18)\n* Removes some unnecessary glyphs (#19)\n* Adds the newly encoded characters QA (U+1123F) and SHORT I (U+11240)\n",
  6597. "published": "2023-09-25T13:46:51",
  6598. "url": "https://github.com/notofonts/khojki/releases/tag/NotoSerifKhojki-v2.005",
  6599. "version": "v2.005"
  6600. }
  6601. }
  6602. },
  6603. "known_releases": [
  6604. "NotoSerifKhojki-v2.002",
  6605. "NotoSansKhojki-v2.002",
  6606. "NotoSansKhojki-v2.003",
  6607. "NotoSerifKhojki-v2.003",
  6608. "NotoSerifKhojki-v2.004",
  6609. "NotoSansKhojki-v2.004",
  6610. "NotoSansKhojki-v2.005",
  6611. "NotoSerifKhojki-v2.005"
  6612. ]
  6613. },
  6614. "khudawadi": {
  6615. "families": {
  6616. "Noto Sans Khudawadi": {
  6617. "files": [
  6618. "fonts/NotoSansKhudawadi/googlefonts/ttf/NotoSansKhudawadi-Regular.ttf",
  6619. "fonts/NotoSansKhudawadi/full/otf/NotoSansKhudawadi-Regular.otf",
  6620. "fonts/NotoSansKhudawadi/full/ttf/NotoSansKhudawadi-Regular.ttf",
  6621. "fonts/NotoSansKhudawadi/hinted/ttf/NotoSansKhudawadi-Regular.ttf",
  6622. "fonts/NotoSansKhudawadi/unhinted/otf/NotoSansKhudawadi-Regular.otf",
  6623. "fonts/NotoSansKhudawadi/unhinted/ttf/NotoSansKhudawadi-Regular.ttf"
  6624. ],
  6625. "latest_release": {
  6626. "notes": "Noto Sans Khudawadi v2.004\n\nThis release fixes the contextual form of o vowel after certain consonants (#3)\n",
  6627. "published": "2024-05-24T07:19:56+00:00",
  6628. "url": "https://github.com/notofonts/khudawadi/releases/tag/NotoSansKhudawadi-v2.004",
  6629. "version": "v2.004"
  6630. }
  6631. }
  6632. },
  6633. "known_releases": [
  6634. "NotoSansKhudawadi-v2.003",
  6635. "NotoSansKhudawadi-v2.004"
  6636. ]
  6637. },
  6638. "lao": {
  6639. "families": {
  6640. "Noto Sans Lao": {
  6641. "files": [
  6642. "fonts/NotoSansLao/full/ttf/NotoSansLao-Condensed.ttf",
  6643. "fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedBold.ttf",
  6644. "fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedBlack.ttf",
  6645. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraLight.ttf",
  6646. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedThin.ttf",
  6647. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedLight.ttf",
  6648. "fonts/NotoSansLao/full/ttf/NotoSansLao-Light.ttf",
  6649. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraBold.ttf",
  6650. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedExtraLight.ttf",
  6651. "fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedExtraLight.ttf",
  6652. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedThin.ttf",
  6653. "fonts/NotoSansLao/full/ttf/NotoSansLao-Thin.ttf",
  6654. "fonts/NotoSansLao/full/ttf/NotoSansLao-Medium.ttf",
  6655. "fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedThin.ttf",
  6656. "fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedSemiBold.ttf",
  6657. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedSemiBold.ttf",
  6658. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedBlack.ttf",
  6659. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedBold.ttf",
  6660. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedBold.ttf",
  6661. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedLight.ttf",
  6662. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedMedium.ttf",
  6663. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensedExtraBold.ttf",
  6664. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedExtraBold.ttf",
  6665. "fonts/NotoSansLao/full/ttf/NotoSansLao-Black.ttf",
  6666. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensed.ttf",
  6667. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiBold.ttf",
  6668. "fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedExtraBold.ttf",
  6669. "fonts/NotoSansLao/full/ttf/NotoSansLao-ExtraCondensed.ttf",
  6670. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedMedium.ttf",
  6671. "fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedLight.ttf",
  6672. "fonts/NotoSansLao/full/ttf/NotoSansLao-Regular.ttf",
  6673. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedBlack.ttf",
  6674. "fonts/NotoSansLao/full/ttf/NotoSansLao-Bold.ttf",
  6675. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedExtraLight.ttf",
  6676. "fonts/NotoSansLao/full/ttf/NotoSansLao-CondensedMedium.ttf",
  6677. "fonts/NotoSansLao/full/ttf/NotoSansLao-SemiCondensedSemiBold.ttf",
  6678. "fonts/NotoSansLao/full/otf/NotoSansLao-CondensedSemiBold.otf",
  6679. "fonts/NotoSansLao/full/otf/NotoSansLao-Bold.otf",
  6680. "fonts/NotoSansLao/full/otf/NotoSansLao-Light.otf",
  6681. "fonts/NotoSansLao/full/otf/NotoSansLao-Black.otf",
  6682. "fonts/NotoSansLao/full/otf/NotoSansLao-Condensed.otf",
  6683. "fonts/NotoSansLao/full/otf/NotoSansLao-CondensedExtraLight.otf",
  6684. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensed.otf",
  6685. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensedLight.otf",
  6686. "fonts/NotoSansLao/full/otf/NotoSansLao-CondensedLight.otf",
  6687. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensedThin.otf",
  6688. "fonts/NotoSansLao/full/otf/NotoSansLao-Regular.otf",
  6689. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensedExtraLight.otf",
  6690. "fonts/NotoSansLao/full/otf/NotoSansLao-Thin.otf",
  6691. "fonts/NotoSansLao/full/otf/NotoSansLao-CondensedExtraBold.otf",
  6692. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraBold.otf",
  6693. "fonts/NotoSansLao/full/otf/NotoSansLao-CondensedMedium.otf",
  6694. "fonts/NotoSansLao/full/otf/NotoSansLao-Medium.otf",
  6695. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensedBlack.otf",
  6696. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensedSemiBold.otf",
  6697. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensed.otf",
  6698. "fonts/NotoSansLao/full/otf/NotoSansLao-CondensedBlack.otf",
  6699. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensedThin.otf",
  6700. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensedBold.otf",
  6701. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensedBlack.otf",
  6702. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensedBold.otf",
  6703. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensedMedium.otf",
  6704. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensedExtraLight.otf",
  6705. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensedLight.otf",
  6706. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensedSemiBold.otf",
  6707. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraCondensedExtraBold.otf",
  6708. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensedMedium.otf",
  6709. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiCondensedExtraBold.otf",
  6710. "fonts/NotoSansLao/full/otf/NotoSansLao-CondensedBold.otf",
  6711. "fonts/NotoSansLao/full/otf/NotoSansLao-SemiBold.otf",
  6712. "fonts/NotoSansLao/full/otf/NotoSansLao-ExtraLight.otf",
  6713. "fonts/NotoSansLao/full/otf/NotoSansLao-CondensedThin.otf",
  6714. "fonts/NotoSansLao/full/variable-ttf/NotoSansLao[wdth,wght].ttf",
  6715. "fonts/NotoSansLao/full/slim-variable-ttf/NotoSansLao[wght].ttf",
  6716. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-Condensed.ttf",
  6717. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-CondensedBold.ttf",
  6718. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-CondensedBlack.ttf",
  6719. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraLight.ttf",
  6720. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensedThin.ttf",
  6721. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensedLight.ttf",
  6722. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-Light.ttf",
  6723. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraBold.ttf",
  6724. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensedExtraLight.ttf",
  6725. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-CondensedExtraLight.ttf",
  6726. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensedThin.ttf",
  6727. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-Thin.ttf",
  6728. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-Medium.ttf",
  6729. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-CondensedThin.ttf",
  6730. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-CondensedSemiBold.ttf",
  6731. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensedSemiBold.ttf",
  6732. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensedBlack.ttf",
  6733. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensedBold.ttf",
  6734. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensedBold.ttf",
  6735. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensedLight.ttf",
  6736. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensedMedium.ttf",
  6737. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensedExtraBold.ttf",
  6738. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensedExtraBold.ttf",
  6739. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-Black.ttf",
  6740. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensed.ttf",
  6741. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiBold.ttf",
  6742. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-CondensedExtraBold.ttf",
  6743. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-ExtraCondensed.ttf",
  6744. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensedMedium.ttf",
  6745. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-CondensedLight.ttf",
  6746. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-Regular.ttf",
  6747. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensedBlack.ttf",
  6748. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-Bold.ttf",
  6749. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensedExtraLight.ttf",
  6750. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-CondensedMedium.ttf",
  6751. "fonts/NotoSansLao/hinted/ttf/NotoSansLao-SemiCondensedSemiBold.ttf",
  6752. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-Condensed.ttf",
  6753. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-CondensedBold.ttf",
  6754. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-CondensedBlack.ttf",
  6755. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraLight.ttf",
  6756. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensedThin.ttf",
  6757. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensedLight.ttf",
  6758. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-Light.ttf",
  6759. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraBold.ttf",
  6760. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensedExtraLight.ttf",
  6761. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-CondensedExtraLight.ttf",
  6762. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensedThin.ttf",
  6763. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-Thin.ttf",
  6764. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-Medium.ttf",
  6765. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-CondensedThin.ttf",
  6766. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-CondensedSemiBold.ttf",
  6767. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensedSemiBold.ttf",
  6768. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensedBlack.ttf",
  6769. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensedBold.ttf",
  6770. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensedBold.ttf",
  6771. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensedLight.ttf",
  6772. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensedMedium.ttf",
  6773. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensedExtraBold.ttf",
  6774. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensedExtraBold.ttf",
  6775. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-Black.ttf",
  6776. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensed.ttf",
  6777. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiBold.ttf",
  6778. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-CondensedExtraBold.ttf",
  6779. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-ExtraCondensed.ttf",
  6780. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensedMedium.ttf",
  6781. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-CondensedLight.ttf",
  6782. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-Regular.ttf",
  6783. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensedBlack.ttf",
  6784. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-Bold.ttf",
  6785. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensedExtraLight.ttf",
  6786. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-CondensedMedium.ttf",
  6787. "fonts/NotoSansLao/unhinted/ttf/NotoSansLao-SemiCondensedSemiBold.ttf",
  6788. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-CondensedSemiBold.otf",
  6789. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-Bold.otf",
  6790. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-Light.otf",
  6791. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-Black.otf",
  6792. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-Condensed.otf",
  6793. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-CondensedExtraLight.otf",
  6794. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensed.otf",
  6795. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensedLight.otf",
  6796. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-CondensedLight.otf",
  6797. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensedThin.otf",
  6798. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-Regular.otf",
  6799. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensedExtraLight.otf",
  6800. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-Thin.otf",
  6801. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-CondensedExtraBold.otf",
  6802. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraBold.otf",
  6803. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-CondensedMedium.otf",
  6804. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-Medium.otf",
  6805. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensedBlack.otf",
  6806. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensedSemiBold.otf",
  6807. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensed.otf",
  6808. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-CondensedBlack.otf",
  6809. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensedThin.otf",
  6810. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensedBold.otf",
  6811. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensedBlack.otf",
  6812. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensedBold.otf",
  6813. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensedMedium.otf",
  6814. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensedExtraLight.otf",
  6815. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensedLight.otf",
  6816. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensedSemiBold.otf",
  6817. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraCondensedExtraBold.otf",
  6818. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensedMedium.otf",
  6819. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiCondensedExtraBold.otf",
  6820. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-CondensedBold.otf",
  6821. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-SemiBold.otf",
  6822. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-ExtraLight.otf",
  6823. "fonts/NotoSansLao/unhinted/otf/NotoSansLao-CondensedThin.otf",
  6824. "fonts/NotoSansLao/unhinted/variable-ttf/NotoSansLao[wdth,wght].ttf",
  6825. "fonts/NotoSansLao/unhinted/slim-variable-ttf/NotoSansLao[wght].ttf",
  6826. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-ExtraLight.ttf",
  6827. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-Light.ttf",
  6828. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-ExtraBold.ttf",
  6829. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-Thin.ttf",
  6830. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-Medium.ttf",
  6831. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-Black.ttf",
  6832. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-SemiBold.ttf",
  6833. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-Regular.ttf",
  6834. "fonts/NotoSansLao/googlefonts/ttf/NotoSansLao-Bold.ttf",
  6835. "fonts/NotoSansLao/googlefonts/variable-ttf/NotoSansLao[wdth,wght].ttf"
  6836. ],
  6837. "latest_release": {
  6838. "notes": "This release adds support for Unicode 14.0 characters, thanks to Ben Mitchell (@ohbendy).",
  6839. "published": "2023-06-22T06:49:43",
  6840. "url": "https://github.com/notofonts/lao/releases/tag/NotoSansLao-v2.003",
  6841. "version": "v2.003"
  6842. }
  6843. },
  6844. "Noto Sans Lao Looped": {
  6845. "files": [
  6846. "fonts/NotoSansLaoLooped/full/slim-variable-ttf/NotoSansLaoLooped[wght].ttf",
  6847. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensedBold.ttf",
  6848. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-Black.ttf",
  6849. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-CondensedLight.ttf",
  6850. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-CondensedThin.ttf",
  6851. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-Thin.ttf",
  6852. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensedBold.ttf",
  6853. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-CondensedBlack.ttf",
  6854. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensed.ttf",
  6855. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensedLight.ttf",
  6856. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensedLight.ttf",
  6857. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiBold.ttf",
  6858. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-Condensed.ttf",
  6859. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensedThin.ttf",
  6860. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-CondensedBold.ttf",
  6861. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensedExtraBold.ttf",
  6862. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensed.ttf",
  6863. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensedSemiBold.ttf",
  6864. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-CondensedMedium.ttf",
  6865. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-Regular.ttf",
  6866. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensedBlack.ttf",
  6867. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-Bold.ttf",
  6868. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensedExtraLight.ttf",
  6869. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensedExtraLight.ttf",
  6870. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensedBlack.ttf",
  6871. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-Medium.ttf",
  6872. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-CondensedExtraBold.ttf",
  6873. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensedMedium.ttf",
  6874. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensedSemiBold.ttf",
  6875. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensedThin.ttf",
  6876. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraBold.ttf",
  6877. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraLight.ttf",
  6878. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-Light.ttf",
  6879. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-CondensedSemiBold.ttf",
  6880. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-ExtraCondensedExtraBold.ttf",
  6881. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-CondensedExtraLight.ttf",
  6882. "fonts/NotoSansLaoLooped/full/ttf/NotoSansLaoLooped-SemiCondensedMedium.ttf",
  6883. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-CondensedExtraBold.otf",
  6884. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensedSemiBold.otf",
  6885. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-CondensedExtraLight.otf",
  6886. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-CondensedBlack.otf",
  6887. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensedThin.otf",
  6888. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensed.otf",
  6889. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-Bold.otf",
  6890. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-Medium.otf",
  6891. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-Light.otf",
  6892. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensedMedium.otf",
  6893. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-Regular.otf",
  6894. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-CondensedMedium.otf",
  6895. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraBold.otf",
  6896. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-Condensed.otf",
  6897. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-Thin.otf",
  6898. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensedExtraLight.otf",
  6899. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiBold.otf",
  6900. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensedBlack.otf",
  6901. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraLight.otf",
  6902. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-CondensedThin.otf",
  6903. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensedThin.otf",
  6904. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensedBold.otf",
  6905. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensed.otf",
  6906. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensedExtraBold.otf",
  6907. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensedBold.otf",
  6908. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensedLight.otf",
  6909. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensedBlack.otf",
  6910. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensedMedium.otf",
  6911. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-Black.otf",
  6912. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-ExtraCondensedExtraLight.otf",
  6913. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-CondensedSemiBold.otf",
  6914. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-CondensedLight.otf",
  6915. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensedLight.otf",
  6916. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensedExtraBold.otf",
  6917. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-SemiCondensedSemiBold.otf",
  6918. "fonts/NotoSansLaoLooped/full/otf/NotoSansLaoLooped-CondensedBold.otf",
  6919. "fonts/NotoSansLaoLooped/full/variable-ttf/NotoSansLaoLooped[wdth,wght].ttf",
  6920. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-Black.ttf",
  6921. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-Thin.ttf",
  6922. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-SemiBold.ttf",
  6923. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-Regular.ttf",
  6924. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-Bold.ttf",
  6925. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-Medium.ttf",
  6926. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-ExtraBold.ttf",
  6927. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-ExtraLight.ttf",
  6928. "fonts/NotoSansLaoLooped/googlefonts/ttf/NotoSansLaoLooped-Light.ttf",
  6929. "fonts/NotoSansLaoLooped/googlefonts/variable-ttf/NotoSansLaoLooped[wdth,wght].ttf",
  6930. "fonts/NotoSansLaoLooped/unhinted/slim-variable-ttf/NotoSansLaoLooped[wght].ttf",
  6931. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensedBold.ttf",
  6932. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-Black.ttf",
  6933. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-CondensedLight.ttf",
  6934. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-CondensedThin.ttf",
  6935. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-Thin.ttf",
  6936. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensedBold.ttf",
  6937. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-CondensedBlack.ttf",
  6938. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensed.ttf",
  6939. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensedLight.ttf",
  6940. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensedLight.ttf",
  6941. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiBold.ttf",
  6942. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-Condensed.ttf",
  6943. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensedThin.ttf",
  6944. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-CondensedBold.ttf",
  6945. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensedExtraBold.ttf",
  6946. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensed.ttf",
  6947. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensedSemiBold.ttf",
  6948. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-CondensedMedium.ttf",
  6949. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-Regular.ttf",
  6950. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensedBlack.ttf",
  6951. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-Bold.ttf",
  6952. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensedExtraLight.ttf",
  6953. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensedExtraLight.ttf",
  6954. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensedBlack.ttf",
  6955. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-Medium.ttf",
  6956. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-CondensedExtraBold.ttf",
  6957. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensedMedium.ttf",
  6958. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensedSemiBold.ttf",
  6959. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensedThin.ttf",
  6960. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraBold.ttf",
  6961. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraLight.ttf",
  6962. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-Light.ttf",
  6963. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-CondensedSemiBold.ttf",
  6964. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-ExtraCondensedExtraBold.ttf",
  6965. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-CondensedExtraLight.ttf",
  6966. "fonts/NotoSansLaoLooped/unhinted/ttf/NotoSansLaoLooped-SemiCondensedMedium.ttf",
  6967. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-CondensedExtraBold.otf",
  6968. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensedSemiBold.otf",
  6969. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-CondensedExtraLight.otf",
  6970. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-CondensedBlack.otf",
  6971. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensedThin.otf",
  6972. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensed.otf",
  6973. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-Bold.otf",
  6974. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-Medium.otf",
  6975. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-Light.otf",
  6976. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensedMedium.otf",
  6977. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-Regular.otf",
  6978. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-CondensedMedium.otf",
  6979. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraBold.otf",
  6980. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-Condensed.otf",
  6981. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-Thin.otf",
  6982. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensedExtraLight.otf",
  6983. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiBold.otf",
  6984. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensedBlack.otf",
  6985. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraLight.otf",
  6986. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-CondensedThin.otf",
  6987. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensedThin.otf",
  6988. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensedBold.otf",
  6989. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensed.otf",
  6990. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensedExtraBold.otf",
  6991. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensedBold.otf",
  6992. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensedLight.otf",
  6993. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensedBlack.otf",
  6994. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensedMedium.otf",
  6995. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-Black.otf",
  6996. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-ExtraCondensedExtraLight.otf",
  6997. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-CondensedSemiBold.otf",
  6998. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-CondensedLight.otf",
  6999. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensedLight.otf",
  7000. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensedExtraBold.otf",
  7001. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-SemiCondensedSemiBold.otf",
  7002. "fonts/NotoSansLaoLooped/unhinted/otf/NotoSansLaoLooped-CondensedBold.otf",
  7003. "fonts/NotoSansLaoLooped/unhinted/variable-ttf/NotoSansLaoLooped[wdth,wght].ttf",
  7004. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensedBold.ttf",
  7005. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-Black.ttf",
  7006. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-CondensedLight.ttf",
  7007. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-CondensedThin.ttf",
  7008. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-Thin.ttf",
  7009. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensedBold.ttf",
  7010. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-CondensedBlack.ttf",
  7011. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensed.ttf",
  7012. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensedLight.ttf",
  7013. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensedLight.ttf",
  7014. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiBold.ttf",
  7015. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-Condensed.ttf",
  7016. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensedThin.ttf",
  7017. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-CondensedBold.ttf",
  7018. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensedExtraBold.ttf",
  7019. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensed.ttf",
  7020. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensedSemiBold.ttf",
  7021. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-CondensedMedium.ttf",
  7022. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-Regular.ttf",
  7023. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensedBlack.ttf",
  7024. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-Bold.ttf",
  7025. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensedExtraLight.ttf",
  7026. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensedExtraLight.ttf",
  7027. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensedBlack.ttf",
  7028. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-Medium.ttf",
  7029. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-CondensedExtraBold.ttf",
  7030. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensedMedium.ttf",
  7031. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensedSemiBold.ttf",
  7032. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensedThin.ttf",
  7033. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraBold.ttf",
  7034. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraLight.ttf",
  7035. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-Light.ttf",
  7036. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-CondensedSemiBold.ttf",
  7037. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-ExtraCondensedExtraBold.ttf",
  7038. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-CondensedExtraLight.ttf",
  7039. "fonts/NotoSansLaoLooped/hinted/ttf/NotoSansLaoLooped-SemiCondensedMedium.ttf"
  7040. ],
  7041. "latest_release": {
  7042. "notes": "This release adds support for Unicode 14.0 characters, thanks to Ben Mitchell (@ohbendy).",
  7043. "published": "2023-06-22T06:54:59",
  7044. "url": "https://github.com/notofonts/lao/releases/tag/NotoSansLaoLooped-v1.002",
  7045. "version": "v1.002"
  7046. }
  7047. },
  7048. "Noto Serif Lao": {
  7049. "files": [
  7050. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-Bold.ttf",
  7051. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedExtraBold.ttf",
  7052. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-Condensed.ttf",
  7053. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedLight.ttf",
  7054. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedThin.ttf",
  7055. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedSemiBold.ttf",
  7056. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-Light.ttf",
  7057. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-Black.ttf",
  7058. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedBold.ttf",
  7059. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedMedium.ttf",
  7060. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedExtraBold.ttf",
  7061. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraBold.ttf",
  7062. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedSemiBold.ttf",
  7063. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraLight.ttf",
  7064. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedMedium.ttf",
  7065. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedExtraLight.ttf",
  7066. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedBold.ttf",
  7067. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedExtraLight.ttf",
  7068. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedLight.ttf",
  7069. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedBlack.ttf",
  7070. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-Medium.ttf",
  7071. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedThin.ttf",
  7072. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedExtraLight.ttf",
  7073. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensed.ttf",
  7074. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedBold.ttf",
  7075. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-CondensedMedium.ttf",
  7076. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedLight.ttf",
  7077. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedBlack.ttf",
  7078. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensedBlack.ttf",
  7079. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedExtraBold.ttf",
  7080. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-Thin.ttf",
  7081. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiCondensed.ttf",
  7082. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedThin.ttf",
  7083. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-ExtraCondensedSemiBold.ttf",
  7084. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-SemiBold.ttf",
  7085. "fonts/NotoSerifLao/full/ttf/NotoSerifLao-Regular.ttf",
  7086. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensedExtraLight.otf",
  7087. "fonts/NotoSerifLao/full/otf/NotoSerifLao-CondensedBold.otf",
  7088. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensed.otf",
  7089. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensed.otf",
  7090. "fonts/NotoSerifLao/full/otf/NotoSerifLao-CondensedSemiBold.otf",
  7091. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensedSemiBold.otf",
  7092. "fonts/NotoSerifLao/full/otf/NotoSerifLao-CondensedMedium.otf",
  7093. "fonts/NotoSerifLao/full/otf/NotoSerifLao-CondensedLight.otf",
  7094. "fonts/NotoSerifLao/full/otf/NotoSerifLao-CondensedThin.otf",
  7095. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensedMedium.otf",
  7096. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraBold.otf",
  7097. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensedLight.otf",
  7098. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensedBold.otf",
  7099. "fonts/NotoSerifLao/full/otf/NotoSerifLao-CondensedBlack.otf",
  7100. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensedBlack.otf",
  7101. "fonts/NotoSerifLao/full/otf/NotoSerifLao-Thin.otf",
  7102. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensedBlack.otf",
  7103. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensedExtraLight.otf",
  7104. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensedLight.otf",
  7105. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiBold.otf",
  7106. "fonts/NotoSerifLao/full/otf/NotoSerifLao-Black.otf",
  7107. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensedExtraBold.otf",
  7108. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensedThin.otf",
  7109. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensedExtraBold.otf",
  7110. "fonts/NotoSerifLao/full/otf/NotoSerifLao-Light.otf",
  7111. "fonts/NotoSerifLao/full/otf/NotoSerifLao-CondensedExtraLight.otf",
  7112. "fonts/NotoSerifLao/full/otf/NotoSerifLao-Medium.otf",
  7113. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraLight.otf",
  7114. "fonts/NotoSerifLao/full/otf/NotoSerifLao-Bold.otf",
  7115. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensedThin.otf",
  7116. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensedBold.otf",
  7117. "fonts/NotoSerifLao/full/otf/NotoSerifLao-SemiCondensedSemiBold.otf",
  7118. "fonts/NotoSerifLao/full/otf/NotoSerifLao-CondensedExtraBold.otf",
  7119. "fonts/NotoSerifLao/full/otf/NotoSerifLao-Regular.otf",
  7120. "fonts/NotoSerifLao/full/otf/NotoSerifLao-ExtraCondensedMedium.otf",
  7121. "fonts/NotoSerifLao/full/otf/NotoSerifLao-Condensed.otf",
  7122. "fonts/NotoSerifLao/full/variable-ttf/NotoSerifLao[wdth,wght].ttf",
  7123. "fonts/NotoSerifLao/full/slim-variable-ttf/NotoSerifLao[wght].ttf",
  7124. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-Bold.ttf",
  7125. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-CondensedExtraBold.ttf",
  7126. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-Condensed.ttf",
  7127. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensedLight.ttf",
  7128. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-CondensedThin.ttf",
  7129. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-CondensedSemiBold.ttf",
  7130. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-Light.ttf",
  7131. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-Black.ttf",
  7132. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensedBold.ttf",
  7133. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensedMedium.ttf",
  7134. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensedExtraBold.ttf",
  7135. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraBold.ttf",
  7136. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensedSemiBold.ttf",
  7137. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraLight.ttf",
  7138. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensedMedium.ttf",
  7139. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-CondensedExtraLight.ttf",
  7140. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-CondensedBold.ttf",
  7141. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensedExtraLight.ttf",
  7142. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-CondensedLight.ttf",
  7143. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-CondensedBlack.ttf",
  7144. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-Medium.ttf",
  7145. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensedThin.ttf",
  7146. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensedExtraLight.ttf",
  7147. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensed.ttf",
  7148. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensedBold.ttf",
  7149. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-CondensedMedium.ttf",
  7150. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensedLight.ttf",
  7151. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensedBlack.ttf",
  7152. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensedBlack.ttf",
  7153. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensedExtraBold.ttf",
  7154. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-Thin.ttf",
  7155. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiCondensed.ttf",
  7156. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensedThin.ttf",
  7157. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-ExtraCondensedSemiBold.ttf",
  7158. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-SemiBold.ttf",
  7159. "fonts/NotoSerifLao/hinted/ttf/NotoSerifLao-Regular.ttf",
  7160. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-Bold.ttf",
  7161. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-CondensedExtraBold.ttf",
  7162. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-Condensed.ttf",
  7163. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensedLight.ttf",
  7164. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-CondensedThin.ttf",
  7165. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-CondensedSemiBold.ttf",
  7166. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-Light.ttf",
  7167. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-Black.ttf",
  7168. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensedBold.ttf",
  7169. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensedMedium.ttf",
  7170. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensedExtraBold.ttf",
  7171. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraBold.ttf",
  7172. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensedSemiBold.ttf",
  7173. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraLight.ttf",
  7174. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensedMedium.ttf",
  7175. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-CondensedExtraLight.ttf",
  7176. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-CondensedBold.ttf",
  7177. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensedExtraLight.ttf",
  7178. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-CondensedLight.ttf",
  7179. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-CondensedBlack.ttf",
  7180. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-Medium.ttf",
  7181. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensedThin.ttf",
  7182. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensedExtraLight.ttf",
  7183. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensed.ttf",
  7184. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensedBold.ttf",
  7185. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-CondensedMedium.ttf",
  7186. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensedLight.ttf",
  7187. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensedBlack.ttf",
  7188. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensedBlack.ttf",
  7189. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensedExtraBold.ttf",
  7190. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-Thin.ttf",
  7191. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiCondensed.ttf",
  7192. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensedThin.ttf",
  7193. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-ExtraCondensedSemiBold.ttf",
  7194. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-SemiBold.ttf",
  7195. "fonts/NotoSerifLao/unhinted/ttf/NotoSerifLao-Regular.ttf",
  7196. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensedExtraLight.otf",
  7197. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-CondensedBold.otf",
  7198. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensed.otf",
  7199. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensed.otf",
  7200. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-CondensedSemiBold.otf",
  7201. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensedSemiBold.otf",
  7202. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-CondensedMedium.otf",
  7203. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-CondensedLight.otf",
  7204. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-CondensedThin.otf",
  7205. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensedMedium.otf",
  7206. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraBold.otf",
  7207. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensedLight.otf",
  7208. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensedBold.otf",
  7209. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-CondensedBlack.otf",
  7210. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensedBlack.otf",
  7211. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-Thin.otf",
  7212. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensedBlack.otf",
  7213. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensedExtraLight.otf",
  7214. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensedLight.otf",
  7215. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiBold.otf",
  7216. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-Black.otf",
  7217. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensedExtraBold.otf",
  7218. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensedThin.otf",
  7219. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensedExtraBold.otf",
  7220. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-Light.otf",
  7221. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-CondensedExtraLight.otf",
  7222. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-Medium.otf",
  7223. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraLight.otf",
  7224. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-Bold.otf",
  7225. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensedThin.otf",
  7226. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensedBold.otf",
  7227. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-SemiCondensedSemiBold.otf",
  7228. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-CondensedExtraBold.otf",
  7229. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-Regular.otf",
  7230. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-ExtraCondensedMedium.otf",
  7231. "fonts/NotoSerifLao/unhinted/otf/NotoSerifLao-Condensed.otf",
  7232. "fonts/NotoSerifLao/unhinted/variable-ttf/NotoSerifLao[wdth,wght].ttf",
  7233. "fonts/NotoSerifLao/unhinted/slim-variable-ttf/NotoSerifLao[wght].ttf",
  7234. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-Bold.ttf",
  7235. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-Light.ttf",
  7236. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-Black.ttf",
  7237. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-ExtraBold.ttf",
  7238. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-ExtraLight.ttf",
  7239. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-Medium.ttf",
  7240. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-Thin.ttf",
  7241. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-SemiBold.ttf",
  7242. "fonts/NotoSerifLao/googlefonts/ttf/NotoSerifLao-Regular.ttf",
  7243. "fonts/NotoSerifLao/googlefonts/variable-ttf/NotoSerifLao[wdth,wght].ttf"
  7244. ],
  7245. "latest_release": {
  7246. "notes": "This release adds support for Unicode 14.0 characters, thanks to Ben Mitchell (@ohbendy).",
  7247. "published": "2023-06-22T06:48:38",
  7248. "url": "https://github.com/notofonts/lao/releases/tag/NotoSerifLao-v2.003",
  7249. "version": "v2.003"
  7250. }
  7251. }
  7252. },
  7253. "known_releases": [
  7254. "NotoSansLao-v2.002",
  7255. "NotoSerifLao-v2.002",
  7256. "NotoSansLaoLooped-v1.001",
  7257. "NotoSerifLao-v2.003",
  7258. "NotoSansLao-v2.003",
  7259. "NotoSansLaoLooped-v1.002"
  7260. ]
  7261. },
  7262. "latin-greek-cyrillic": {
  7263. "families": {
  7264. "Noto Sans": {
  7265. "files": [
  7266. "fonts/NotoSans/unhinted/otf/NotoSans-Light.otf",
  7267. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedThinItalic.otf",
  7268. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedItalic.otf",
  7269. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedBold.otf",
  7270. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedExtraBold.otf",
  7271. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedExtraBoldItalic.otf",
  7272. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedBlackItalic.otf",
  7273. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedSemiBold.otf",
  7274. "fonts/NotoSans/unhinted/otf/NotoSans-ThinItalic.otf",
  7275. "fonts/NotoSans/unhinted/otf/NotoSans-MediumItalic.otf",
  7276. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedSemiBoldItalic.otf",
  7277. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedMedium.otf",
  7278. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedThin.otf",
  7279. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedExtraLight.otf",
  7280. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedSemiBold.otf",
  7281. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensed.otf",
  7282. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedExtraLightItalic.otf",
  7283. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedExtraLightItalic.otf",
  7284. "fonts/NotoSans/unhinted/otf/NotoSans-Bold.otf",
  7285. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedItalic.otf",
  7286. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedLight.otf",
  7287. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedBlack.otf",
  7288. "fonts/NotoSans/unhinted/otf/NotoSans-BoldItalic.otf",
  7289. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedBlack.otf",
  7290. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedBold.otf",
  7291. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraBoldItalic.otf",
  7292. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedExtraBoldItalic.otf",
  7293. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedMediumItalic.otf",
  7294. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedThinItalic.otf",
  7295. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedMedium.otf",
  7296. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraBold.otf",
  7297. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedBoldItalic.otf",
  7298. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedExtraBoldItalic.otf",
  7299. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedBoldItalic.otf",
  7300. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedSemiBoldItalic.otf",
  7301. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedLight.otf",
  7302. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedItalic.otf",
  7303. "fonts/NotoSans/unhinted/otf/NotoSans-Black.otf",
  7304. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraLight.otf",
  7305. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedBold.otf",
  7306. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedLightItalic.otf",
  7307. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedBlack.otf",
  7308. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraLightItalic.otf",
  7309. "fonts/NotoSans/unhinted/otf/NotoSans-SemiBold.otf",
  7310. "fonts/NotoSans/unhinted/otf/NotoSans-SemiBoldItalic.otf",
  7311. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedExtraLight.otf",
  7312. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedMediumItalic.otf",
  7313. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensed.otf",
  7314. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedSemiBold.otf",
  7315. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedExtraLightItalic.otf",
  7316. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedExtraLight.otf",
  7317. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedBoldItalic.otf",
  7318. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedExtraBold.otf",
  7319. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedLightItalic.otf",
  7320. "fonts/NotoSans/unhinted/otf/NotoSans-Condensed.otf",
  7321. "fonts/NotoSans/unhinted/otf/NotoSans-LightItalic.otf",
  7322. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedExtraBold.otf",
  7323. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedLight.otf",
  7324. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedMedium.otf",
  7325. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedSemiBoldItalic.otf",
  7326. "fonts/NotoSans/unhinted/otf/NotoSans-Medium.otf",
  7327. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedThinItalic.otf",
  7328. "fonts/NotoSans/unhinted/otf/NotoSans-Thin.otf",
  7329. "fonts/NotoSans/unhinted/otf/NotoSans-Italic.otf",
  7330. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedThin.otf",
  7331. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedThin.otf",
  7332. "fonts/NotoSans/unhinted/otf/NotoSans-Regular.otf",
  7333. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedBlackItalic.otf",
  7334. "fonts/NotoSans/unhinted/otf/NotoSans-SemiCondensedLightItalic.otf",
  7335. "fonts/NotoSans/unhinted/otf/NotoSans-CondensedMediumItalic.otf",
  7336. "fonts/NotoSans/unhinted/otf/NotoSans-ExtraCondensedBlackItalic.otf",
  7337. "fonts/NotoSans/unhinted/otf/NotoSans-BlackItalic.otf",
  7338. "fonts/NotoSans/unhinted/variable-ttf/NotoSans-Italic[wdth,wght].ttf",
  7339. "fonts/NotoSans/unhinted/variable-ttf/NotoSans[wdth,wght].ttf",
  7340. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedLight.ttf",
  7341. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedLightItalic.ttf",
  7342. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedLightItalic.ttf",
  7343. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedThinItalic.ttf",
  7344. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedMedium.ttf",
  7345. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensed.ttf",
  7346. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedSemiBold.ttf",
  7347. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedThinItalic.ttf",
  7348. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedMediumItalic.ttf",
  7349. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedThinItalic.ttf",
  7350. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedBoldItalic.ttf",
  7351. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedExtraBoldItalic.ttf",
  7352. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraBoldItalic.ttf",
  7353. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedBlack.ttf",
  7354. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedExtraLightItalic.ttf",
  7355. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedLight.ttf",
  7356. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedThin.ttf",
  7357. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedBlack.ttf",
  7358. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedItalic.ttf",
  7359. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedSemiBold.ttf",
  7360. "fonts/NotoSans/unhinted/ttf/NotoSans-Light.ttf",
  7361. "fonts/NotoSans/unhinted/ttf/NotoSans-MediumItalic.ttf",
  7362. "fonts/NotoSans/unhinted/ttf/NotoSans-Regular.ttf",
  7363. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedMediumItalic.ttf",
  7364. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraLight.ttf",
  7365. "fonts/NotoSans/unhinted/ttf/NotoSans-Medium.ttf",
  7366. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedMedium.ttf",
  7367. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedExtraLightItalic.ttf",
  7368. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedExtraBoldItalic.ttf",
  7369. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedExtraLight.ttf",
  7370. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraLightItalic.ttf",
  7371. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedThin.ttf",
  7372. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedSemiBoldItalic.ttf",
  7373. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedThin.ttf",
  7374. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiBold.ttf",
  7375. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedLight.ttf",
  7376. "fonts/NotoSans/unhinted/ttf/NotoSans-BlackItalic.ttf",
  7377. "fonts/NotoSans/unhinted/ttf/NotoSans-Black.ttf",
  7378. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedMedium.ttf",
  7379. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedItalic.ttf",
  7380. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedLightItalic.ttf",
  7381. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedBlackItalic.ttf",
  7382. "fonts/NotoSans/unhinted/ttf/NotoSans-BoldItalic.ttf",
  7383. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedBlackItalic.ttf",
  7384. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedExtraLight.ttf",
  7385. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedExtraBoldItalic.ttf",
  7386. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedMediumItalic.ttf",
  7387. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraBold.ttf",
  7388. "fonts/NotoSans/unhinted/ttf/NotoSans-LightItalic.ttf",
  7389. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedExtraLight.ttf",
  7390. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedBlackItalic.ttf",
  7391. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedItalic.ttf",
  7392. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedBold.ttf",
  7393. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedBoldItalic.ttf",
  7394. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedBlack.ttf",
  7395. "fonts/NotoSans/unhinted/ttf/NotoSans-Bold.ttf",
  7396. "fonts/NotoSans/unhinted/ttf/NotoSans-ThinItalic.ttf",
  7397. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedSemiBold.ttf",
  7398. "fonts/NotoSans/unhinted/ttf/NotoSans-Italic.ttf",
  7399. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedSemiBoldItalic.ttf",
  7400. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedExtraBold.ttf",
  7401. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedExtraBold.ttf",
  7402. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedBold.ttf",
  7403. "fonts/NotoSans/unhinted/ttf/NotoSans-Thin.ttf",
  7404. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiBoldItalic.ttf",
  7405. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedSemiBoldItalic.ttf",
  7406. "fonts/NotoSans/unhinted/ttf/NotoSans-SemiCondensedBold.ttf",
  7407. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensed.ttf",
  7408. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedExtraLightItalic.ttf",
  7409. "fonts/NotoSans/unhinted/ttf/NotoSans-CondensedExtraBold.ttf",
  7410. "fonts/NotoSans/unhinted/ttf/NotoSans-ExtraCondensedBoldItalic.ttf",
  7411. "fonts/NotoSans/unhinted/ttf/NotoSans-Condensed.ttf",
  7412. "fonts/NotoSans/unhinted/slim-variable-ttf/NotoSans-Italic[wght].ttf",
  7413. "fonts/NotoSans/unhinted/slim-variable-ttf/NotoSans[wght].ttf",
  7414. "fonts/NotoSans/full/otf/NotoSans-Light.otf",
  7415. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedThinItalic.otf",
  7416. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedItalic.otf",
  7417. "fonts/NotoSans/full/otf/NotoSans-CondensedBold.otf",
  7418. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedExtraBold.otf",
  7419. "fonts/NotoSans/full/otf/NotoSans-CondensedExtraBoldItalic.otf",
  7420. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedBlackItalic.otf",
  7421. "fonts/NotoSans/full/otf/NotoSans-CondensedSemiBold.otf",
  7422. "fonts/NotoSans/full/otf/NotoSans-ThinItalic.otf",
  7423. "fonts/NotoSans/full/otf/NotoSans-MediumItalic.otf",
  7424. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedSemiBoldItalic.otf",
  7425. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedMedium.otf",
  7426. "fonts/NotoSans/full/otf/NotoSans-CondensedThin.otf",
  7427. "fonts/NotoSans/full/otf/NotoSans-CondensedExtraLight.otf",
  7428. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedSemiBold.otf",
  7429. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensed.otf",
  7430. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedExtraLightItalic.otf",
  7431. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedExtraLightItalic.otf",
  7432. "fonts/NotoSans/full/otf/NotoSans-Bold.otf",
  7433. "fonts/NotoSans/full/otf/NotoSans-CondensedItalic.otf",
  7434. "fonts/NotoSans/full/otf/NotoSans-CondensedLight.otf",
  7435. "fonts/NotoSans/full/otf/NotoSans-CondensedBlack.otf",
  7436. "fonts/NotoSans/full/otf/NotoSans-BoldItalic.otf",
  7437. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedBlack.otf",
  7438. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedBold.otf",
  7439. "fonts/NotoSans/full/otf/NotoSans-ExtraBoldItalic.otf",
  7440. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedExtraBoldItalic.otf",
  7441. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedMediumItalic.otf",
  7442. "fonts/NotoSans/full/otf/NotoSans-CondensedThinItalic.otf",
  7443. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedMedium.otf",
  7444. "fonts/NotoSans/full/otf/NotoSans-ExtraBold.otf",
  7445. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedBoldItalic.otf",
  7446. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedExtraBoldItalic.otf",
  7447. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedBoldItalic.otf",
  7448. "fonts/NotoSans/full/otf/NotoSans-CondensedSemiBoldItalic.otf",
  7449. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedLight.otf",
  7450. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedItalic.otf",
  7451. "fonts/NotoSans/full/otf/NotoSans-Black.otf",
  7452. "fonts/NotoSans/full/otf/NotoSans-ExtraLight.otf",
  7453. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedBold.otf",
  7454. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedLightItalic.otf",
  7455. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedBlack.otf",
  7456. "fonts/NotoSans/full/otf/NotoSans-ExtraLightItalic.otf",
  7457. "fonts/NotoSans/full/otf/NotoSans-SemiBold.otf",
  7458. "fonts/NotoSans/full/otf/NotoSans-SemiBoldItalic.otf",
  7459. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedExtraLight.otf",
  7460. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedMediumItalic.otf",
  7461. "fonts/NotoSans/full/otf/NotoSans-SemiCondensed.otf",
  7462. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedSemiBold.otf",
  7463. "fonts/NotoSans/full/otf/NotoSans-CondensedExtraLightItalic.otf",
  7464. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedExtraLight.otf",
  7465. "fonts/NotoSans/full/otf/NotoSans-CondensedBoldItalic.otf",
  7466. "fonts/NotoSans/full/otf/NotoSans-CondensedExtraBold.otf",
  7467. "fonts/NotoSans/full/otf/NotoSans-CondensedLightItalic.otf",
  7468. "fonts/NotoSans/full/otf/NotoSans-Condensed.otf",
  7469. "fonts/NotoSans/full/otf/NotoSans-LightItalic.otf",
  7470. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedExtraBold.otf",
  7471. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedLight.otf",
  7472. "fonts/NotoSans/full/otf/NotoSans-CondensedMedium.otf",
  7473. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedSemiBoldItalic.otf",
  7474. "fonts/NotoSans/full/otf/NotoSans-Medium.otf",
  7475. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedThinItalic.otf",
  7476. "fonts/NotoSans/full/otf/NotoSans-Thin.otf",
  7477. "fonts/NotoSans/full/otf/NotoSans-Italic.otf",
  7478. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedThin.otf",
  7479. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedThin.otf",
  7480. "fonts/NotoSans/full/otf/NotoSans-Regular.otf",
  7481. "fonts/NotoSans/full/otf/NotoSans-CondensedBlackItalic.otf",
  7482. "fonts/NotoSans/full/otf/NotoSans-SemiCondensedLightItalic.otf",
  7483. "fonts/NotoSans/full/otf/NotoSans-CondensedMediumItalic.otf",
  7484. "fonts/NotoSans/full/otf/NotoSans-ExtraCondensedBlackItalic.otf",
  7485. "fonts/NotoSans/full/otf/NotoSans-BlackItalic.otf",
  7486. "fonts/NotoSans/full/variable-ttf/NotoSans-Italic[wdth,wght].ttf",
  7487. "fonts/NotoSans/full/variable-ttf/NotoSans[wdth,wght].ttf",
  7488. "fonts/NotoSans/full/ttf/NotoSans-CondensedLight.ttf",
  7489. "fonts/NotoSans/full/ttf/NotoSans-CondensedLightItalic.ttf",
  7490. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedLightItalic.ttf",
  7491. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedThinItalic.ttf",
  7492. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedMedium.ttf",
  7493. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensed.ttf",
  7494. "fonts/NotoSans/full/ttf/NotoSans-CondensedSemiBold.ttf",
  7495. "fonts/NotoSans/full/ttf/NotoSans-CondensedThinItalic.ttf",
  7496. "fonts/NotoSans/full/ttf/NotoSans-CondensedMediumItalic.ttf",
  7497. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedThinItalic.ttf",
  7498. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedBoldItalic.ttf",
  7499. "fonts/NotoSans/full/ttf/NotoSans-CondensedExtraBoldItalic.ttf",
  7500. "fonts/NotoSans/full/ttf/NotoSans-ExtraBoldItalic.ttf",
  7501. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBlack.ttf",
  7502. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedExtraLightItalic.ttf",
  7503. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedLight.ttf",
  7504. "fonts/NotoSans/full/ttf/NotoSans-CondensedThin.ttf",
  7505. "fonts/NotoSans/full/ttf/NotoSans-CondensedBlack.ttf",
  7506. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedItalic.ttf",
  7507. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedSemiBold.ttf",
  7508. "fonts/NotoSans/full/ttf/NotoSans-Light.ttf",
  7509. "fonts/NotoSans/full/ttf/NotoSans-MediumItalic.ttf",
  7510. "fonts/NotoSans/full/ttf/NotoSans-Regular.ttf",
  7511. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedMediumItalic.ttf",
  7512. "fonts/NotoSans/full/ttf/NotoSans-ExtraLight.ttf",
  7513. "fonts/NotoSans/full/ttf/NotoSans-Medium.ttf",
  7514. "fonts/NotoSans/full/ttf/NotoSans-CondensedMedium.ttf",
  7515. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedExtraLightItalic.ttf",
  7516. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedExtraBoldItalic.ttf",
  7517. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedExtraLight.ttf",
  7518. "fonts/NotoSans/full/ttf/NotoSans-ExtraLightItalic.ttf",
  7519. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedThin.ttf",
  7520. "fonts/NotoSans/full/ttf/NotoSans-CondensedSemiBoldItalic.ttf",
  7521. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedThin.ttf",
  7522. "fonts/NotoSans/full/ttf/NotoSans-SemiBold.ttf",
  7523. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedLight.ttf",
  7524. "fonts/NotoSans/full/ttf/NotoSans-BlackItalic.ttf",
  7525. "fonts/NotoSans/full/ttf/NotoSans-Black.ttf",
  7526. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedMedium.ttf",
  7527. "fonts/NotoSans/full/ttf/NotoSans-CondensedItalic.ttf",
  7528. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedLightItalic.ttf",
  7529. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedBlackItalic.ttf",
  7530. "fonts/NotoSans/full/ttf/NotoSans-BoldItalic.ttf",
  7531. "fonts/NotoSans/full/ttf/NotoSans-CondensedBlackItalic.ttf",
  7532. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedExtraLight.ttf",
  7533. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedExtraBoldItalic.ttf",
  7534. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedMediumItalic.ttf",
  7535. "fonts/NotoSans/full/ttf/NotoSans-ExtraBold.ttf",
  7536. "fonts/NotoSans/full/ttf/NotoSans-LightItalic.ttf",
  7537. "fonts/NotoSans/full/ttf/NotoSans-CondensedExtraLight.ttf",
  7538. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBlackItalic.ttf",
  7539. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedItalic.ttf",
  7540. "fonts/NotoSans/full/ttf/NotoSans-CondensedBold.ttf",
  7541. "fonts/NotoSans/full/ttf/NotoSans-CondensedBoldItalic.ttf",
  7542. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedBlack.ttf",
  7543. "fonts/NotoSans/full/ttf/NotoSans-Bold.ttf",
  7544. "fonts/NotoSans/full/ttf/NotoSans-ThinItalic.ttf",
  7545. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedSemiBold.ttf",
  7546. "fonts/NotoSans/full/ttf/NotoSans-Italic.ttf",
  7547. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedSemiBoldItalic.ttf",
  7548. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedExtraBold.ttf",
  7549. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedExtraBold.ttf",
  7550. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBold.ttf",
  7551. "fonts/NotoSans/full/ttf/NotoSans-Thin.ttf",
  7552. "fonts/NotoSans/full/ttf/NotoSans-SemiBoldItalic.ttf",
  7553. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedSemiBoldItalic.ttf",
  7554. "fonts/NotoSans/full/ttf/NotoSans-SemiCondensedBold.ttf",
  7555. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensed.ttf",
  7556. "fonts/NotoSans/full/ttf/NotoSans-CondensedExtraLightItalic.ttf",
  7557. "fonts/NotoSans/full/ttf/NotoSans-CondensedExtraBold.ttf",
  7558. "fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBoldItalic.ttf",
  7559. "fonts/NotoSans/full/ttf/NotoSans-Condensed.ttf",
  7560. "fonts/NotoSans/full/slim-variable-ttf/NotoSans-Italic[wght].ttf",
  7561. "fonts/NotoSans/full/slim-variable-ttf/NotoSans[wght].ttf",
  7562. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedLight.ttf",
  7563. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedLightItalic.ttf",
  7564. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedLightItalic.ttf",
  7565. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedThinItalic.ttf",
  7566. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedMedium.ttf",
  7567. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensed.ttf",
  7568. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedSemiBold.ttf",
  7569. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedThinItalic.ttf",
  7570. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedMediumItalic.ttf",
  7571. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedThinItalic.ttf",
  7572. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedBoldItalic.ttf",
  7573. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedExtraBoldItalic.ttf",
  7574. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraBoldItalic.ttf",
  7575. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedBlack.ttf",
  7576. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedExtraLightItalic.ttf",
  7577. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedLight.ttf",
  7578. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedThin.ttf",
  7579. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedBlack.ttf",
  7580. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedItalic.ttf",
  7581. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedSemiBold.ttf",
  7582. "fonts/NotoSans/hinted/ttf/NotoSans-Light.ttf",
  7583. "fonts/NotoSans/hinted/ttf/NotoSans-MediumItalic.ttf",
  7584. "fonts/NotoSans/hinted/ttf/NotoSans-Regular.ttf",
  7585. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedMediumItalic.ttf",
  7586. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraLight.ttf",
  7587. "fonts/NotoSans/hinted/ttf/NotoSans-Medium.ttf",
  7588. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedMedium.ttf",
  7589. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedExtraLightItalic.ttf",
  7590. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedExtraBoldItalic.ttf",
  7591. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedExtraLight.ttf",
  7592. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraLightItalic.ttf",
  7593. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedThin.ttf",
  7594. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedSemiBoldItalic.ttf",
  7595. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedThin.ttf",
  7596. "fonts/NotoSans/hinted/ttf/NotoSans-SemiBold.ttf",
  7597. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedLight.ttf",
  7598. "fonts/NotoSans/hinted/ttf/NotoSans-BlackItalic.ttf",
  7599. "fonts/NotoSans/hinted/ttf/NotoSans-Black.ttf",
  7600. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedMedium.ttf",
  7601. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedItalic.ttf",
  7602. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedLightItalic.ttf",
  7603. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedBlackItalic.ttf",
  7604. "fonts/NotoSans/hinted/ttf/NotoSans-BoldItalic.ttf",
  7605. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedBlackItalic.ttf",
  7606. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedExtraLight.ttf",
  7607. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedExtraBoldItalic.ttf",
  7608. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedMediumItalic.ttf",
  7609. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraBold.ttf",
  7610. "fonts/NotoSans/hinted/ttf/NotoSans-LightItalic.ttf",
  7611. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedExtraLight.ttf",
  7612. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedBlackItalic.ttf",
  7613. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedItalic.ttf",
  7614. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedBold.ttf",
  7615. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedBoldItalic.ttf",
  7616. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedBlack.ttf",
  7617. "fonts/NotoSans/hinted/ttf/NotoSans-Bold.ttf",
  7618. "fonts/NotoSans/hinted/ttf/NotoSans-ThinItalic.ttf",
  7619. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedSemiBold.ttf",
  7620. "fonts/NotoSans/hinted/ttf/NotoSans-Italic.ttf",
  7621. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedSemiBoldItalic.ttf",
  7622. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedExtraBold.ttf",
  7623. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedExtraBold.ttf",
  7624. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedBold.ttf",
  7625. "fonts/NotoSans/hinted/ttf/NotoSans-Thin.ttf",
  7626. "fonts/NotoSans/hinted/ttf/NotoSans-SemiBoldItalic.ttf",
  7627. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedSemiBoldItalic.ttf",
  7628. "fonts/NotoSans/hinted/ttf/NotoSans-SemiCondensedBold.ttf",
  7629. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensed.ttf",
  7630. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedExtraLightItalic.ttf",
  7631. "fonts/NotoSans/hinted/ttf/NotoSans-CondensedExtraBold.ttf",
  7632. "fonts/NotoSans/hinted/ttf/NotoSans-ExtraCondensedBoldItalic.ttf",
  7633. "fonts/NotoSans/hinted/ttf/NotoSans-Condensed.ttf",
  7634. "fonts/NotoSans/googlefonts/variable-ttf/NotoSans-Italic[wdth,wght].ttf",
  7635. "fonts/NotoSans/googlefonts/variable-ttf/NotoSans[wdth,wght].ttf"
  7636. ],
  7637. "latest_release": {
  7638. "notes": "Noto Sans v2.015\n\nThis release fixes some kinks in the six.osf glyph and removes some errant glyphs (#405)\n",
  7639. "published": "2024-11-20T17:23:44+00:00",
  7640. "url": "https://github.com/notofonts/latin-greek-cyrillic/releases/tag/NotoSans-v2.015",
  7641. "version": "v2.015"
  7642. }
  7643. },
  7644. "Noto Sans Mono": {
  7645. "files": [
  7646. "fonts/NotoSansMono/googlefonts/variable/NotoSansMono[wdth,wght].ttf",
  7647. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-ExtraBold.ttf",
  7648. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-Light.ttf",
  7649. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-Black.ttf",
  7650. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-Medium.ttf",
  7651. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-Thin.ttf",
  7652. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-Regular.ttf",
  7653. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-SemiBold.ttf",
  7654. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-ExtraLight.ttf",
  7655. "fonts/NotoSansMono/googlefonts/ttf/NotoSansMono-Bold.ttf",
  7656. "fonts/NotoSansMono/unhinted/variable/NotoSansMono[wdth,wght].ttf",
  7657. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-CondensedLight.otf",
  7658. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensedLight.otf",
  7659. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensedLight.otf",
  7660. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensedExtraLight.otf",
  7661. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensed.otf",
  7662. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensedExtraBold.otf",
  7663. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensedSemiBold.otf",
  7664. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-Regular.otf",
  7665. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensedExtraBold.otf",
  7666. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-CondensedSemiBold.otf",
  7667. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensed.otf",
  7668. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-Condensed.otf",
  7669. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensedThin.otf",
  7670. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensedBold.otf",
  7671. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensedMedium.otf",
  7672. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensedBlack.otf",
  7673. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-Bold.otf",
  7674. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-CondensedExtraBold.otf",
  7675. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiBold.otf",
  7676. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensedSemiBold.otf",
  7677. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-CondensedBlack.otf",
  7678. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-CondensedMedium.otf",
  7679. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraBold.otf",
  7680. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-Medium.otf",
  7681. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraLight.otf",
  7682. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-CondensedBold.otf",
  7683. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensedBlack.otf",
  7684. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-Black.otf",
  7685. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-Thin.otf",
  7686. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensedExtraLight.otf",
  7687. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensedThin.otf",
  7688. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-SemiCondensedBold.otf",
  7689. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-CondensedExtraLight.otf",
  7690. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-ExtraCondensedMedium.otf",
  7691. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-CondensedThin.otf",
  7692. "fonts/NotoSansMono/unhinted/otf/NotoSansMono-Light.otf",
  7693. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraBold.ttf",
  7694. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensedMedium.ttf",
  7695. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-CondensedThin.ttf",
  7696. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-CondensedLight.ttf",
  7697. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-CondensedBlack.ttf",
  7698. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-Light.ttf",
  7699. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensedExtraBold.ttf",
  7700. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensedExtraLight.ttf",
  7701. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-CondensedExtraLight.ttf",
  7702. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensedExtraBold.ttf",
  7703. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensedBold.ttf",
  7704. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensed.ttf",
  7705. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-CondensedExtraBold.ttf",
  7706. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensedLight.ttf",
  7707. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensedThin.ttf",
  7708. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-Black.ttf",
  7709. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensedBlack.ttf",
  7710. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-CondensedSemiBold.ttf",
  7711. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-Medium.ttf",
  7712. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensedExtraLight.ttf",
  7713. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-Thin.ttf",
  7714. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensedSemiBold.ttf",
  7715. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensedSemiBold.ttf",
  7716. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensed.ttf",
  7717. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensedThin.ttf",
  7718. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-Regular.ttf",
  7719. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiBold.ttf",
  7720. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-SemiCondensedBold.ttf",
  7721. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensedMedium.ttf",
  7722. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraLight.ttf",
  7723. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensedLight.ttf",
  7724. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-ExtraCondensedBlack.ttf",
  7725. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-CondensedBold.ttf",
  7726. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-Bold.ttf",
  7727. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-Condensed.ttf",
  7728. "fonts/NotoSansMono/unhinted/ttf/NotoSansMono-CondensedMedium.ttf",
  7729. "fonts/NotoSansMono/unhinted/slim-variable-ttf/NotoSansMono[wght].ttf",
  7730. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraBold.ttf",
  7731. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensedMedium.ttf",
  7732. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-CondensedThin.ttf",
  7733. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-CondensedLight.ttf",
  7734. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-CondensedBlack.ttf",
  7735. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-Light.ttf",
  7736. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensedExtraBold.ttf",
  7737. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensedExtraLight.ttf",
  7738. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-CondensedExtraLight.ttf",
  7739. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensedExtraBold.ttf",
  7740. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensedBold.ttf",
  7741. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensed.ttf",
  7742. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-CondensedExtraBold.ttf",
  7743. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensedLight.ttf",
  7744. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensedThin.ttf",
  7745. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-Black.ttf",
  7746. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensedBlack.ttf",
  7747. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-CondensedSemiBold.ttf",
  7748. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-Medium.ttf",
  7749. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensedExtraLight.ttf",
  7750. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-Thin.ttf",
  7751. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensedSemiBold.ttf",
  7752. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensedSemiBold.ttf",
  7753. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensed.ttf",
  7754. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensedThin.ttf",
  7755. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-Regular.ttf",
  7756. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiBold.ttf",
  7757. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-SemiCondensedBold.ttf",
  7758. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensedMedium.ttf",
  7759. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraLight.ttf",
  7760. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensedLight.ttf",
  7761. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-ExtraCondensedBlack.ttf",
  7762. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-CondensedBold.ttf",
  7763. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-Bold.ttf",
  7764. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-Condensed.ttf",
  7765. "fonts/NotoSansMono/hinted/ttf/NotoSansMono-CondensedMedium.ttf"
  7766. ],
  7767. "latest_release": {
  7768. "notes": "Noto Sans Mono v2.014\n\nThis release:\n\n* Updates the shape of U+AB5A SMALL LETTER Y WITH SHORT RIGHT LEG to match Unicode 15.1\n* Improves U+019E SMALL LETTER N WITH LONG RIGHT LEG and U+A798 CAPITAL LETTER F WITH STROKE\n* Improves the hook shape on V WITH HOOK (#178)\n* Ensures that diacritic stacks in Romanian are not reordered (#214)\n* Corrects the anchoring of double-width diacritics (#132)\n* Support the sequence U+2E2B, U+032E for typicon notation (#63)\n* Corrects the shape of U+2E49 DOUBLE STACKED COMMA, U+2229 INTERSECTION and U+A789 MODIFIER LETTER COLON (#59, #207, #217)\n* Improves the anchoring of U+A69E COMBINING CYRILLIC LETTER EF and U+2C77 SMALL LETTER TAILLESS PHI (#220, #69)\n* Adds IPA localizations to Greek script (#110)\n* Makes full-width and half-width braces different widths (#61)\n* Corrects anchor positions on U+1D16 TOP HALF O and U+1D17 BOTTOM HALF O (#67)\n",
  7769. "published": "2023-09-30T11:11:22+00:00",
  7770. "url": "https://github.com/notofonts/latin-greek-cyrillic/releases/tag/NotoSansMono-v2.014",
  7771. "version": "v2.014"
  7772. }
  7773. },
  7774. "Noto Serif": {
  7775. "files": [
  7776. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedThin.otf",
  7777. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedSemiBoldItalic.otf",
  7778. "fonts/NotoSerif/unhinted/otf/NotoSerif-Condensed.otf",
  7779. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedLight.otf",
  7780. "fonts/NotoSerif/unhinted/otf/NotoSerif-Medium.otf",
  7781. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedSemiBold.otf",
  7782. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensed.otf",
  7783. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedBlack.otf",
  7784. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedBlack.otf",
  7785. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedExtraLightItalic.otf",
  7786. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedMediumItalic.otf",
  7787. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiBoldItalic.otf",
  7788. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedExtraLight.otf",
  7789. "fonts/NotoSerif/unhinted/otf/NotoSerif-Bold.otf",
  7790. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedThinItalic.otf",
  7791. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedBoldItalic.otf",
  7792. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedExtraLightItalic.otf",
  7793. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedBlackItalic.otf",
  7794. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedBlack.otf",
  7795. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedSemiBold.otf",
  7796. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedBold.otf",
  7797. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraBoldItalic.otf",
  7798. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedExtraLight.otf",
  7799. "fonts/NotoSerif/unhinted/otf/NotoSerif-MediumItalic.otf",
  7800. "fonts/NotoSerif/unhinted/otf/NotoSerif-Thin.otf",
  7801. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedMedium.otf",
  7802. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedThinItalic.otf",
  7803. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensed.otf",
  7804. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedLightItalic.otf",
  7805. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedExtraBold.otf",
  7806. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraBold.otf",
  7807. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedBlackItalic.otf",
  7808. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedItalic.otf",
  7809. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedExtraBoldItalic.otf",
  7810. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedExtraLight.otf",
  7811. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedThin.otf",
  7812. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedLight.otf",
  7813. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedSemiBold.otf",
  7814. "fonts/NotoSerif/unhinted/otf/NotoSerif-Regular.otf",
  7815. "fonts/NotoSerif/unhinted/otf/NotoSerif-LightItalic.otf",
  7816. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedExtraBoldItalic.otf",
  7817. "fonts/NotoSerif/unhinted/otf/NotoSerif-Italic.otf",
  7818. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedBold.otf",
  7819. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedExtraLightItalic.otf",
  7820. "fonts/NotoSerif/unhinted/otf/NotoSerif-ThinItalic.otf",
  7821. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedBlackItalic.otf",
  7822. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedMediumItalic.otf",
  7823. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedLightItalic.otf",
  7824. "fonts/NotoSerif/unhinted/otf/NotoSerif-Black.otf",
  7825. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedExtraBold.otf",
  7826. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedBold.otf",
  7827. "fonts/NotoSerif/unhinted/otf/NotoSerif-BlackItalic.otf",
  7828. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraLightItalic.otf",
  7829. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedMedium.otf",
  7830. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraLight.otf",
  7831. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedItalic.otf",
  7832. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedSemiBoldItalic.otf",
  7833. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedThinItalic.otf",
  7834. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedLightItalic.otf",
  7835. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedBoldItalic.otf",
  7836. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedExtraBoldItalic.otf",
  7837. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedSemiBoldItalic.otf",
  7838. "fonts/NotoSerif/unhinted/otf/NotoSerif-ExtraCondensedItalic.otf",
  7839. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedThin.otf",
  7840. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedLight.otf",
  7841. "fonts/NotoSerif/unhinted/otf/NotoSerif-Light.otf",
  7842. "fonts/NotoSerif/unhinted/otf/NotoSerif-CondensedBoldItalic.otf",
  7843. "fonts/NotoSerif/unhinted/otf/NotoSerif-BoldItalic.otf",
  7844. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedMedium.otf",
  7845. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiBold.otf",
  7846. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedMediumItalic.otf",
  7847. "fonts/NotoSerif/unhinted/otf/NotoSerif-SemiCondensedExtraBold.otf",
  7848. "fonts/NotoSerif/unhinted/variable-ttf/NotoSerif-Italic[wdth,wght].ttf",
  7849. "fonts/NotoSerif/unhinted/variable-ttf/NotoSerif[wdth,wght].ttf",
  7850. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedSemiBold.ttf",
  7851. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraBoldItalic.ttf",
  7852. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedMediumItalic.ttf",
  7853. "fonts/NotoSerif/unhinted/ttf/NotoSerif-Bold.ttf",
  7854. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiBold.ttf",
  7855. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedMedium.ttf",
  7856. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedThinItalic.ttf",
  7857. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedExtraBoldItalic.ttf",
  7858. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedBold.ttf",
  7859. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraLightItalic.ttf",
  7860. "fonts/NotoSerif/unhinted/ttf/NotoSerif-BoldItalic.ttf",
  7861. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensed.ttf",
  7862. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedBlack.ttf",
  7863. "fonts/NotoSerif/unhinted/ttf/NotoSerif-Black.ttf",
  7864. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedSemiBoldItalic.ttf",
  7865. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedLightItalic.ttf",
  7866. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedThin.ttf",
  7867. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedThin.ttf",
  7868. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedMedium.ttf",
  7869. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedMediumItalic.ttf",
  7870. "fonts/NotoSerif/unhinted/ttf/NotoSerif-BlackItalic.ttf",
  7871. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedBoldItalic.ttf",
  7872. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedThinItalic.ttf",
  7873. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedSemiBold.ttf",
  7874. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedExtraLight.ttf",
  7875. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedLightItalic.ttf",
  7876. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedBlackItalic.ttf",
  7877. "fonts/NotoSerif/unhinted/ttf/NotoSerif-Regular.ttf",
  7878. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedBold.ttf",
  7879. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedBlackItalic.ttf",
  7880. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedExtraLightItalic.ttf",
  7881. "fonts/NotoSerif/unhinted/ttf/NotoSerif-LightItalic.ttf",
  7882. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedExtraLight.ttf",
  7883. "fonts/NotoSerif/unhinted/ttf/NotoSerif-MediumItalic.ttf",
  7884. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedExtraBold.ttf",
  7885. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedSemiBoldItalic.ttf",
  7886. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedExtraLightItalic.ttf",
  7887. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedThin.ttf",
  7888. "fonts/NotoSerif/unhinted/ttf/NotoSerif-Medium.ttf",
  7889. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedLight.ttf",
  7890. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensed.ttf",
  7891. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedExtraLightItalic.ttf",
  7892. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedThinItalic.ttf",
  7893. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedSemiBoldItalic.ttf",
  7894. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedItalic.ttf",
  7895. "fonts/NotoSerif/unhinted/ttf/NotoSerif-Condensed.ttf",
  7896. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedExtraBoldItalic.ttf",
  7897. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedExtraBold.ttf",
  7898. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedBlack.ttf",
  7899. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedExtraBoldItalic.ttf",
  7900. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedMedium.ttf",
  7901. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedItalic.ttf",
  7902. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiBoldItalic.ttf",
  7903. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedBlackItalic.ttf",
  7904. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedBlack.ttf",
  7905. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedBold.ttf",
  7906. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedExtraBold.ttf",
  7907. "fonts/NotoSerif/unhinted/ttf/NotoSerif-Thin.ttf",
  7908. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedLightItalic.ttf",
  7909. "fonts/NotoSerif/unhinted/ttf/NotoSerif-Light.ttf",
  7910. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedLight.ttf",
  7911. "fonts/NotoSerif/unhinted/ttf/NotoSerif-Italic.ttf",
  7912. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedExtraLight.ttf",
  7913. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ThinItalic.ttf",
  7914. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedLight.ttf",
  7915. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedBoldItalic.ttf",
  7916. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraBold.ttf",
  7917. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedItalic.ttf",
  7918. "fonts/NotoSerif/unhinted/ttf/NotoSerif-CondensedBoldItalic.ttf",
  7919. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraLight.ttf",
  7920. "fonts/NotoSerif/unhinted/ttf/NotoSerif-SemiCondensedSemiBold.ttf",
  7921. "fonts/NotoSerif/unhinted/ttf/NotoSerif-ExtraCondensedMediumItalic.ttf",
  7922. "fonts/NotoSerif/unhinted/slim-variable-ttf/NotoSerif-Italic[wght].ttf",
  7923. "fonts/NotoSerif/unhinted/slim-variable-ttf/NotoSerif[wght].ttf",
  7924. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedSemiBold.ttf",
  7925. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraBoldItalic.ttf",
  7926. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedMediumItalic.ttf",
  7927. "fonts/NotoSerif/hinted/ttf/NotoSerif-Bold.ttf",
  7928. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiBold.ttf",
  7929. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedMedium.ttf",
  7930. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedThinItalic.ttf",
  7931. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedExtraBoldItalic.ttf",
  7932. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedBold.ttf",
  7933. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraLightItalic.ttf",
  7934. "fonts/NotoSerif/hinted/ttf/NotoSerif-BoldItalic.ttf",
  7935. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensed.ttf",
  7936. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedBlack.ttf",
  7937. "fonts/NotoSerif/hinted/ttf/NotoSerif-Black.ttf",
  7938. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedSemiBoldItalic.ttf",
  7939. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedLightItalic.ttf",
  7940. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedThin.ttf",
  7941. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedThin.ttf",
  7942. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedMedium.ttf",
  7943. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedMediumItalic.ttf",
  7944. "fonts/NotoSerif/hinted/ttf/NotoSerif-BlackItalic.ttf",
  7945. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedBoldItalic.ttf",
  7946. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedThinItalic.ttf",
  7947. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedSemiBold.ttf",
  7948. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedExtraLight.ttf",
  7949. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedLightItalic.ttf",
  7950. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedBlackItalic.ttf",
  7951. "fonts/NotoSerif/hinted/ttf/NotoSerif-Regular.ttf",
  7952. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedBold.ttf",
  7953. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedBlackItalic.ttf",
  7954. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedExtraLightItalic.ttf",
  7955. "fonts/NotoSerif/hinted/ttf/NotoSerif-LightItalic.ttf",
  7956. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedExtraLight.ttf",
  7957. "fonts/NotoSerif/hinted/ttf/NotoSerif-MediumItalic.ttf",
  7958. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedExtraBold.ttf",
  7959. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedSemiBoldItalic.ttf",
  7960. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedExtraLightItalic.ttf",
  7961. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedThin.ttf",
  7962. "fonts/NotoSerif/hinted/ttf/NotoSerif-Medium.ttf",
  7963. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedLight.ttf",
  7964. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensed.ttf",
  7965. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedExtraLightItalic.ttf",
  7966. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedThinItalic.ttf",
  7967. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedSemiBoldItalic.ttf",
  7968. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedItalic.ttf",
  7969. "fonts/NotoSerif/hinted/ttf/NotoSerif-Condensed.ttf",
  7970. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedExtraBoldItalic.ttf",
  7971. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedExtraBold.ttf",
  7972. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedBlack.ttf",
  7973. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedExtraBoldItalic.ttf",
  7974. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedMedium.ttf",
  7975. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedItalic.ttf",
  7976. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiBoldItalic.ttf",
  7977. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedBlackItalic.ttf",
  7978. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedBlack.ttf",
  7979. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedBold.ttf",
  7980. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedExtraBold.ttf",
  7981. "fonts/NotoSerif/hinted/ttf/NotoSerif-Thin.ttf",
  7982. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedLightItalic.ttf",
  7983. "fonts/NotoSerif/hinted/ttf/NotoSerif-Light.ttf",
  7984. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedLight.ttf",
  7985. "fonts/NotoSerif/hinted/ttf/NotoSerif-Italic.ttf",
  7986. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedExtraLight.ttf",
  7987. "fonts/NotoSerif/hinted/ttf/NotoSerif-ThinItalic.ttf",
  7988. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedLight.ttf",
  7989. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedBoldItalic.ttf",
  7990. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraBold.ttf",
  7991. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedItalic.ttf",
  7992. "fonts/NotoSerif/hinted/ttf/NotoSerif-CondensedBoldItalic.ttf",
  7993. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraLight.ttf",
  7994. "fonts/NotoSerif/hinted/ttf/NotoSerif-SemiCondensedSemiBold.ttf",
  7995. "fonts/NotoSerif/hinted/ttf/NotoSerif-ExtraCondensedMediumItalic.ttf",
  7996. "fonts/NotoSerif/googlefonts/variable-ttf/NotoSerif-Italic[wdth,wght].ttf",
  7997. "fonts/NotoSerif/googlefonts/variable-ttf/NotoSerif[wdth,wght].ttf"
  7998. ],
  7999. "latest_release": {
  8000. "notes": "Noto Serif v2.015\n\nThis release:\n\n* Removes some errant glyphs (#405)\n* Adds the figurespace to the onum feature (#39)\n* Fixes the use of Iota in components (#497)\n* Removes kinks in `two` and other glyphs.\n",
  8001. "published": "2024-11-20T17:21:25+00:00",
  8002. "url": "https://github.com/notofonts/latin-greek-cyrillic/releases/tag/NotoSerif-v2.015",
  8003. "version": "v2.015"
  8004. }
  8005. },
  8006. "Noto Serif Display": {
  8007. "files": [
  8008. "fonts/NotoSerifDisplay/googlefonts/variable-ttf/NotoSerifDisplay-Italic[wdth,wght].ttf",
  8009. "fonts/NotoSerifDisplay/googlefonts/variable-ttf/NotoSerifDisplay[wdth,wght].ttf",
  8010. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-BlackItalic.ttf",
  8011. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-Light.ttf",
  8012. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-ExtraLightItalic.ttf",
  8013. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-SemiBold.ttf",
  8014. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-Bold.ttf",
  8015. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-SemiBoldItalic.ttf",
  8016. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-ThinItalic.ttf",
  8017. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-MediumItalic.ttf",
  8018. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-ExtraBold.ttf",
  8019. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-Black.ttf",
  8020. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-Thin.ttf",
  8021. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-BoldItalic.ttf",
  8022. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-Medium.ttf",
  8023. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-ExtraLight.ttf",
  8024. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-LightItalic.ttf",
  8025. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-ExtraBoldItalic.ttf",
  8026. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-Regular.ttf",
  8027. "fonts/NotoSerifDisplay/googlefonts/ttf/NotoSerifDisplay-Italic.ttf",
  8028. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedBlack.ttf",
  8029. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedExtraBoldItalic.ttf",
  8030. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedExtraBold.ttf",
  8031. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedThinItalic.ttf",
  8032. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-BlackItalic.ttf",
  8033. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedExtraBoldItalic.ttf",
  8034. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-Light.ttf",
  8035. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedMediumItalic.ttf",
  8036. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraLightItalic.ttf",
  8037. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedExtraLightItalic.ttf",
  8038. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiBold.ttf",
  8039. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedExtraLight.ttf",
  8040. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedBlackItalic.ttf",
  8041. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedLight.ttf",
  8042. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedLight.ttf",
  8043. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedExtraLightItalic.ttf",
  8044. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedExtraBoldItalic.ttf",
  8045. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-Bold.ttf",
  8046. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedSemiBold.ttf",
  8047. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedItalic.ttf",
  8048. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedBoldItalic.ttf",
  8049. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedBlack.ttf",
  8050. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedItalic.ttf",
  8051. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedMediumItalic.ttf",
  8052. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedMediumItalic.ttf",
  8053. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedSemiBold.ttf",
  8054. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedLightItalic.ttf",
  8055. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedThin.ttf",
  8056. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiBoldItalic.ttf",
  8057. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ThinItalic.ttf",
  8058. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedBold.ttf",
  8059. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-MediumItalic.ttf",
  8060. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraBold.ttf",
  8061. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedExtraLight.ttf",
  8062. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-Black.ttf",
  8063. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-Thin.ttf",
  8064. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedBlack.ttf",
  8065. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-BoldItalic.ttf",
  8066. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-Medium.ttf",
  8067. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedBlackItalic.ttf",
  8068. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedBlackItalic.ttf",
  8069. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedExtraBold.ttf",
  8070. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraLight.ttf",
  8071. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedBold.ttf",
  8072. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedExtraBold.ttf",
  8073. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedBoldItalic.ttf",
  8074. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedThinItalic.ttf",
  8075. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedItalic.ttf",
  8076. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedLightItalic.ttf",
  8077. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedSemiBoldItalic.ttf",
  8078. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedThin.ttf",
  8079. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedExtraLightItalic.ttf",
  8080. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedLightItalic.ttf",
  8081. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedLight.ttf",
  8082. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-LightItalic.ttf",
  8083. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedMedium.ttf",
  8084. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraBoldItalic.ttf",
  8085. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-Regular.ttf",
  8086. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedSemiBold.ttf",
  8087. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-Condensed.ttf",
  8088. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedBoldItalic.ttf",
  8089. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedThin.ttf",
  8090. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensed.ttf",
  8091. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedSemiBoldItalic.ttf",
  8092. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedBold.ttf",
  8093. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedMedium.ttf",
  8094. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensed.ttf",
  8095. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-Italic.ttf",
  8096. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedMedium.ttf",
  8097. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-CondensedSemiBoldItalic.ttf",
  8098. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-ExtraCondensedThinItalic.ttf",
  8099. "fonts/NotoSerifDisplay/hinted/ttf/NotoSerifDisplay-SemiCondensedExtraLight.ttf",
  8100. "fonts/NotoSerifDisplay/unhinted/variable-ttf/NotoSerifDisplay-Italic[wdth,wght].ttf",
  8101. "fonts/NotoSerifDisplay/unhinted/variable-ttf/NotoSerifDisplay[wdth,wght].ttf",
  8102. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedMedium.otf",
  8103. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-Italic.otf",
  8104. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-Regular.otf",
  8105. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedBlackItalic.otf",
  8106. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedExtraLight.otf",
  8107. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedBlackItalic.otf",
  8108. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-BoldItalic.otf",
  8109. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedSemiBold.otf",
  8110. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedLight.otf",
  8111. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedBoldItalic.otf",
  8112. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraLightItalic.otf",
  8113. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ThinItalic.otf",
  8114. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-Light.otf",
  8115. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedMediumItalic.otf",
  8116. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedExtraLightItalic.otf",
  8117. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedExtraLight.otf",
  8118. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedMediumItalic.otf",
  8119. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedExtraLightItalic.otf",
  8120. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedSemiBoldItalic.otf",
  8121. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedLight.otf",
  8122. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedSemiBoldItalic.otf",
  8123. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedExtraLightItalic.otf",
  8124. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedThin.otf",
  8125. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedMediumItalic.otf",
  8126. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedThin.otf",
  8127. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedExtraBoldItalic.otf",
  8128. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedItalic.otf",
  8129. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedThinItalic.otf",
  8130. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensed.otf",
  8131. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraBoldItalic.otf",
  8132. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensed.otf",
  8133. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedBlack.otf",
  8134. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedSemiBold.otf",
  8135. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedSemiBold.otf",
  8136. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedMedium.otf",
  8137. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedThinItalic.otf",
  8138. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-Thin.otf",
  8139. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedThinItalic.otf",
  8140. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-Medium.otf",
  8141. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraLight.otf",
  8142. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedMedium.otf",
  8143. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedBold.otf",
  8144. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedExtraBoldItalic.otf",
  8145. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedBlackItalic.otf",
  8146. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedSemiBoldItalic.otf",
  8147. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-Black.otf",
  8148. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedBlack.otf",
  8149. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedExtraBoldItalic.otf",
  8150. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedBold.otf",
  8151. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedExtraBold.otf",
  8152. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedItalic.otf",
  8153. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedItalic.otf",
  8154. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedExtraLight.otf",
  8155. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiBold.otf",
  8156. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-Condensed.otf",
  8157. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-MediumItalic.otf",
  8158. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraBold.otf",
  8159. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedThin.otf",
  8160. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedBoldItalic.otf",
  8161. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-LightItalic.otf",
  8162. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiBoldItalic.otf",
  8163. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-BlackItalic.otf",
  8164. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedBlack.otf",
  8165. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedExtraBold.otf",
  8166. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedLightItalic.otf",
  8167. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedLightItalic.otf",
  8168. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-Bold.otf",
  8169. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedExtraBold.otf",
  8170. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedLight.otf",
  8171. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-CondensedLightItalic.otf",
  8172. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-ExtraCondensedBold.otf",
  8173. "fonts/NotoSerifDisplay/unhinted/otf/NotoSerifDisplay-SemiCondensedBoldItalic.otf",
  8174. "fonts/NotoSerifDisplay/unhinted/slim-variable-ttf/NotoSerifDisplay[wght].ttf",
  8175. "fonts/NotoSerifDisplay/unhinted/slim-variable-ttf/NotoSerifDisplay-Italic[wght].ttf",
  8176. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedBlack.ttf",
  8177. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedExtraBoldItalic.ttf",
  8178. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedExtraBold.ttf",
  8179. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedThinItalic.ttf",
  8180. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-BlackItalic.ttf",
  8181. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedExtraBoldItalic.ttf",
  8182. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-Light.ttf",
  8183. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedMediumItalic.ttf",
  8184. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraLightItalic.ttf",
  8185. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedExtraLightItalic.ttf",
  8186. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiBold.ttf",
  8187. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedExtraLight.ttf",
  8188. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedBlackItalic.ttf",
  8189. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedLight.ttf",
  8190. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedLight.ttf",
  8191. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedExtraLightItalic.ttf",
  8192. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedExtraBoldItalic.ttf",
  8193. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-Bold.ttf",
  8194. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedSemiBold.ttf",
  8195. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedItalic.ttf",
  8196. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedBoldItalic.ttf",
  8197. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedBlack.ttf",
  8198. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedItalic.ttf",
  8199. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedMediumItalic.ttf",
  8200. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedMediumItalic.ttf",
  8201. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedSemiBold.ttf",
  8202. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedLightItalic.ttf",
  8203. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedThin.ttf",
  8204. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiBoldItalic.ttf",
  8205. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ThinItalic.ttf",
  8206. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedBold.ttf",
  8207. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-MediumItalic.ttf",
  8208. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraBold.ttf",
  8209. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedExtraLight.ttf",
  8210. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-Black.ttf",
  8211. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-Thin.ttf",
  8212. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedBlack.ttf",
  8213. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-BoldItalic.ttf",
  8214. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-Medium.ttf",
  8215. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedBlackItalic.ttf",
  8216. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedBlackItalic.ttf",
  8217. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedExtraBold.ttf",
  8218. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraLight.ttf",
  8219. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedBold.ttf",
  8220. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedExtraBold.ttf",
  8221. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedBoldItalic.ttf",
  8222. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedThinItalic.ttf",
  8223. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedItalic.ttf",
  8224. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedLightItalic.ttf",
  8225. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedSemiBoldItalic.ttf",
  8226. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedThin.ttf",
  8227. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedExtraLightItalic.ttf",
  8228. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedLightItalic.ttf",
  8229. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedLight.ttf",
  8230. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-LightItalic.ttf",
  8231. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedMedium.ttf",
  8232. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraBoldItalic.ttf",
  8233. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-Regular.ttf",
  8234. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedSemiBold.ttf",
  8235. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-Condensed.ttf",
  8236. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedBoldItalic.ttf",
  8237. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedThin.ttf",
  8238. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensed.ttf",
  8239. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedSemiBoldItalic.ttf",
  8240. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedBold.ttf",
  8241. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedMedium.ttf",
  8242. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensed.ttf",
  8243. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-Italic.ttf",
  8244. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedMedium.ttf",
  8245. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-CondensedSemiBoldItalic.ttf",
  8246. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-ExtraCondensedThinItalic.ttf",
  8247. "fonts/NotoSerifDisplay/unhinted/ttf/NotoSerifDisplay-SemiCondensedExtraLight.ttf"
  8248. ],
  8249. "latest_release": {
  8250. "notes": "Noto Serif Display v2.009\n\nThis is an administrative release. No changes have been made to any glyphs.\n",
  8251. "published": "2022-07-18T16:44:55",
  8252. "url": "https://github.com/notofonts/latin-greek-cyrillic/releases/tag/NotoSerifDisplay-v2.009",
  8253. "version": "v2.009"
  8254. }
  8255. }
  8256. },
  8257. "known_releases": [
  8258. "NotoSerifDisplay-v2.009",
  8259. "NotoSerif-v2.009",
  8260. "NotoSansMono-v2.009",
  8261. "NotoSansMono-v2.010",
  8262. "NotoSans-v2.010",
  8263. "NotoSans-v2.011",
  8264. "NotoSansMono-v2.011",
  8265. "NotoSerif-v2.010",
  8266. "NotoSansMono-v2.012",
  8267. "NotoSerif-v2.011",
  8268. "NotoSansMono-v2.013",
  8269. "NotoSerif-v2.012",
  8270. "NotoSans-v2.012",
  8271. "NotoSans-v2.013",
  8272. "NotoSerif-v2.013",
  8273. "NotoSansMono-v2.014",
  8274. "NotoSans-v2.014",
  8275. "NotoSerif-v2.014",
  8276. "NotoSerif-v2.015",
  8277. "NotoSans-v2.015"
  8278. ]
  8279. },
  8280. "lepcha": {
  8281. "families": {
  8282. "Noto Sans Lepcha": {
  8283. "files": [
  8284. "fonts/NotoSansLepcha/hinted/ttf/NotoSansLepcha-Regular.ttf",
  8285. "fonts/NotoSansLepcha/unhinted/otf/NotoSansLepcha-Regular.otf",
  8286. "fonts/NotoSansLepcha/unhinted/ttf/NotoSansLepcha-Regular.ttf",
  8287. "fonts/NotoSansLepcha/full/otf/NotoSansLepcha-Regular.otf",
  8288. "fonts/NotoSansLepcha/full/ttf/NotoSansLepcha-Regular.ttf",
  8289. "fonts/NotoSansLepcha/googlefonts/ttf/NotoSansLepcha-Regular.ttf"
  8290. ],
  8291. "latest_release": {
  8292. "notes": "Noto Sans Lepcha v2.006\n\nThis release fixes a number of mark attachment issues, particularly on OS X.\n",
  8293. "published": "2022-10-24T10:27:51",
  8294. "url": "https://github.com/notofonts/lepcha/releases/tag/NotoSansLepcha-v2.006",
  8295. "version": "v2.006"
  8296. }
  8297. }
  8298. },
  8299. "known_releases": [
  8300. "NotoSansLepcha-v2.004",
  8301. "NotoSansLepcha-v2.005",
  8302. "NotoSansLepcha-v2.006"
  8303. ]
  8304. },
  8305. "limbu": {
  8306. "families": {
  8307. "Noto Sans Limbu": {
  8308. "files": [
  8309. "fonts/NotoSansLimbu/googlefonts/ttf/NotoSansLimbu-Regular.ttf",
  8310. "fonts/NotoSansLimbu/full/otf/NotoSansLimbu-Regular.otf",
  8311. "fonts/NotoSansLimbu/full/ttf/NotoSansLimbu-Regular.ttf",
  8312. "fonts/NotoSansLimbu/hinted/ttf/NotoSansLimbu-Regular.ttf",
  8313. "fonts/NotoSansLimbu/unhinted/otf/NotoSansLimbu-Regular.otf",
  8314. "fonts/NotoSansLimbu/unhinted/ttf/NotoSansLimbu-Regular.ttf"
  8315. ],
  8316. "latest_release": {
  8317. "notes": "Noto Sans Limbu v2.005\n\nThis release:\n\n* Anchors vowels to base consonants after medial consonants (#1)\n* Avoids overlaps with the vowel sign I (#2)\n",
  8318. "published": "2024-06-06T13:12:23+00:00",
  8319. "url": "https://github.com/notofonts/limbu/releases/tag/NotoSansLimbu-v2.005",
  8320. "version": "v2.005"
  8321. }
  8322. }
  8323. },
  8324. "known_releases": [
  8325. "NotoSansLimbu-v2.002",
  8326. "NotoSansLimbu-v2.003",
  8327. "NotoSansLimbu-v2.004",
  8328. "NotoSansLimbu-v2.005"
  8329. ]
  8330. },
  8331. "linear-a": {
  8332. "families": {
  8333. "Noto Sans Linear A": {
  8334. "files": [
  8335. "fonts/NotoSansLinearA/googlefonts/ttf/NotoSansLinearA-Regular.ttf",
  8336. "fonts/NotoSansLinearA/full/otf/NotoSansLinearA-Regular.otf",
  8337. "fonts/NotoSansLinearA/full/ttf/NotoSansLinearA-Regular.ttf",
  8338. "fonts/NotoSansLinearA/hinted/ttf/NotoSansLinearA-Regular.ttf",
  8339. "fonts/NotoSansLinearA/unhinted/otf/NotoSansLinearA-Regular.otf",
  8340. "fonts/NotoSansLinearA/unhinted/ttf/NotoSansLinearA-Regular.ttf",
  8341. "fonts/NotoSansLinearA/unhinted/slim-otf/NotoSansLinearA-Regular.otf"
  8342. ],
  8343. "latest_release": {
  8344. "notes": "Production ready fonts",
  8345. "published": "2023-05-24T14:38:50",
  8346. "url": "https://github.com/notofonts/linear-a/releases/tag/NotoSansLinearA-v2.002",
  8347. "version": "v2.002"
  8348. }
  8349. }
  8350. },
  8351. "known_releases": [
  8352. "NotoSansLinearA-v2.001",
  8353. "NotoSansLinearA-v2.002"
  8354. ]
  8355. },
  8356. "linear-b": {
  8357. "families": {
  8358. "Noto Sans Linear B": {
  8359. "files": [
  8360. "fonts/NotoSansLinearB/full/ttf/NotoSansLinearB-Regular.ttf",
  8361. "fonts/NotoSansLinearB/full/otf/NotoSansLinearB-Regular.otf",
  8362. "fonts/NotoSansLinearB/googlefonts/ttf/NotoSansLinearB-Regular.ttf",
  8363. "fonts/NotoSansLinearB/unhinted/ttf/NotoSansLinearB-Regular.ttf",
  8364. "fonts/NotoSansLinearB/unhinted/otf/NotoSansLinearB-Regular.otf",
  8365. "fonts/NotoSansLinearB/hinted/ttf/NotoSansLinearB-Regular.ttf"
  8366. ],
  8367. "latest_release": {
  8368. "notes": "Noto Sans Linear B v2.002\n\nThis release fixes a number of fontbakery fails.\n",
  8369. "published": "2022-09-19T08:55:36",
  8370. "url": "https://github.com/notofonts/linear-b/releases/tag/NotoSansLinearB-v2.002",
  8371. "version": "v2.002"
  8372. }
  8373. }
  8374. },
  8375. "known_releases": [
  8376. "NotoSansLinearB-v2.002"
  8377. ]
  8378. },
  8379. "lisu": {
  8380. "families": {
  8381. "Noto Sans Lisu": {
  8382. "files": [
  8383. "fonts/NotoSansLisu/googlefonts/variable-ttf/NotoSansLisu[wght].ttf",
  8384. "fonts/NotoSansLisu/googlefonts/ttf/NotoSansLisu-Regular.ttf",
  8385. "fonts/NotoSansLisu/googlefonts/ttf/NotoSansLisu-Bold.ttf",
  8386. "fonts/NotoSansLisu/googlefonts/ttf/NotoSansLisu-SemiBold.ttf",
  8387. "fonts/NotoSansLisu/googlefonts/ttf/NotoSansLisu-Medium.ttf",
  8388. "fonts/NotoSansLisu/hinted/ttf/NotoSansLisu-Regular.ttf",
  8389. "fonts/NotoSansLisu/hinted/ttf/NotoSansLisu-Bold.ttf",
  8390. "fonts/NotoSansLisu/hinted/ttf/NotoSansLisu-SemiBold.ttf",
  8391. "fonts/NotoSansLisu/hinted/ttf/NotoSansLisu-Medium.ttf",
  8392. "fonts/NotoSansLisu/unhinted/variable-ttf/NotoSansLisu[wght].ttf",
  8393. "fonts/NotoSansLisu/unhinted/otf/NotoSansLisu-SemiBold.otf",
  8394. "fonts/NotoSansLisu/unhinted/otf/NotoSansLisu-Regular.otf",
  8395. "fonts/NotoSansLisu/unhinted/otf/NotoSansLisu-Bold.otf",
  8396. "fonts/NotoSansLisu/unhinted/otf/NotoSansLisu-Medium.otf",
  8397. "fonts/NotoSansLisu/unhinted/slim-variable-ttf/NotoSansLisu[wght].ttf",
  8398. "fonts/NotoSansLisu/unhinted/ttf/NotoSansLisu-Regular.ttf",
  8399. "fonts/NotoSansLisu/unhinted/ttf/NotoSansLisu-Bold.ttf",
  8400. "fonts/NotoSansLisu/unhinted/ttf/NotoSansLisu-SemiBold.ttf",
  8401. "fonts/NotoSansLisu/unhinted/ttf/NotoSansLisu-Medium.ttf",
  8402. "fonts/NotoSansLisu/full/variable-ttf/NotoSansLisu[wght].ttf",
  8403. "fonts/NotoSansLisu/full/otf/NotoSansLisu-SemiBold.otf",
  8404. "fonts/NotoSansLisu/full/otf/NotoSansLisu-Regular.otf",
  8405. "fonts/NotoSansLisu/full/otf/NotoSansLisu-Bold.otf",
  8406. "fonts/NotoSansLisu/full/otf/NotoSansLisu-Medium.otf",
  8407. "fonts/NotoSansLisu/full/slim-variable-ttf/NotoSansLisu[wght].ttf",
  8408. "fonts/NotoSansLisu/full/ttf/NotoSansLisu-Regular.ttf",
  8409. "fonts/NotoSansLisu/full/ttf/NotoSansLisu-Bold.ttf",
  8410. "fonts/NotoSansLisu/full/ttf/NotoSansLisu-SemiBold.ttf",
  8411. "fonts/NotoSansLisu/full/ttf/NotoSansLisu-Medium.ttf"
  8412. ],
  8413. "latest_release": {
  8414. "notes": "Noto Sans Lisu v2.102\n\nThis is an administrative release.\n",
  8415. "published": "2022-07-13T11:56:31",
  8416. "url": "https://github.com/notofonts/lisu/releases/tag/NotoSansLisu-v2.102",
  8417. "version": "v2.102"
  8418. }
  8419. }
  8420. },
  8421. "known_releases": [
  8422. "NotoSansLisu-v2.102"
  8423. ]
  8424. },
  8425. "lycian": {
  8426. "families": {
  8427. "Noto Sans Lycian": {
  8428. "files": [
  8429. "fonts/NotoSansLycian/hinted/ttf/NotoSansLycian-Regular.ttf",
  8430. "fonts/NotoSansLycian/googlefonts/ttf/NotoSansLycian-Regular.ttf",
  8431. "fonts/NotoSansLycian/full/ttf/NotoSansLycian-Regular.ttf",
  8432. "fonts/NotoSansLycian/full/otf/NotoSansLycian-Regular.otf",
  8433. "fonts/NotoSansLycian/unhinted/ttf/NotoSansLycian-Regular.ttf",
  8434. "fonts/NotoSansLycian/unhinted/slim-otf/NotoSansLycian-Regular.otf",
  8435. "fonts/NotoSansLycian/unhinted/otf/NotoSansLycian-Regular.otf"
  8436. ],
  8437. "latest_release": {
  8438. "notes": "Noto Sans Lycian v2.002\n\nThis release adds the two-dot punctuation (U+205A) to full builds\n",
  8439. "published": "2023-07-27T11:37:48",
  8440. "url": "https://github.com/notofonts/lycian/releases/tag/NotoSansLycian-v2.002",
  8441. "version": "v2.002"
  8442. }
  8443. }
  8444. },
  8445. "known_releases": [
  8446. "NotoSansLycian-v2.001",
  8447. "NotoSansLycian-v2.002"
  8448. ]
  8449. },
  8450. "lydian": {
  8451. "families": {
  8452. "Noto Sans Lydian": {
  8453. "files": [
  8454. "fonts/NotoSansLydian/unhinted/ttf/NotoSansLydian-Regular.ttf",
  8455. "fonts/NotoSansLydian/unhinted/otf/NotoSansLydian-Regular.otf",
  8456. "fonts/NotoSansLydian/full/ttf/NotoSansLydian-Regular.ttf",
  8457. "fonts/NotoSansLydian/full/otf/NotoSansLydian-Regular.otf",
  8458. "fonts/NotoSansLydian/hinted/ttf/NotoSansLydian-Regular.ttf",
  8459. "fonts/NotoSansLydian/googlefonts/ttf/NotoSansLydian-Regular.ttf"
  8460. ],
  8461. "latest_release": {
  8462. "notes": "Noto Sans Lydian v2.002\n\nThis release adds a combining dot below glyph (#1).\n",
  8463. "published": "2023-09-25T13:35:15",
  8464. "url": "https://github.com/notofonts/lydian/releases/tag/NotoSansLydian-v2.002",
  8465. "version": "v2.002"
  8466. }
  8467. }
  8468. },
  8469. "known_releases": [
  8470. "NotoSansLydian-v2.001",
  8471. "NotoSansLydian-v2.002"
  8472. ]
  8473. },
  8474. "mahajani": {
  8475. "families": {
  8476. "Noto Sans Mahajani": {
  8477. "files": [
  8478. "fonts/NotoSansMahajani/full/ttf/NotoSansMahajani-Regular.ttf",
  8479. "fonts/NotoSansMahajani/full/otf/NotoSansMahajani-Regular.otf",
  8480. "fonts/NotoSansMahajani/googlefonts/ttf/NotoSansMahajani-Regular.ttf",
  8481. "fonts/NotoSansMahajani/unhinted/ttf/NotoSansMahajani-Regular.ttf",
  8482. "fonts/NotoSansMahajani/unhinted/otf/NotoSansMahajani-Regular.otf",
  8483. "fonts/NotoSansMahajani/hinted/ttf/NotoSansMahajani-Regular.ttf"
  8484. ],
  8485. "latest_release": {
  8486. "notes": "Noto Sans Mahajani v2.003\n\nThis release fixes a number of fontbakery fails.\n",
  8487. "published": "2022-09-19T08:58:03",
  8488. "url": "https://github.com/notofonts/mahajani/releases/tag/NotoSansMahajani-v2.003",
  8489. "version": "v2.003"
  8490. }
  8491. }
  8492. },
  8493. "known_releases": [
  8494. "NotoSansMahajani-v2.003"
  8495. ]
  8496. },
  8497. "makasar": {
  8498. "families": {
  8499. "Noto Serif Makasar": {
  8500. "files": [
  8501. "fonts/NotoSerifMakasar/hinted/ttf/NotoSerifMakasar-Regular.ttf",
  8502. "fonts/NotoSerifMakasar/googlefonts/ttf/NotoSerifMakasar-Regular.ttf",
  8503. "fonts/NotoSerifMakasar/unhinted/ttf/NotoSerifMakasar-Regular.ttf",
  8504. "fonts/NotoSerifMakasar/unhinted/otf/NotoSerifMakasar-Regular.otf",
  8505. "fonts/NotoSerifMakasar/full/ttf/NotoSerifMakasar-Regular.ttf",
  8506. "fonts/NotoSerifMakasar/full/otf/NotoSerifMakasar-Regular.otf"
  8507. ],
  8508. "latest_release": {
  8509. "notes": "Noto Serif Makasar v1.001\n\nThis release fixes a number of fontbakery fails.\n",
  8510. "published": "2022-10-11T20:15:50",
  8511. "url": "https://github.com/notofonts/makasar/releases/tag/NotoSerifMakasar-v1.001",
  8512. "version": "v1.001"
  8513. }
  8514. }
  8515. },
  8516. "known_releases": [
  8517. "NotoSerifMakasar-v1.001"
  8518. ]
  8519. },
  8520. "malayalam": {
  8521. "families": {
  8522. "Noto Sans Malayalam": {
  8523. "files": [
  8524. "fonts/NotoSansMalayalam/full/slim-variable-ttf/NotoSansMalayalam[wght].ttf",
  8525. "fonts/NotoSansMalayalam/full/slim-variable-ttf/NotoSansMalayalam-UI-VF.ttf",
  8526. "fonts/NotoSansMalayalam/full/variable-ttf/NotoSansMalayalam[wdth,wght].ttf",
  8527. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraBold.otf",
  8528. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensedExtraBold.otf",
  8529. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensedBlack.otf",
  8530. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensedMedium.otf",
  8531. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraLight.otf",
  8532. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensed.otf",
  8533. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-Black.otf",
  8534. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensedLight.otf",
  8535. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensedSemiBold.otf",
  8536. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraLight.otf",
  8537. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-CondensedBold.otf",
  8538. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensedThin.otf",
  8539. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensedExtraLight.otf",
  8540. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensedMedium.otf",
  8541. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-CondensedSemiBold.otf",
  8542. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-Medium.otf",
  8543. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-Thin.otf",
  8544. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensedBold.otf",
  8545. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensed.otf",
  8546. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-CondensedThin.otf",
  8547. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-CondensedMedium.otf",
  8548. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensedThin.otf",
  8549. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-CondensedThin.otf",
  8550. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensedExtraLight.otf",
  8551. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensedSemiBold.otf",
  8552. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-Black.otf",
  8553. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensedMedium.otf",
  8554. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensedSemiBold.otf",
  8555. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensedThin.otf",
  8556. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiBold.otf",
  8557. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensedLight.otf",
  8558. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-Light.otf",
  8559. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensedSemiBold.otf",
  8560. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-CondensedSemiBold.otf",
  8561. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensedExtraBold.otf",
  8562. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-CondensedBold.otf",
  8563. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensed.otf",
  8564. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-Bold.otf",
  8565. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensedExtraLight.otf",
  8566. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensedThin.otf",
  8567. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensedBlack.otf",
  8568. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-CondensedExtraLight.otf",
  8569. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-CondensedExtraBold.otf",
  8570. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-Condensed.otf",
  8571. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-CondensedLight.otf",
  8572. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-Light.otf",
  8573. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-CondensedExtraLight.otf",
  8574. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensedBlack.otf",
  8575. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensedLight.otf",
  8576. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-Medium.otf",
  8577. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensedBlack.otf",
  8578. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-CondensedMedium.otf",
  8579. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-CondensedBlack.otf",
  8580. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-Thin.otf",
  8581. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensedBold.otf",
  8582. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensedExtraLight.otf",
  8583. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensed.otf",
  8584. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-Regular.otf",
  8585. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensedLight.otf",
  8586. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-ExtraCondensedBold.otf",
  8587. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-Bold.otf",
  8588. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-SemiCondensedBold.otf",
  8589. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-CondensedLight.otf",
  8590. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraCondensedExtraBold.otf",
  8591. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-CondensedBlack.otf",
  8592. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-ExtraBold.otf",
  8593. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensedExtraBold.otf",
  8594. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalamUI-CondensedExtraBold.otf",
  8595. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-Regular.otf",
  8596. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiCondensedMedium.otf",
  8597. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-SemiBold.otf",
  8598. "fonts/NotoSansMalayalam/full/otf/NotoSansMalayalam-Condensed.otf",
  8599. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedBold.ttf",
  8600. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Condensed.ttf",
  8601. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Black.ttf",
  8602. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedSemiBold.ttf",
  8603. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedBold.ttf",
  8604. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedExtraBold.ttf",
  8605. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Bold.ttf",
  8606. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedBlack.ttf",
  8607. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedThin.ttf",
  8608. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedExtraBold.ttf",
  8609. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedBlack.ttf",
  8610. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedBold.ttf",
  8611. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Bold.ttf",
  8612. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedMedium.ttf",
  8613. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Regular.ttf",
  8614. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedExtraBold.ttf",
  8615. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Regular.ttf",
  8616. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedExtraLight.ttf",
  8617. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedExtraBold.ttf",
  8618. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiBold.ttf",
  8619. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedSemiBold.ttf",
  8620. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedLight.ttf",
  8621. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedSemiBold.ttf",
  8622. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedMedium.ttf",
  8623. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Condensed.ttf",
  8624. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedBold.ttf",
  8625. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedMedium.ttf",
  8626. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiBold.ttf",
  8627. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraBold.ttf",
  8628. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedThin.ttf",
  8629. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedBold.ttf",
  8630. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedSemiBold.ttf",
  8631. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraLight.ttf",
  8632. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedExtraLight.ttf",
  8633. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Black.ttf",
  8634. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedThin.ttf",
  8635. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedExtraLight.ttf",
  8636. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedLight.ttf",
  8637. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedBold.ttf",
  8638. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedLight.ttf",
  8639. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Medium.ttf",
  8640. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensed.ttf",
  8641. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensed.ttf",
  8642. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedSemiBold.ttf",
  8643. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedBlack.ttf",
  8644. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedMedium.ttf",
  8645. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedExtraBold.ttf",
  8646. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedBlack.ttf",
  8647. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedBlack.ttf",
  8648. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Light.ttf",
  8649. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Thin.ttf",
  8650. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedExtraLight.ttf",
  8651. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-SemiCondensedExtraLight.ttf",
  8652. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Medium.ttf",
  8653. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedLight.ttf",
  8654. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensedMedium.ttf",
  8655. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraLight.ttf",
  8656. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraBold.ttf",
  8657. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-ExtraCondensed.ttf",
  8658. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-Thin.ttf",
  8659. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedExtraBold.ttf",
  8660. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalamUI-CondensedThin.ttf",
  8661. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensed.ttf",
  8662. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedBlack.ttf",
  8663. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-SemiCondensedSemiBold.ttf",
  8664. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-Light.ttf",
  8665. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedLight.ttf",
  8666. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedExtraLight.ttf",
  8667. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedMedium.ttf",
  8668. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-CondensedThin.ttf",
  8669. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedThin.ttf",
  8670. "fonts/NotoSansMalayalam/full/ttf/NotoSansMalayalam-ExtraCondensedLight.ttf",
  8671. "fonts/NotoSansMalayalam/googlefonts/variable-ttf/NotoSansMalayalam[wdth,wght].ttf",
  8672. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-Black.ttf",
  8673. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-Bold.ttf",
  8674. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-Bold.ttf",
  8675. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-Regular.ttf",
  8676. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-Regular.ttf",
  8677. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-SemiBold.ttf",
  8678. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-SemiBold.ttf",
  8679. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-ExtraBold.ttf",
  8680. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-ExtraLight.ttf",
  8681. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-Black.ttf",
  8682. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-Medium.ttf",
  8683. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-Light.ttf",
  8684. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-Thin.ttf",
  8685. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-Medium.ttf",
  8686. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-ExtraLight.ttf",
  8687. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-ExtraBold.ttf",
  8688. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalamUI-Thin.ttf",
  8689. "fonts/NotoSansMalayalam/googlefonts/ttf/NotoSansMalayalam-Light.ttf",
  8690. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensedBold.ttf",
  8691. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-Condensed.ttf",
  8692. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-Black.ttf",
  8693. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensedSemiBold.ttf",
  8694. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensedBold.ttf",
  8695. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensedExtraBold.ttf",
  8696. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-Bold.ttf",
  8697. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensedBlack.ttf",
  8698. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensedThin.ttf",
  8699. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensedExtraBold.ttf",
  8700. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensedBlack.ttf",
  8701. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-CondensedBold.ttf",
  8702. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-Bold.ttf",
  8703. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensedMedium.ttf",
  8704. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-Regular.ttf",
  8705. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensedExtraBold.ttf",
  8706. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-Regular.ttf",
  8707. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-CondensedExtraLight.ttf",
  8708. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-CondensedExtraBold.ttf",
  8709. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiBold.ttf",
  8710. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensedSemiBold.ttf",
  8711. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensedLight.ttf",
  8712. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-CondensedSemiBold.ttf",
  8713. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-CondensedMedium.ttf",
  8714. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-Condensed.ttf",
  8715. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensedBold.ttf",
  8716. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensedMedium.ttf",
  8717. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiBold.ttf",
  8718. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraBold.ttf",
  8719. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensedThin.ttf",
  8720. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-CondensedBold.ttf",
  8721. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensedSemiBold.ttf",
  8722. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraLight.ttf",
  8723. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensedExtraLight.ttf",
  8724. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-Black.ttf",
  8725. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensedThin.ttf",
  8726. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensedExtraLight.ttf",
  8727. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-CondensedLight.ttf",
  8728. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensedBold.ttf",
  8729. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensedLight.ttf",
  8730. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-Medium.ttf",
  8731. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensed.ttf",
  8732. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensed.ttf",
  8733. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-CondensedSemiBold.ttf",
  8734. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-CondensedBlack.ttf",
  8735. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensedMedium.ttf",
  8736. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensedExtraBold.ttf",
  8737. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensedBlack.ttf",
  8738. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-CondensedBlack.ttf",
  8739. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-Light.ttf",
  8740. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-Thin.ttf",
  8741. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensedExtraLight.ttf",
  8742. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-SemiCondensedExtraLight.ttf",
  8743. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-Medium.ttf",
  8744. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensedLight.ttf",
  8745. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensedMedium.ttf",
  8746. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraLight.ttf",
  8747. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraBold.ttf",
  8748. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-ExtraCondensed.ttf",
  8749. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-Thin.ttf",
  8750. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-CondensedExtraBold.ttf",
  8751. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalamUI-CondensedThin.ttf",
  8752. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensed.ttf",
  8753. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensedBlack.ttf",
  8754. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-SemiCondensedSemiBold.ttf",
  8755. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-Light.ttf",
  8756. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-CondensedLight.ttf",
  8757. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-CondensedExtraLight.ttf",
  8758. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-CondensedMedium.ttf",
  8759. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-CondensedThin.ttf",
  8760. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensedThin.ttf",
  8761. "fonts/NotoSansMalayalam/hinted/ttf/NotoSansMalayalam-ExtraCondensedLight.ttf",
  8762. "fonts/NotoSansMalayalam/unhinted/slim-variable-ttf/NotoSansMalayalam[wght].ttf",
  8763. "fonts/NotoSansMalayalam/unhinted/slim-variable-ttf/NotoSansMalayalam-UI-VF.ttf",
  8764. "fonts/NotoSansMalayalam/unhinted/variable-ttf/NotoSansMalayalam[wdth,wght].ttf",
  8765. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraBold.otf",
  8766. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensedExtraBold.otf",
  8767. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensedBlack.otf",
  8768. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensedMedium.otf",
  8769. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraLight.otf",
  8770. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensed.otf",
  8771. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-Black.otf",
  8772. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensedLight.otf",
  8773. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensedSemiBold.otf",
  8774. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraLight.otf",
  8775. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-CondensedBold.otf",
  8776. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensedThin.otf",
  8777. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensedExtraLight.otf",
  8778. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensedMedium.otf",
  8779. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-CondensedSemiBold.otf",
  8780. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-Medium.otf",
  8781. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-Thin.otf",
  8782. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensedBold.otf",
  8783. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensed.otf",
  8784. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-CondensedThin.otf",
  8785. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-CondensedMedium.otf",
  8786. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensedThin.otf",
  8787. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-CondensedThin.otf",
  8788. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensedExtraLight.otf",
  8789. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensedSemiBold.otf",
  8790. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-Black.otf",
  8791. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensedMedium.otf",
  8792. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensedSemiBold.otf",
  8793. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensedThin.otf",
  8794. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiBold.otf",
  8795. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensedLight.otf",
  8796. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-Light.otf",
  8797. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensedSemiBold.otf",
  8798. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-CondensedSemiBold.otf",
  8799. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensedExtraBold.otf",
  8800. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-CondensedBold.otf",
  8801. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensed.otf",
  8802. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-Bold.otf",
  8803. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensedExtraLight.otf",
  8804. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensedThin.otf",
  8805. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensedBlack.otf",
  8806. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-CondensedExtraLight.otf",
  8807. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-CondensedExtraBold.otf",
  8808. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-Condensed.otf",
  8809. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-CondensedLight.otf",
  8810. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-Light.otf",
  8811. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-CondensedExtraLight.otf",
  8812. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensedBlack.otf",
  8813. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensedLight.otf",
  8814. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-Medium.otf",
  8815. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensedBlack.otf",
  8816. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-CondensedMedium.otf",
  8817. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-CondensedBlack.otf",
  8818. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-Thin.otf",
  8819. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensedBold.otf",
  8820. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensedExtraLight.otf",
  8821. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensed.otf",
  8822. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-Regular.otf",
  8823. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensedLight.otf",
  8824. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-ExtraCondensedBold.otf",
  8825. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-Bold.otf",
  8826. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-SemiCondensedBold.otf",
  8827. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-CondensedLight.otf",
  8828. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraCondensedExtraBold.otf",
  8829. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-CondensedBlack.otf",
  8830. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-ExtraBold.otf",
  8831. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensedExtraBold.otf",
  8832. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalamUI-CondensedExtraBold.otf",
  8833. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-Regular.otf",
  8834. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiCondensedMedium.otf",
  8835. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-SemiBold.otf",
  8836. "fonts/NotoSansMalayalam/unhinted/otf/NotoSansMalayalam-Condensed.otf",
  8837. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensedBold.ttf",
  8838. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-Condensed.ttf",
  8839. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-Black.ttf",
  8840. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensedSemiBold.ttf",
  8841. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensedBold.ttf",
  8842. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensedExtraBold.ttf",
  8843. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-Bold.ttf",
  8844. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensedBlack.ttf",
  8845. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensedThin.ttf",
  8846. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensedExtraBold.ttf",
  8847. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensedBlack.ttf",
  8848. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-CondensedBold.ttf",
  8849. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-Bold.ttf",
  8850. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensedMedium.ttf",
  8851. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-Regular.ttf",
  8852. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensedExtraBold.ttf",
  8853. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-Regular.ttf",
  8854. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-CondensedExtraLight.ttf",
  8855. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-CondensedExtraBold.ttf",
  8856. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiBold.ttf",
  8857. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensedSemiBold.ttf",
  8858. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensedLight.ttf",
  8859. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-CondensedSemiBold.ttf",
  8860. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-CondensedMedium.ttf",
  8861. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-Condensed.ttf",
  8862. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensedBold.ttf",
  8863. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensedMedium.ttf",
  8864. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiBold.ttf",
  8865. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraBold.ttf",
  8866. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensedThin.ttf",
  8867. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-CondensedBold.ttf",
  8868. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensedSemiBold.ttf",
  8869. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraLight.ttf",
  8870. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensedExtraLight.ttf",
  8871. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-Black.ttf",
  8872. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensedThin.ttf",
  8873. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensedExtraLight.ttf",
  8874. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-CondensedLight.ttf",
  8875. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensedBold.ttf",
  8876. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensedLight.ttf",
  8877. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-Medium.ttf",
  8878. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensed.ttf",
  8879. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensed.ttf",
  8880. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-CondensedSemiBold.ttf",
  8881. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-CondensedBlack.ttf",
  8882. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensedMedium.ttf",
  8883. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensedExtraBold.ttf",
  8884. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensedBlack.ttf",
  8885. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-CondensedBlack.ttf",
  8886. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-Light.ttf",
  8887. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-Thin.ttf",
  8888. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensedExtraLight.ttf",
  8889. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-SemiCondensedExtraLight.ttf",
  8890. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-Medium.ttf",
  8891. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensedLight.ttf",
  8892. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensedMedium.ttf",
  8893. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraLight.ttf",
  8894. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraBold.ttf",
  8895. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-ExtraCondensed.ttf",
  8896. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-Thin.ttf",
  8897. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-CondensedExtraBold.ttf",
  8898. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalamUI-CondensedThin.ttf",
  8899. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensed.ttf",
  8900. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensedBlack.ttf",
  8901. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-SemiCondensedSemiBold.ttf",
  8902. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-Light.ttf",
  8903. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-CondensedLight.ttf",
  8904. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-CondensedExtraLight.ttf",
  8905. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-CondensedMedium.ttf",
  8906. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-CondensedThin.ttf",
  8907. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensedThin.ttf",
  8908. "fonts/NotoSansMalayalam/unhinted/ttf/NotoSansMalayalam-ExtraCondensedLight.ttf"
  8909. ],
  8910. "latest_release": {
  8911. "notes": "Noto Sans Malayalam v2.104\n\nThis release:\n* Includes a UI variable font, with some issues fixed (#18)\n* Improves the placement of various marks (#2, #3, #4, #5)\n",
  8912. "published": "2023-03-27T09:22:21",
  8913. "url": "https://github.com/notofonts/malayalam/releases/tag/NotoSansMalayalam-v2.104",
  8914. "version": "v2.104"
  8915. }
  8916. },
  8917. "Noto Serif Malayalam": {
  8918. "files": [
  8919. "fonts/NotoSerifMalayalam/full/slim-variable-ttf/NotoSerifMalayalam[wght].ttf",
  8920. "fonts/NotoSerifMalayalam/full/variable-ttf/NotoSerifMalayalam[wght].ttf",
  8921. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-Regular.otf",
  8922. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-ExtraBold.otf",
  8923. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-Thin.otf",
  8924. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-ExtraLight.otf",
  8925. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-Medium.otf",
  8926. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-Bold.otf",
  8927. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-Black.otf",
  8928. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-Light.otf",
  8929. "fonts/NotoSerifMalayalam/full/otf/NotoSerifMalayalam-SemiBold.otf",
  8930. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Medium.ttf",
  8931. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-ExtraBold.ttf",
  8932. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Light.ttf",
  8933. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Regular.ttf",
  8934. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-ExtraLight.ttf",
  8935. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Thin.ttf",
  8936. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-SemiBold.ttf",
  8937. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Bold.ttf",
  8938. "fonts/NotoSerifMalayalam/full/ttf/NotoSerifMalayalam-Black.ttf",
  8939. "fonts/NotoSerifMalayalam/googlefonts/variable-ttf/NotoSerifMalayalam[wght].ttf",
  8940. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-Medium.ttf",
  8941. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-ExtraBold.ttf",
  8942. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-Light.ttf",
  8943. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-Regular.ttf",
  8944. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-ExtraLight.ttf",
  8945. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-Thin.ttf",
  8946. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-SemiBold.ttf",
  8947. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-Bold.ttf",
  8948. "fonts/NotoSerifMalayalam/googlefonts/ttf/NotoSerifMalayalam-Black.ttf",
  8949. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-Medium.ttf",
  8950. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-ExtraBold.ttf",
  8951. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-Light.ttf",
  8952. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-Regular.ttf",
  8953. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-ExtraLight.ttf",
  8954. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-Thin.ttf",
  8955. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-SemiBold.ttf",
  8956. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-Bold.ttf",
  8957. "fonts/NotoSerifMalayalam/hinted/ttf/NotoSerifMalayalam-Black.ttf",
  8958. "fonts/NotoSerifMalayalam/unhinted/slim-variable-ttf/NotoSerifMalayalam[wght].ttf",
  8959. "fonts/NotoSerifMalayalam/unhinted/variable-ttf/NotoSerifMalayalam[wght].ttf",
  8960. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-Regular.otf",
  8961. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-ExtraBold.otf",
  8962. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-Thin.otf",
  8963. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-ExtraLight.otf",
  8964. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-Medium.otf",
  8965. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-Bold.otf",
  8966. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-Black.otf",
  8967. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-Light.otf",
  8968. "fonts/NotoSerifMalayalam/unhinted/otf/NotoSerifMalayalam-SemiBold.otf",
  8969. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-Medium.ttf",
  8970. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-ExtraBold.ttf",
  8971. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-Light.ttf",
  8972. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-Regular.ttf",
  8973. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-ExtraLight.ttf",
  8974. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-Thin.ttf",
  8975. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-SemiBold.ttf",
  8976. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-Bold.ttf",
  8977. "fonts/NotoSerifMalayalam/unhinted/ttf/NotoSerifMalayalam-Black.ttf"
  8978. ],
  8979. "latest_release": {
  8980. "notes": "Noto Serif Malayalam v2.104\n\nThis release improves the placement of various marks (#2, #3, #4, #5)\n",
  8981. "published": "2023-03-27T09:19:13",
  8982. "url": "https://github.com/notofonts/malayalam/releases/tag/NotoSerifMalayalam-v2.104",
  8983. "version": "v2.104"
  8984. }
  8985. }
  8986. },
  8987. "known_releases": [
  8988. "NotoSansMalayalam-v2.103",
  8989. "NotoSerifMalayalam-v2.103",
  8990. "NotoSerifMalayalam-v2.104",
  8991. "NotoSansMalayalam-v2.104"
  8992. ]
  8993. },
  8994. "mandaic": {
  8995. "families": {
  8996. "Noto Sans Mandaic": {
  8997. "files": [
  8998. "fonts/NotoSansMandaic/googlefonts/ttf/NotoSansMandaic-Regular.ttf",
  8999. "fonts/NotoSansMandaic/full/otf/NotoSansMandaic-Regular.otf",
  9000. "fonts/NotoSansMandaic/full/ttf/NotoSansMandaic-Regular.ttf",
  9001. "fonts/NotoSansMandaic/hinted/ttf/NotoSansMandaic-Regular.ttf",
  9002. "fonts/NotoSansMandaic/unhinted/otf/NotoSansMandaic-Regular.otf",
  9003. "fonts/NotoSansMandaic/unhinted/ttf/NotoSansMandaic-Regular.ttf"
  9004. ],
  9005. "latest_release": {
  9006. "notes": "Noto Sans Mandaic v2.003\n\nThis release:\n\n* Contextually shortens ATT in medial position (#2)\n* Fixes the joining behaviour of DUSHENNA, KAD and AIN (#3)\n* Improves the display of final tatweel (#4)\n",
  9007. "published": "2024-06-06T13:48:58+00:00",
  9008. "url": "https://github.com/notofonts/mandaic/releases/tag/NotoSansMandaic-v2.003",
  9009. "version": "v2.003"
  9010. }
  9011. }
  9012. },
  9013. "known_releases": [
  9014. "NotoSansMandaic-v2.002",
  9015. "NotoSansMandaic-v2.003"
  9016. ]
  9017. },
  9018. "manichaean": {
  9019. "families": {
  9020. "Noto Sans Manichaean": {
  9021. "files": [
  9022. "fonts/NotoSansManichaean/unhinted/ttf/NotoSansManichaean-Regular.ttf",
  9023. "fonts/NotoSansManichaean/unhinted/otf/NotoSansManichaean-Regular.otf",
  9024. "fonts/NotoSansManichaean/full/ttf/NotoSansManichaean-Regular.ttf",
  9025. "fonts/NotoSansManichaean/full/otf/NotoSansManichaean-Regular.otf",
  9026. "fonts/NotoSansManichaean/hinted/ttf/NotoSansManichaean-Regular.ttf",
  9027. "fonts/NotoSansManichaean/googlefonts/ttf/NotoSansManichaean-Regular.ttf"
  9028. ],
  9029. "latest_release": {
  9030. "notes": "Noto Sans Manichaean v2.005\n\nThis release:\n\n* Makes final ligatures work (#5)\n* Improves the positioning of marks on top of ligatures (#4)\n* Adds a high tatweel for numbers (#3)\n",
  9031. "published": "2023-09-25T14:12:29",
  9032. "url": "https://github.com/notofonts/manichaean/releases/tag/NotoSansManichaean-v2.005",
  9033. "version": "v2.005"
  9034. }
  9035. }
  9036. },
  9037. "known_releases": [
  9038. "NotoSansManichaean-v2.004",
  9039. "NotoSansManichaean-v2.005"
  9040. ]
  9041. },
  9042. "marchen": {
  9043. "families": {
  9044. "Noto Sans Marchen": {
  9045. "files": [
  9046. "fonts/NotoSansMarchen/googlefonts/ttf/NotoSansMarchen-Regular.ttf",
  9047. "fonts/NotoSansMarchen/full/otf/NotoSansMarchen-Regular.otf",
  9048. "fonts/NotoSansMarchen/full/ttf/NotoSansMarchen-Regular.ttf",
  9049. "fonts/NotoSansMarchen/hinted/ttf/NotoSansMarchen-Regular.ttf",
  9050. "fonts/NotoSansMarchen/unhinted/otf/NotoSansMarchen-Regular.otf",
  9051. "fonts/NotoSansMarchen/unhinted/ttf/NotoSansMarchen-Regular.ttf"
  9052. ],
  9053. "latest_release": {
  9054. "notes": "Noto Sans Marchen v2.004\n\nThis release:\n\n* Adds anchor points to LETTER A and SUBJOINED LETTER A (#1)\n* Uses a narrow candrabindu after an I vowel + letter (#4)\n* Adds a default languagesystem\n",
  9055. "published": "2024-06-06T13:54:58+00:00",
  9056. "url": "https://github.com/notofonts/marchen/releases/tag/NotoSansMarchen-v2.004",
  9057. "version": "v2.004"
  9058. }
  9059. }
  9060. },
  9061. "known_releases": [
  9062. "NotoSansMarchen-v2.003",
  9063. "NotoSansMarchen-v2.004"
  9064. ]
  9065. },
  9066. "masaram-gondi": {
  9067. "families": {
  9068. "Noto Sans Masaram Gondi": {
  9069. "files": [
  9070. "fonts/NotoSansMasaramGondi/googlefonts/ttf/NotoSansMasaramGondi-Regular.ttf",
  9071. "fonts/NotoSansMasaramGondi/full/otf/NotoSansMasaramGondi-Regular.otf",
  9072. "fonts/NotoSansMasaramGondi/full/ttf/NotoSansMasaramGondi-Regular.ttf",
  9073. "fonts/NotoSansMasaramGondi/hinted/ttf/NotoSansMasaramGondi-Regular.ttf",
  9074. "fonts/NotoSansMasaramGondi/unhinted/otf/NotoSansMasaramGondi-Regular.otf",
  9075. "fonts/NotoSansMasaramGondi/unhinted/ttf/NotoSansMasaramGondi-Regular.ttf"
  9076. ],
  9077. "latest_release": {
  9078. "notes": "Noto Sans Masaram Gondi v1.005\n\nThis release fixes the stylistic variants of digits 5 and 6 which were accidentally switched (#3)\n",
  9079. "published": "2024-06-07T06:28:16+00:00",
  9080. "url": "https://github.com/notofonts/masaram-gondi/releases/tag/NotoSansMasaramGondi-v1.005",
  9081. "version": "v1.005"
  9082. }
  9083. }
  9084. },
  9085. "known_releases": [
  9086. "NotoSansMasaramGondi-v1.004",
  9087. "NotoSansMasaramGondi-v1.005"
  9088. ]
  9089. },
  9090. "math": {
  9091. "families": {
  9092. "Noto Sans Math": {
  9093. "files": [
  9094. "fonts/NotoSansMath/googlefonts/ttf/NotoSansMath-Regular.ttf",
  9095. "fonts/NotoSansMath/full/otf/NotoSansMath-Regular.otf",
  9096. "fonts/NotoSansMath/full/ttf/NotoSansMath-Regular.ttf",
  9097. "fonts/NotoSansMath/hinted/ttf/NotoSansMath-Regular.ttf",
  9098. "fonts/NotoSansMath/unhinted/otf/NotoSansMath-Regular.otf",
  9099. "fonts/NotoSansMath/unhinted/ttf/NotoSansMath-Regular.ttf"
  9100. ],
  9101. "latest_release": {
  9102. "notes": "Noto Sans Math 3.000\n\nThis is a comprehensive reworking of the design by Khaled Hosny to create a \"truly sans serif\" math font.\n",
  9103. "published": "2024-06-05T13:29:16+00:00",
  9104. "url": "https://github.com/notofonts/math/releases/tag/NotoSansMath-v3.000",
  9105. "version": "v3.000"
  9106. }
  9107. }
  9108. },
  9109. "known_releases": [
  9110. "NotoSansMath-v2.539",
  9111. "NotoSansMath-v3.000"
  9112. ]
  9113. },
  9114. "mayan-numerals": {
  9115. "families": {
  9116. "Noto Sans Mayan Numerals": {
  9117. "files": [
  9118. "fonts/NotoSansMayanNumerals/full/ttf/NotoSansMayanNumerals-Regular.ttf",
  9119. "fonts/NotoSansMayanNumerals/full/otf/NotoSansMayanNumerals-Regular.otf",
  9120. "fonts/NotoSansMayanNumerals/googlefonts/ttf/NotoSansMayanNumerals-Regular.ttf",
  9121. "fonts/NotoSansMayanNumerals/unhinted/ttf/NotoSansMayanNumerals-Regular.ttf",
  9122. "fonts/NotoSansMayanNumerals/unhinted/otf/NotoSansMayanNumerals-Regular.otf",
  9123. "fonts/NotoSansMayanNumerals/hinted/ttf/NotoSansMayanNumerals-Regular.ttf"
  9124. ],
  9125. "latest_release": {
  9126. "notes": "Noto Sans Mayan Numerals v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  9127. "published": "2022-09-21T14:50:36",
  9128. "url": "https://github.com/notofonts/mayan-numerals/releases/tag/NotoSansMayanNumerals-v2.001",
  9129. "version": "v2.001"
  9130. }
  9131. }
  9132. },
  9133. "known_releases": [
  9134. "NotoSansMayanNumerals-v2.001"
  9135. ]
  9136. },
  9137. "medefaidrin": {
  9138. "families": {
  9139. "Noto Sans Medefaidrin": {
  9140. "files": [
  9141. "fonts/NotoSansMedefaidrin/full/slim-variable-ttf/NotoSansMedefaidrin[wght].ttf",
  9142. "fonts/NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-SemiBold.ttf",
  9143. "fonts/NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Bold.ttf",
  9144. "fonts/NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Regular.ttf",
  9145. "fonts/NotoSansMedefaidrin/full/ttf/NotoSansMedefaidrin-Medium.ttf",
  9146. "fonts/NotoSansMedefaidrin/full/variable-ttf/NotoSansMedefaidrin[wght].ttf",
  9147. "fonts/NotoSansMedefaidrin/full/otf/NotoSansMedefaidrin-Medium.otf",
  9148. "fonts/NotoSansMedefaidrin/full/otf/NotoSansMedefaidrin-SemiBold.otf",
  9149. "fonts/NotoSansMedefaidrin/full/otf/NotoSansMedefaidrin-Bold.otf",
  9150. "fonts/NotoSansMedefaidrin/full/otf/NotoSansMedefaidrin-Regular.otf",
  9151. "fonts/NotoSansMedefaidrin/googlefonts/ttf/NotoSansMedefaidrin-SemiBold.ttf",
  9152. "fonts/NotoSansMedefaidrin/googlefonts/ttf/NotoSansMedefaidrin-Bold.ttf",
  9153. "fonts/NotoSansMedefaidrin/googlefonts/ttf/NotoSansMedefaidrin-Regular.ttf",
  9154. "fonts/NotoSansMedefaidrin/googlefonts/ttf/NotoSansMedefaidrin-Medium.ttf",
  9155. "fonts/NotoSansMedefaidrin/googlefonts/variable-ttf/NotoSansMedefaidrin[wght].ttf",
  9156. "fonts/NotoSansMedefaidrin/unhinted/slim-variable-ttf/NotoSansMedefaidrin[wght].ttf",
  9157. "fonts/NotoSansMedefaidrin/unhinted/ttf/NotoSansMedefaidrin-SemiBold.ttf",
  9158. "fonts/NotoSansMedefaidrin/unhinted/ttf/NotoSansMedefaidrin-Bold.ttf",
  9159. "fonts/NotoSansMedefaidrin/unhinted/ttf/NotoSansMedefaidrin-Regular.ttf",
  9160. "fonts/NotoSansMedefaidrin/unhinted/ttf/NotoSansMedefaidrin-Medium.ttf",
  9161. "fonts/NotoSansMedefaidrin/unhinted/variable-ttf/NotoSansMedefaidrin[wght].ttf",
  9162. "fonts/NotoSansMedefaidrin/unhinted/otf/NotoSansMedefaidrin-Medium.otf",
  9163. "fonts/NotoSansMedefaidrin/unhinted/otf/NotoSansMedefaidrin-SemiBold.otf",
  9164. "fonts/NotoSansMedefaidrin/unhinted/otf/NotoSansMedefaidrin-Bold.otf",
  9165. "fonts/NotoSansMedefaidrin/unhinted/otf/NotoSansMedefaidrin-Regular.otf",
  9166. "fonts/NotoSansMedefaidrin/hinted/ttf/NotoSansMedefaidrin-SemiBold.ttf",
  9167. "fonts/NotoSansMedefaidrin/hinted/ttf/NotoSansMedefaidrin-Bold.ttf",
  9168. "fonts/NotoSansMedefaidrin/hinted/ttf/NotoSansMedefaidrin-Regular.ttf",
  9169. "fonts/NotoSansMedefaidrin/hinted/ttf/NotoSansMedefaidrin-Medium.ttf"
  9170. ],
  9171. "latest_release": {
  9172. "notes": "Noto Sans Medefaidrin v1.002\n\nThis release fixes a number of fontbakery fails.\n",
  9173. "published": "2022-08-29T07:30:23",
  9174. "url": "https://github.com/notofonts/medefaidrin/releases/tag/NotoSansMedefaidrin-v1.002",
  9175. "version": "v1.002"
  9176. }
  9177. }
  9178. },
  9179. "known_releases": [
  9180. "NotoSansMedefaidrin-v1.002"
  9181. ]
  9182. },
  9183. "meetei-mayek": {
  9184. "families": {
  9185. "Noto Sans Meetei Mayek": {
  9186. "files": [
  9187. "fonts/NotoSansMeeteiMayek/full/slim-variable-ttf/NotoSansMeeteiMayek[wght].ttf",
  9188. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-ExtraLight.ttf",
  9189. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Bold.ttf",
  9190. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Regular.ttf",
  9191. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-SemiBold.ttf",
  9192. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Light.ttf",
  9193. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-ExtraBold.ttf",
  9194. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Thin.ttf",
  9195. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Medium.ttf",
  9196. "fonts/NotoSansMeeteiMayek/full/ttf/NotoSansMeeteiMayek-Black.ttf",
  9197. "fonts/NotoSansMeeteiMayek/full/variable-ttf/NotoSansMeeteiMayek[wght].ttf",
  9198. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-Regular.otf",
  9199. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-Black.otf",
  9200. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-Bold.otf",
  9201. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-Medium.otf",
  9202. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-SemiBold.otf",
  9203. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-Thin.otf",
  9204. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-ExtraBold.otf",
  9205. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-ExtraLight.otf",
  9206. "fonts/NotoSansMeeteiMayek/full/otf/NotoSansMeeteiMayek-Light.otf",
  9207. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-ExtraLight.ttf",
  9208. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-Bold.ttf",
  9209. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-Regular.ttf",
  9210. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-SemiBold.ttf",
  9211. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-Light.ttf",
  9212. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-ExtraBold.ttf",
  9213. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-Thin.ttf",
  9214. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-Medium.ttf",
  9215. "fonts/NotoSansMeeteiMayek/googlefonts/ttf/NotoSansMeeteiMayek-Black.ttf",
  9216. "fonts/NotoSansMeeteiMayek/googlefonts/variable-ttf/NotoSansMeeteiMayek[wght].ttf",
  9217. "fonts/NotoSansMeeteiMayek/unhinted/slim-variable-ttf/NotoSansMeeteiMayek[wght].ttf",
  9218. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-ExtraLight.ttf",
  9219. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-Bold.ttf",
  9220. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-Regular.ttf",
  9221. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-SemiBold.ttf",
  9222. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-Light.ttf",
  9223. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-ExtraBold.ttf",
  9224. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-Thin.ttf",
  9225. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-Medium.ttf",
  9226. "fonts/NotoSansMeeteiMayek/unhinted/ttf/NotoSansMeeteiMayek-Black.ttf",
  9227. "fonts/NotoSansMeeteiMayek/unhinted/variable-ttf/NotoSansMeeteiMayek[wght].ttf",
  9228. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-Regular.otf",
  9229. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-Black.otf",
  9230. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-Bold.otf",
  9231. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-Medium.otf",
  9232. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-SemiBold.otf",
  9233. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-Thin.otf",
  9234. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-ExtraBold.otf",
  9235. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-ExtraLight.otf",
  9236. "fonts/NotoSansMeeteiMayek/unhinted/otf/NotoSansMeeteiMayek-Light.otf",
  9237. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-ExtraLight.ttf",
  9238. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-Bold.ttf",
  9239. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-Regular.ttf",
  9240. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-SemiBold.ttf",
  9241. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-Light.ttf",
  9242. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-ExtraBold.ttf",
  9243. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-Thin.ttf",
  9244. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-Medium.ttf",
  9245. "fonts/NotoSansMeeteiMayek/hinted/ttf/NotoSansMeeteiMayek-Black.ttf"
  9246. ],
  9247. "latest_release": {
  9248. "notes": "Noto Sans Meetei Mayek v2.002\n\nThis release fixes a number of fontabkery fails.\n",
  9249. "published": "2022-09-06T12:40:05",
  9250. "url": "https://github.com/notofonts/meetei-mayek/releases/tag/NotoSansMeeteiMayek-v2.002",
  9251. "version": "v2.002"
  9252. }
  9253. }
  9254. },
  9255. "known_releases": [
  9256. "NotoSansMeeteiMayek-v2.002"
  9257. ]
  9258. },
  9259. "mende-kikakui": {
  9260. "families": {
  9261. "Noto Sans Mende Kikakui": {
  9262. "files": [
  9263. "fonts/NotoSansMendeKikakui/full/ttf/NotoSansMendeKikakui-Regular.ttf",
  9264. "fonts/NotoSansMendeKikakui/full/otf/NotoSansMendeKikakui-Regular.otf",
  9265. "fonts/NotoSansMendeKikakui/googlefonts/ttf/NotoSansMendeKikakui-Regular.ttf",
  9266. "fonts/NotoSansMendeKikakui/unhinted/ttf/NotoSansMendeKikakui-Regular.ttf",
  9267. "fonts/NotoSansMendeKikakui/unhinted/otf/NotoSansMendeKikakui-Regular.otf",
  9268. "fonts/NotoSansMendeKikakui/hinted/ttf/NotoSansMendeKikakui-Regular.ttf"
  9269. ],
  9270. "latest_release": {
  9271. "notes": "Noto Sans Mende Kikakui v2.003\n\nThis release fixes a number of fontbakery fails.\n",
  9272. "published": "2022-08-29T07:40:26",
  9273. "url": "https://github.com/notofonts/mende-kikakui/releases/tag/NotoSansMendeKikakui-v2.003",
  9274. "version": "v2.003"
  9275. }
  9276. }
  9277. },
  9278. "known_releases": [
  9279. "NotoSansMendeKikakui-v2.003"
  9280. ]
  9281. },
  9282. "meroitic": {
  9283. "families": {
  9284. "Noto Sans Meroitic": {
  9285. "files": [
  9286. "fonts/NotoSansMeroitic/unhinted/ttf/NotoSansMeroitic-Regular.ttf",
  9287. "fonts/NotoSansMeroitic/unhinted/otf/NotoSansMeroitic-Regular.otf",
  9288. "fonts/NotoSansMeroitic/full/ttf/NotoSansMeroitic-Regular.ttf",
  9289. "fonts/NotoSansMeroitic/full/otf/NotoSansMeroitic-Regular.otf",
  9290. "fonts/NotoSansMeroitic/hinted/ttf/NotoSansMeroitic-Regular.ttf",
  9291. "fonts/NotoSansMeroitic/googlefonts/ttf/NotoSansMeroitic-Regular.ttf"
  9292. ],
  9293. "latest_release": {
  9294. "notes": "Noto Sans Meroitic v2.002\n\nThis release:\n\n* Fixes kerning (#1)\n* Removes redundant U+2026 glyph (#2)\n* Fixes the shape of the U+205D TRICOLON to be more upright (#2)\n",
  9295. "published": "2023-09-25T14:14:37",
  9296. "url": "https://github.com/notofonts/meroitic/releases/tag/NotoSansMeroitic-v2.002",
  9297. "version": "v2.002"
  9298. }
  9299. }
  9300. },
  9301. "known_releases": [
  9302. "NotoSansMeroitic-v2.001",
  9303. "NotoSansMeroitic-v2.002"
  9304. ]
  9305. },
  9306. "miao": {
  9307. "families": {
  9308. "Noto Sans Miao": {
  9309. "files": [
  9310. "fonts/NotoSansMiao/full/ttf/NotoSansMiao-Regular.ttf",
  9311. "fonts/NotoSansMiao/full/otf/NotoSansMiao-Regular.otf",
  9312. "fonts/NotoSansMiao/googlefonts/ttf/NotoSansMiao-Regular.ttf",
  9313. "fonts/NotoSansMiao/unhinted/ttf/NotoSansMiao-Regular.ttf",
  9314. "fonts/NotoSansMiao/unhinted/otf/NotoSansMiao-Regular.otf",
  9315. "fonts/NotoSansMiao/hinted/ttf/NotoSansMiao-Regular.ttf"
  9316. ],
  9317. "latest_release": {
  9318. "notes": "Noto Sans Miao v2.003\n\nThis release fixes a number of fontbakery fails\n",
  9319. "published": "2022-08-29T08:13:06",
  9320. "url": "https://github.com/notofonts/miao/releases/tag/NotoSansMiao-v2.003",
  9321. "version": "v2.003"
  9322. }
  9323. }
  9324. },
  9325. "known_releases": [
  9326. "NotoSansMiao-v2.003"
  9327. ]
  9328. },
  9329. "modi": {
  9330. "families": {
  9331. "Noto Sans Modi": {
  9332. "files": [
  9333. "fonts/NotoSansModi/full/ttf/NotoSansModi-Regular.ttf",
  9334. "fonts/NotoSansModi/full/otf/NotoSansModi-Regular.otf",
  9335. "fonts/NotoSansModi/googlefonts/ttf/NotoSansModi-Regular.ttf",
  9336. "fonts/NotoSansModi/unhinted/slim-otf/NotoSansModi-Regular.otf",
  9337. "fonts/NotoSansModi/unhinted/ttf/NotoSansModi-Regular.ttf",
  9338. "fonts/NotoSansModi/unhinted/otf/NotoSansModi-Regular.otf",
  9339. "fonts/NotoSansModi/hinted/ttf/NotoSansModi-Regular.ttf"
  9340. ],
  9341. "latest_release": {
  9342. "notes": "Noto Sans Modi v2.004\r\n\r\nThis release uses the additional \"DNaa\" and \"DNu\" conjuncts. (#12)",
  9343. "published": "2023-06-21T10:40:08",
  9344. "url": "https://github.com/notofonts/modi/releases/tag/NotoSansModi-v2.004",
  9345. "version": "v2.004"
  9346. }
  9347. }
  9348. },
  9349. "known_releases": [
  9350. "NotoSansModi-v2.002",
  9351. "NotoSansModi-v2.003",
  9352. "NotoSansModi-v2.004"
  9353. ]
  9354. },
  9355. "mongolian": {
  9356. "families": {
  9357. "Noto Sans Mongolian": {
  9358. "files": [
  9359. "fonts/NotoSansMongolian/unhinted/otf/NotoSansMongolian-Regular.otf",
  9360. "fonts/NotoSansMongolian/unhinted/ttf/NotoSansMongolian-Regular.ttf",
  9361. "fonts/NotoSansMongolian/full/otf/NotoSansMongolian-Regular.otf",
  9362. "fonts/NotoSansMongolian/full/ttf/NotoSansMongolian-Regular.ttf",
  9363. "fonts/NotoSansMongolian/googlefonts/ttf/NotoSansMongolian-Regular.ttf",
  9364. "fonts/NotoSansMongolian/hinted/ttf/NotoSansMongolian-Regular.ttf"
  9365. ],
  9366. "latest_release": {
  9367. "notes": "Noto Sans Mongolian v3.002\n\nThis release updates the shaping rules to meet the published standard (UTN#57).\n",
  9368. "published": "2024-07-24T17:01:39+00:00",
  9369. "url": "https://github.com/notofonts/mongolian/releases/tag/NotoSansMongolian-v3.002",
  9370. "version": "v3.002"
  9371. }
  9372. }
  9373. },
  9374. "known_releases": [
  9375. "NotoSansMongolian-v2.003",
  9376. "NotoSansMongolian-v3.000",
  9377. "NotoSansMongolian-v3.001",
  9378. "NotoSansMongolian-v3.002"
  9379. ]
  9380. },
  9381. "mro": {
  9382. "families": {
  9383. "Noto Sans Mro": {
  9384. "files": [
  9385. "fonts/NotoSansMro/full/ttf/NotoSansMro-Regular.ttf",
  9386. "fonts/NotoSansMro/full/otf/NotoSansMro-Regular.otf",
  9387. "fonts/NotoSansMro/googlefonts/ttf/NotoSansMro-Regular.ttf",
  9388. "fonts/NotoSansMro/unhinted/ttf/NotoSansMro-Regular.ttf",
  9389. "fonts/NotoSansMro/unhinted/otf/NotoSansMro-Regular.otf",
  9390. "fonts/NotoSansMro/hinted/ttf/NotoSansMro-Regular.ttf"
  9391. ],
  9392. "latest_release": {
  9393. "notes": "Noto Sans Mro v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  9394. "published": "2022-08-31T08:56:13",
  9395. "url": "https://github.com/notofonts/mro/releases/tag/NotoSansMro-v2.001",
  9396. "version": "v2.001"
  9397. }
  9398. }
  9399. },
  9400. "known_releases": [
  9401. "NotoSansMro-v2.001"
  9402. ]
  9403. },
  9404. "multani": {
  9405. "families": {
  9406. "Noto Sans Multani": {
  9407. "files": [
  9408. "fonts/NotoSansMultani/hinted/ttf/NotoSansMultani-Regular.ttf",
  9409. "fonts/NotoSansMultani/googlefonts/ttf/NotoSansMultani-Regular.ttf",
  9410. "fonts/NotoSansMultani/unhinted/ttf/NotoSansMultani-Regular.ttf",
  9411. "fonts/NotoSansMultani/unhinted/otf/NotoSansMultani-Regular.otf",
  9412. "fonts/NotoSansMultani/full/ttf/NotoSansMultani-Regular.ttf",
  9413. "fonts/NotoSansMultani/full/otf/NotoSansMultani-Regular.otf"
  9414. ],
  9415. "latest_release": {
  9416. "notes": "Noto Sans Multani v2.002 This release adds danda/double danda Devanagari glyphs to the full build.\n",
  9417. "published": "2022-10-05T10:40:26",
  9418. "url": "https://github.com/notofonts/multani/releases/tag/NotoSansMultani-v2.002",
  9419. "version": "v2.002"
  9420. }
  9421. }
  9422. },
  9423. "known_releases": [
  9424. "NotoSansMultani-v2.001",
  9425. "NotoSansMultani-v2.002"
  9426. ]
  9427. },
  9428. "music": {
  9429. "families": {
  9430. "Noto Music": {
  9431. "files": [
  9432. "fonts/NotoMusic/full/ttf/NotoMusic-Regular.ttf",
  9433. "fonts/NotoMusic/full/otf/NotoMusic-Regular.otf",
  9434. "fonts/NotoMusic/googlefonts/ttf/NotoMusic-Regular.ttf",
  9435. "fonts/NotoMusic/unhinted/slim-otf/NotoMusic-Regular.otf",
  9436. "fonts/NotoMusic/unhinted/ttf/NotoMusic-Regular.ttf",
  9437. "fonts/NotoMusic/unhinted/otf/NotoMusic-Regular.otf",
  9438. "fonts/NotoMusic/hinted/ttf/NotoMusic-Regular.ttf"
  9439. ],
  9440. "latest_release": {
  9441. "notes": "Noto Music v2.003\r\n\r\nThis release:\r\n\r\n* Fixes the height and alignment of mensural rests (#2)\r\n* Supports up to four staccato dots (#9)\r\n* Makes null notehead visible when unattached (#5)\r\n* Fixes positions of Byzantine symbols (#1)",
  9442. "published": "2023-06-21T06:28:11",
  9443. "url": "https://github.com/notofonts/music/releases/tag/NotoMusic-v2.003",
  9444. "version": "v2.003"
  9445. }
  9446. }
  9447. },
  9448. "known_releases": [
  9449. "NotoMusic-v2.002",
  9450. "NotoMusic-v2.003"
  9451. ]
  9452. },
  9453. "myanmar": {
  9454. "families": {
  9455. "Noto Sans Myanmar": {
  9456. "files": [
  9457. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-Regular.ttf",
  9458. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-ExtraLight.ttf",
  9459. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-SemiBold.ttf",
  9460. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-ExtraBold.ttf",
  9461. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-Medium.ttf",
  9462. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-Bold.ttf",
  9463. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-Black.ttf",
  9464. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-Light.ttf",
  9465. "fonts/NotoSansMyanmar/googlefonts/ttf/NotoSansMyanmar-Thin.ttf",
  9466. "fonts/NotoSansMyanmar/googlefonts/variable-ttf/NotoSansMyanmar[wdth,wght].ttf",
  9467. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensedSemiBold.otf",
  9468. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-CondensedSemiBold.otf",
  9469. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensedBold.otf",
  9470. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-Regular.otf",
  9471. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiBold.otf",
  9472. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-CondensedMedium.otf",
  9473. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensedMedium.otf",
  9474. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensedThin.otf",
  9475. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraLight.otf",
  9476. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-Medium.otf",
  9477. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensedBlack.otf",
  9478. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensedSemiBold.otf",
  9479. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-CondensedBlack.otf",
  9480. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-CondensedExtraBold.otf",
  9481. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-CondensedExtraLight.otf",
  9482. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensed.otf",
  9483. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-Thin.otf",
  9484. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensedBold.otf",
  9485. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensedExtraLight.otf",
  9486. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensedLight.otf",
  9487. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-CondensedBold.otf",
  9488. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-Condensed.otf",
  9489. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-Light.otf",
  9490. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-CondensedLight.otf",
  9491. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-Black.otf",
  9492. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensedExtraLight.otf",
  9493. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensedExtraBold.otf",
  9494. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensedMedium.otf",
  9495. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensedExtraBold.otf",
  9496. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraBold.otf",
  9497. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensedThin.otf",
  9498. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-SemiCondensedBlack.otf",
  9499. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-CondensedThin.otf",
  9500. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensed.otf",
  9501. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-Bold.otf",
  9502. "fonts/NotoSansMyanmar/full/otf/NotoSansMyanmar-ExtraCondensedLight.otf",
  9503. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedThin.ttf",
  9504. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedBold.ttf",
  9505. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Regular.ttf",
  9506. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraLight.ttf",
  9507. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedSemiBold.ttf",
  9508. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedBlack.ttf",
  9509. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedBlack.ttf",
  9510. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedBlack.ttf",
  9511. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensed.ttf",
  9512. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedExtraBold.ttf",
  9513. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedMedium.ttf",
  9514. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedExtraBold.ttf",
  9515. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedBold.ttf",
  9516. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedExtraLight.ttf",
  9517. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiBold.ttf",
  9518. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Condensed.ttf",
  9519. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedThin.ttf",
  9520. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedSemiBold.ttf",
  9521. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraBold.ttf",
  9522. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedExtraBold.ttf",
  9523. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedExtraLight.ttf",
  9524. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedLight.ttf",
  9525. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensed.ttf",
  9526. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedThin.ttf",
  9527. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Medium.ttf",
  9528. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Bold.ttf",
  9529. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-ExtraCondensedBold.ttf",
  9530. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Black.ttf",
  9531. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedExtraLight.ttf",
  9532. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Light.ttf",
  9533. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedLight.ttf",
  9534. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedSemiBold.ttf",
  9535. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedMedium.ttf",
  9536. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-SemiCondensedMedium.ttf",
  9537. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-CondensedLight.ttf",
  9538. "fonts/NotoSansMyanmar/full/ttf/NotoSansMyanmar-Thin.ttf",
  9539. "fonts/NotoSansMyanmar/full/slim-variable-ttf/NotoSansMyanmar[wght].ttf",
  9540. "fonts/NotoSansMyanmar/full/variable-ttf/NotoSansMyanmar[wdth,wght].ttf",
  9541. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensedThin.ttf",
  9542. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensedBold.ttf",
  9543. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-Regular.ttf",
  9544. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraLight.ttf",
  9545. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensedSemiBold.ttf",
  9546. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-CondensedBlack.ttf",
  9547. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensedBlack.ttf",
  9548. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensedBlack.ttf",
  9549. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensed.ttf",
  9550. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-CondensedExtraBold.ttf",
  9551. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensedMedium.ttf",
  9552. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensedExtraBold.ttf",
  9553. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-CondensedBold.ttf",
  9554. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-CondensedExtraLight.ttf",
  9555. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiBold.ttf",
  9556. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-Condensed.ttf",
  9557. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-CondensedThin.ttf",
  9558. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensedSemiBold.ttf",
  9559. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraBold.ttf",
  9560. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensedExtraBold.ttf",
  9561. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensedExtraLight.ttf",
  9562. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensedLight.ttf",
  9563. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensed.ttf",
  9564. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensedThin.ttf",
  9565. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-Medium.ttf",
  9566. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-Bold.ttf",
  9567. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-ExtraCondensedBold.ttf",
  9568. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-Black.ttf",
  9569. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensedExtraLight.ttf",
  9570. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-Light.ttf",
  9571. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensedLight.ttf",
  9572. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-CondensedSemiBold.ttf",
  9573. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-CondensedMedium.ttf",
  9574. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-SemiCondensedMedium.ttf",
  9575. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-CondensedLight.ttf",
  9576. "fonts/NotoSansMyanmar/hinted/ttf/NotoSansMyanmar-Thin.ttf",
  9577. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensedSemiBold.otf",
  9578. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-CondensedSemiBold.otf",
  9579. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensedBold.otf",
  9580. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-Regular.otf",
  9581. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiBold.otf",
  9582. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-CondensedMedium.otf",
  9583. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensedMedium.otf",
  9584. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensedThin.otf",
  9585. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraLight.otf",
  9586. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-Medium.otf",
  9587. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensedBlack.otf",
  9588. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensedSemiBold.otf",
  9589. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-CondensedBlack.otf",
  9590. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-CondensedExtraBold.otf",
  9591. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-CondensedExtraLight.otf",
  9592. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensed.otf",
  9593. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-Thin.otf",
  9594. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensedBold.otf",
  9595. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensedExtraLight.otf",
  9596. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensedLight.otf",
  9597. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-CondensedBold.otf",
  9598. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-Condensed.otf",
  9599. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-Light.otf",
  9600. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-CondensedLight.otf",
  9601. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-Black.otf",
  9602. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensedExtraLight.otf",
  9603. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensedExtraBold.otf",
  9604. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensedMedium.otf",
  9605. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensedExtraBold.otf",
  9606. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraBold.otf",
  9607. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensedThin.otf",
  9608. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-SemiCondensedBlack.otf",
  9609. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-CondensedThin.otf",
  9610. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensed.otf",
  9611. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-Bold.otf",
  9612. "fonts/NotoSansMyanmar/unhinted/otf/NotoSansMyanmar-ExtraCondensedLight.otf",
  9613. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensedThin.ttf",
  9614. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensedBold.ttf",
  9615. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-Regular.ttf",
  9616. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraLight.ttf",
  9617. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensedSemiBold.ttf",
  9618. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-CondensedBlack.ttf",
  9619. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensedBlack.ttf",
  9620. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensedBlack.ttf",
  9621. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensed.ttf",
  9622. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-CondensedExtraBold.ttf",
  9623. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensedMedium.ttf",
  9624. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensedExtraBold.ttf",
  9625. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-CondensedBold.ttf",
  9626. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-CondensedExtraLight.ttf",
  9627. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiBold.ttf",
  9628. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-Condensed.ttf",
  9629. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-CondensedThin.ttf",
  9630. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensedSemiBold.ttf",
  9631. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraBold.ttf",
  9632. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensedExtraBold.ttf",
  9633. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensedExtraLight.ttf",
  9634. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensedLight.ttf",
  9635. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensed.ttf",
  9636. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensedThin.ttf",
  9637. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-Medium.ttf",
  9638. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-Bold.ttf",
  9639. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-ExtraCondensedBold.ttf",
  9640. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-Black.ttf",
  9641. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensedExtraLight.ttf",
  9642. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-Light.ttf",
  9643. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensedLight.ttf",
  9644. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-CondensedSemiBold.ttf",
  9645. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-CondensedMedium.ttf",
  9646. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-SemiCondensedMedium.ttf",
  9647. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-CondensedLight.ttf",
  9648. "fonts/NotoSansMyanmar/unhinted/ttf/NotoSansMyanmar-Thin.ttf",
  9649. "fonts/NotoSansMyanmar/unhinted/slim-variable-ttf/NotoSansMyanmar[wght].ttf",
  9650. "fonts/NotoSansMyanmar/unhinted/variable-ttf/NotoSansMyanmar[wdth,wght].ttf"
  9651. ],
  9652. "latest_release": {
  9653. "notes": "Noto Sans Myanmar v2.107\n\nThis release uses production naming for exported glyphs.\n",
  9654. "published": "2022-07-28T07:58:21",
  9655. "url": "https://github.com/notofonts/myanmar/releases/tag/NotoSansMyanmar-v2.107",
  9656. "version": "v2.107"
  9657. }
  9658. },
  9659. "Noto Serif Myanmar": {
  9660. "files": [
  9661. "fonts/NotoSerifMyanmar/googlefonts/variable-ttf/NotoSerifMyanmar[wdth,wght].ttf",
  9662. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-SemiBold.ttf",
  9663. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-ExtraLight.ttf",
  9664. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-Regular.ttf",
  9665. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-Black.ttf",
  9666. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-Medium.ttf",
  9667. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-Bold.ttf",
  9668. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-Light.ttf",
  9669. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-ExtraBold.ttf",
  9670. "fonts/NotoSerifMyanmar/googlefonts/ttf/NotoSerifMyanmar-Thin.ttf",
  9671. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensedSemiBold.ttf",
  9672. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensedExtraBold.ttf",
  9673. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensedThin.ttf",
  9674. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-CondensedLight.ttf",
  9675. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensedMedium.ttf",
  9676. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensedExtraLight.ttf",
  9677. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-Condensed.ttf",
  9678. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiBold.ttf",
  9679. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-CondensedExtraBold.ttf",
  9680. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraLight.ttf",
  9681. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensedBlack.ttf",
  9682. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-Regular.ttf",
  9683. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-CondensedMedium.ttf",
  9684. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensed.ttf",
  9685. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensedMedium.ttf",
  9686. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-Black.ttf",
  9687. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensedLight.ttf",
  9688. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensedExtraLight.ttf",
  9689. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-CondensedSemiBold.ttf",
  9690. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensedExtraBold.ttf",
  9691. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-CondensedExtraLight.ttf",
  9692. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-Medium.ttf",
  9693. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-CondensedBlack.ttf",
  9694. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-CondensedThin.ttf",
  9695. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensedSemiBold.ttf",
  9696. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensedBold.ttf",
  9697. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-SemiCondensedLight.ttf",
  9698. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-Bold.ttf",
  9699. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-Light.ttf",
  9700. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensed.ttf",
  9701. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraBold.ttf",
  9702. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-Thin.ttf",
  9703. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-CondensedBold.ttf",
  9704. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensedBold.ttf",
  9705. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensedThin.ttf",
  9706. "fonts/NotoSerifMyanmar/hinted/ttf/NotoSerifMyanmar-ExtraCondensedBlack.ttf",
  9707. "fonts/NotoSerifMyanmar/unhinted/variable-ttf/NotoSerifMyanmar[wdth,wght].ttf",
  9708. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-Bold.otf",
  9709. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-Medium.otf",
  9710. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-CondensedBlack.otf",
  9711. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-Black.otf",
  9712. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraLight.otf",
  9713. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-Regular.otf",
  9714. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensedThin.otf",
  9715. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensedSemiBold.otf",
  9716. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensedExtraLight.otf",
  9717. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-Condensed.otf",
  9718. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiBold.otf",
  9719. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensed.otf",
  9720. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensedMedium.otf",
  9721. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensedLight.otf",
  9722. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-Light.otf",
  9723. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraBold.otf",
  9724. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-CondensedSemiBold.otf",
  9725. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-CondensedExtraLight.otf",
  9726. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensedBold.otf",
  9727. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensedExtraLight.otf",
  9728. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensedExtraBold.otf",
  9729. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensedMedium.otf",
  9730. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensed.otf",
  9731. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-CondensedMedium.otf",
  9732. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensedSemiBold.otf",
  9733. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensedBlack.otf",
  9734. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensedLight.otf",
  9735. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-CondensedLight.otf",
  9736. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensedBlack.otf",
  9737. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-CondensedThin.otf",
  9738. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-CondensedBold.otf",
  9739. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-SemiCondensedThin.otf",
  9740. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-CondensedExtraBold.otf",
  9741. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensedExtraBold.otf",
  9742. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-ExtraCondensedBold.otf",
  9743. "fonts/NotoSerifMyanmar/unhinted/otf/NotoSerifMyanmar-Thin.otf",
  9744. "fonts/NotoSerifMyanmar/unhinted/slim-variable-ttf/NotoSerifMyanmar[wght].ttf",
  9745. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensedSemiBold.ttf",
  9746. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensedExtraBold.ttf",
  9747. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensedThin.ttf",
  9748. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-CondensedLight.ttf",
  9749. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensedMedium.ttf",
  9750. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensedExtraLight.ttf",
  9751. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-Condensed.ttf",
  9752. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiBold.ttf",
  9753. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-CondensedExtraBold.ttf",
  9754. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraLight.ttf",
  9755. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensedBlack.ttf",
  9756. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-Regular.ttf",
  9757. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-CondensedMedium.ttf",
  9758. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensed.ttf",
  9759. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensedMedium.ttf",
  9760. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-Black.ttf",
  9761. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensedLight.ttf",
  9762. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensedExtraLight.ttf",
  9763. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-CondensedSemiBold.ttf",
  9764. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensedExtraBold.ttf",
  9765. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-CondensedExtraLight.ttf",
  9766. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-Medium.ttf",
  9767. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-CondensedBlack.ttf",
  9768. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-CondensedThin.ttf",
  9769. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensedSemiBold.ttf",
  9770. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensedBold.ttf",
  9771. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-SemiCondensedLight.ttf",
  9772. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-Bold.ttf",
  9773. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-Light.ttf",
  9774. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensed.ttf",
  9775. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraBold.ttf",
  9776. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-Thin.ttf",
  9777. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-CondensedBold.ttf",
  9778. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensedBold.ttf",
  9779. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensedThin.ttf",
  9780. "fonts/NotoSerifMyanmar/unhinted/ttf/NotoSerifMyanmar-ExtraCondensedBlack.ttf",
  9781. "fonts/NotoSerifMyanmar/full/variable-ttf/NotoSerifMyanmar[wdth,wght].ttf",
  9782. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-Bold.otf",
  9783. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-Medium.otf",
  9784. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-CondensedBlack.otf",
  9785. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-Black.otf",
  9786. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraLight.otf",
  9787. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-Regular.otf",
  9788. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensedThin.otf",
  9789. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensedSemiBold.otf",
  9790. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensedExtraLight.otf",
  9791. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-Condensed.otf",
  9792. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiBold.otf",
  9793. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensed.otf",
  9794. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensedMedium.otf",
  9795. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensedLight.otf",
  9796. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-Light.otf",
  9797. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraBold.otf",
  9798. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-CondensedSemiBold.otf",
  9799. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-CondensedExtraLight.otf",
  9800. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensedBold.otf",
  9801. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensedExtraLight.otf",
  9802. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensedExtraBold.otf",
  9803. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensedMedium.otf",
  9804. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensed.otf",
  9805. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-CondensedMedium.otf",
  9806. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensedSemiBold.otf",
  9807. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensedBlack.otf",
  9808. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensedLight.otf",
  9809. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-CondensedLight.otf",
  9810. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensedBlack.otf",
  9811. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-CondensedThin.otf",
  9812. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-CondensedBold.otf",
  9813. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-SemiCondensedThin.otf",
  9814. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-CondensedExtraBold.otf",
  9815. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensedExtraBold.otf",
  9816. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-ExtraCondensedBold.otf",
  9817. "fonts/NotoSerifMyanmar/full/otf/NotoSerifMyanmar-Thin.otf",
  9818. "fonts/NotoSerifMyanmar/full/slim-variable-ttf/NotoSerifMyanmar[wght].ttf",
  9819. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedSemiBold.ttf",
  9820. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedExtraBold.ttf",
  9821. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedThin.ttf",
  9822. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedLight.ttf",
  9823. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedMedium.ttf",
  9824. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedExtraLight.ttf",
  9825. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Condensed.ttf",
  9826. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiBold.ttf",
  9827. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedExtraBold.ttf",
  9828. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraLight.ttf",
  9829. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedBlack.ttf",
  9830. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Regular.ttf",
  9831. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedMedium.ttf",
  9832. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensed.ttf",
  9833. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedMedium.ttf",
  9834. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Black.ttf",
  9835. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedLight.ttf",
  9836. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedExtraLight.ttf",
  9837. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedSemiBold.ttf",
  9838. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedExtraBold.ttf",
  9839. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedExtraLight.ttf",
  9840. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Medium.ttf",
  9841. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedBlack.ttf",
  9842. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedThin.ttf",
  9843. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedSemiBold.ttf",
  9844. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedBold.ttf",
  9845. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-SemiCondensedLight.ttf",
  9846. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Bold.ttf",
  9847. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Light.ttf",
  9848. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensed.ttf",
  9849. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraBold.ttf",
  9850. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-Thin.ttf",
  9851. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-CondensedBold.ttf",
  9852. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedBold.ttf",
  9853. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedThin.ttf",
  9854. "fonts/NotoSerifMyanmar/full/ttf/NotoSerifMyanmar-ExtraCondensedBlack.ttf"
  9855. ],
  9856. "latest_release": {
  9857. "notes": "Noto Serif Myanmar v2.106\n\nThis is an administrative release.\n",
  9858. "published": "2022-07-14T07:43:25",
  9859. "url": "https://github.com/notofonts/myanmar/releases/tag/NotoSerifMyanmar-v2.106",
  9860. "version": "v2.106"
  9861. }
  9862. }
  9863. },
  9864. "known_releases": [
  9865. "NotoSerifMyanmar-v2.106",
  9866. "NotoSansMyanmar-v2.106",
  9867. "NotoSansMyanmar-v2.107"
  9868. ]
  9869. },
  9870. "nabataean": {
  9871. "families": {
  9872. "Noto Sans Nabataean": {
  9873. "files": [
  9874. "fonts/NotoSansNabataean/full/ttf/NotoSansNabataean-Regular.ttf",
  9875. "fonts/NotoSansNabataean/full/otf/NotoSansNabataean-Regular.otf",
  9876. "fonts/NotoSansNabataean/googlefonts/ttf/NotoSansNabataean-Regular.ttf",
  9877. "fonts/NotoSansNabataean/unhinted/ttf/NotoSansNabataean-Regular.ttf",
  9878. "fonts/NotoSansNabataean/unhinted/otf/NotoSansNabataean-Regular.otf",
  9879. "fonts/NotoSansNabataean/hinted/ttf/NotoSansNabataean-Regular.ttf"
  9880. ],
  9881. "latest_release": {
  9882. "notes": "Noto Sans Nabataean v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  9883. "published": "2022-09-24T15:02:01",
  9884. "url": "https://github.com/notofonts/nabataean/releases/tag/NotoSansNabataean-v2.001",
  9885. "version": "v2.001"
  9886. }
  9887. }
  9888. },
  9889. "known_releases": [
  9890. "NotoSansNabataean-v2.001"
  9891. ]
  9892. },
  9893. "nag-mundari": {
  9894. "families": {
  9895. "Noto Sans Nag Mundari": {
  9896. "files": [
  9897. "fonts/NotoSansNagMundari/googlefonts/variable-ttf/NotoSansNagMundari[wght].ttf",
  9898. "fonts/NotoSansNagMundari/full/otf/NotoSansNagMundari-Regular.otf",
  9899. "fonts/NotoSansNagMundari/full/otf/NotoSansNagMundari-Bold.otf",
  9900. "fonts/NotoSansNagMundari/full/ttf/NotoSansNagMundari-Regular.ttf",
  9901. "fonts/NotoSansNagMundari/full/ttf/NotoSansNagMundari-Bold.ttf",
  9902. "fonts/NotoSansNagMundari/full/slim-variable-ttf/NotoSansNagMundari[wght].ttf",
  9903. "fonts/NotoSansNagMundari/full/variable-ttf/NotoSansNagMundari[wght].ttf",
  9904. "fonts/NotoSansNagMundari/hinted/ttf/NotoSansNagMundari-Regular.ttf",
  9905. "fonts/NotoSansNagMundari/hinted/ttf/NotoSansNagMundari-Bold.ttf",
  9906. "fonts/NotoSansNagMundari/unhinted/otf/NotoSansNagMundari-Regular.otf",
  9907. "fonts/NotoSansNagMundari/unhinted/otf/NotoSansNagMundari-Bold.otf",
  9908. "fonts/NotoSansNagMundari/unhinted/ttf/NotoSansNagMundari-Regular.ttf",
  9909. "fonts/NotoSansNagMundari/unhinted/ttf/NotoSansNagMundari-Bold.ttf",
  9910. "fonts/NotoSansNagMundari/unhinted/slim-variable-ttf/NotoSansNagMundari[wght].ttf",
  9911. "fonts/NotoSansNagMundari/unhinted/variable-ttf/NotoSansNagMundari[wght].ttf"
  9912. ],
  9913. "latest_release": {
  9914. "notes": "Noto Sans Nag Mundari v1.001\n\nThis release:\n\n* Fixes anchoring of marks on the dotted circle\n* Fixes interpolation issues (#5)\n* Corrects mark categories and language systems\n",
  9915. "published": "2024-06-11T06:31:28+00:00",
  9916. "url": "https://github.com/notofonts/nag-mundari/releases/tag/NotoSansNagMundari-v1.001",
  9917. "version": "v1.001"
  9918. }
  9919. }
  9920. },
  9921. "known_releases": [
  9922. "NotoSansNagMundari-v1.000",
  9923. "NotoSansNagMundari-v1.001"
  9924. ]
  9925. },
  9926. "nandinagari": {
  9927. "families": {
  9928. "Noto Sans Nandinagari": {
  9929. "files": [
  9930. "fonts/NotoSansNandinagari/full/ttf/NotoSansNandinagari-Regular.ttf",
  9931. "fonts/NotoSansNandinagari/full/otf/NotoSansNandinagari-Regular.otf",
  9932. "fonts/NotoSansNandinagari/unhinted/ttf/NotoSansNandinagari-Regular.ttf",
  9933. "fonts/NotoSansNandinagari/unhinted/otf/NotoSansNandinagari-Regular.otf",
  9934. "fonts/NotoSansNandinagari/hinted/ttf/NotoSansNandinagari-Regular.ttf",
  9935. "fonts/NotoSansNandinagari/googlefonts/ttf/NotoSansNandinagari-Regular.ttf"
  9936. ],
  9937. "latest_release": {
  9938. "notes": "Noto Sans Nandinagari v1.003\n\nThis version:\n\n* Fixes anchor propagation (#12)\n* Closes a gap between PRISHTHAMATRA E and nya. (#10)\n* Makes the ss04 feature more complete (#9)\n* Fixes the handling of ZWNJ for certain half forms (#8)\n* Fixes a number of broken compounds (#6, #7)\n",
  9939. "published": "2024-10-07T10:05:23+00:00",
  9940. "url": "https://github.com/notofonts/nandinagari/releases/tag/NotoSansNandinagari-v1.003",
  9941. "version": "v1.003"
  9942. }
  9943. }
  9944. },
  9945. "known_releases": [
  9946. "NotoSansNandinagari-v1.001",
  9947. "NotoSansNandinagari-v1.002",
  9948. "NotoSansNandinagari-v1.003"
  9949. ]
  9950. },
  9951. "nastaliq": {
  9952. "families": {
  9953. "Noto Nastaliq Urdu": {
  9954. "files": [
  9955. "fonts/NotoNastaliqUrdu/googlefonts/variable-ttf/NotoNastaliqUrdu[wght].ttf",
  9956. "fonts/NotoNastaliqUrdu/full/variable-ttf/NotoNastaliqUrdu[wght].ttf",
  9957. "fonts/NotoNastaliqUrdu/full/otf/NotoNastaliqUrdu-Bold.otf",
  9958. "fonts/NotoNastaliqUrdu/full/otf/NotoNastaliqUrdu-Regular.otf",
  9959. "fonts/NotoNastaliqUrdu/full/slim-variable-ttf/NotoNastaliqUrdu[wght].ttf",
  9960. "fonts/NotoNastaliqUrdu/full/ttf/NotoNastaliqUrdu-Bold.ttf",
  9961. "fonts/NotoNastaliqUrdu/full/ttf/NotoNastaliqUrdu-Regular.ttf",
  9962. "fonts/NotoNastaliqUrdu/hinted/ttf/NotoNastaliqUrdu-Bold.ttf",
  9963. "fonts/NotoNastaliqUrdu/hinted/ttf/NotoNastaliqUrdu-Regular.ttf",
  9964. "fonts/NotoNastaliqUrdu/unhinted/variable-ttf/NotoNastaliqUrdu[wght].ttf",
  9965. "fonts/NotoNastaliqUrdu/unhinted/otf/NotoNastaliqUrdu-Bold.otf",
  9966. "fonts/NotoNastaliqUrdu/unhinted/otf/NotoNastaliqUrdu-Regular.otf",
  9967. "fonts/NotoNastaliqUrdu/unhinted/slim-variable-ttf/NotoNastaliqUrdu[wght].ttf",
  9968. "fonts/NotoNastaliqUrdu/unhinted/ttf/NotoNastaliqUrdu-Bold.ttf",
  9969. "fonts/NotoNastaliqUrdu/unhinted/ttf/NotoNastaliqUrdu-Regular.ttf"
  9970. ],
  9971. "latest_release": {
  9972. "notes": "Noto Nastaliq Urdu v4.000\n\nThis is a major re-engineering of the font, which fixes most open issues. Dot positioning and bari ye handling has been extensively revised. Some connections have been simplified, reducing the glyphset dramatically.\n",
  9973. "published": "2024-07-17T17:00:20+00:00",
  9974. "url": "https://github.com/notofonts/nastaliq/releases/tag/NotoNastaliqUrdu-v4.000",
  9975. "version": "v4.000"
  9976. }
  9977. }
  9978. },
  9979. "known_releases": [
  9980. "NotoNastaliqUrdu-v3.004",
  9981. "NotoNastaliqUrdu-v3.005",
  9982. "NotoNastaliqUrdu-v3.006",
  9983. "NotoNastaliqUrdu-v3.007",
  9984. "NotoNastaliqUrdu-v3.008",
  9985. "NotoNastaliqUrdu-v3.009",
  9986. "NotoNastaliqUrdu-v4.000"
  9987. ]
  9988. },
  9989. "new-tai-lue": {
  9990. "families": {
  9991. "Noto Sans New Tai Lue": {
  9992. "files": [
  9993. "fonts/NotoSansNewTaiLue/unhinted/ttf/NotoSansNewTaiLue-Medium.ttf",
  9994. "fonts/NotoSansNewTaiLue/unhinted/ttf/NotoSansNewTaiLue-Bold.ttf",
  9995. "fonts/NotoSansNewTaiLue/unhinted/ttf/NotoSansNewTaiLue-Regular.ttf",
  9996. "fonts/NotoSansNewTaiLue/unhinted/ttf/NotoSansNewTaiLue-Semibold.ttf",
  9997. "fonts/NotoSansNewTaiLue/unhinted/slim-variable-ttf/NotoSansNewTaiLue[wght].ttf",
  9998. "fonts/NotoSansNewTaiLue/unhinted/variable-ttf/NotoSansNewTaiLue[wght].ttf",
  9999. "fonts/NotoSansNewTaiLue/unhinted/otf/NotoSansNewTaiLue-Medium.otf",
  10000. "fonts/NotoSansNewTaiLue/unhinted/otf/NotoSansNewTaiLue-Regular.otf",
  10001. "fonts/NotoSansNewTaiLue/unhinted/otf/NotoSansNewTaiLue-Semibold.otf",
  10002. "fonts/NotoSansNewTaiLue/unhinted/otf/NotoSansNewTaiLue-Bold.otf",
  10003. "fonts/NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Medium.ttf",
  10004. "fonts/NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Bold.ttf",
  10005. "fonts/NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Regular.ttf",
  10006. "fonts/NotoSansNewTaiLue/full/ttf/NotoSansNewTaiLue-Semibold.ttf",
  10007. "fonts/NotoSansNewTaiLue/full/slim-variable-ttf/NotoSansNewTaiLue[wght].ttf",
  10008. "fonts/NotoSansNewTaiLue/full/variable-ttf/NotoSansNewTaiLue[wght].ttf",
  10009. "fonts/NotoSansNewTaiLue/full/otf/NotoSansNewTaiLue-Medium.otf",
  10010. "fonts/NotoSansNewTaiLue/full/otf/NotoSansNewTaiLue-Regular.otf",
  10011. "fonts/NotoSansNewTaiLue/full/otf/NotoSansNewTaiLue-Semibold.otf",
  10012. "fonts/NotoSansNewTaiLue/full/otf/NotoSansNewTaiLue-Bold.otf",
  10013. "fonts/NotoSansNewTaiLue/hinted/ttf/NotoSansNewTaiLue-Medium.ttf",
  10014. "fonts/NotoSansNewTaiLue/hinted/ttf/NotoSansNewTaiLue-Bold.ttf",
  10015. "fonts/NotoSansNewTaiLue/hinted/ttf/NotoSansNewTaiLue-Regular.ttf",
  10016. "fonts/NotoSansNewTaiLue/hinted/ttf/NotoSansNewTaiLue-Semibold.ttf",
  10017. "fonts/NotoSansNewTaiLue/googlefonts/ttf/NotoSansNewTaiLue-Medium.ttf",
  10018. "fonts/NotoSansNewTaiLue/googlefonts/ttf/NotoSansNewTaiLue-Bold.ttf",
  10019. "fonts/NotoSansNewTaiLue/googlefonts/ttf/NotoSansNewTaiLue-Regular.ttf",
  10020. "fonts/NotoSansNewTaiLue/googlefonts/variable-ttf/NotoSansNewTaiLue[wght].ttf"
  10021. ],
  10022. "latest_release": {
  10023. "notes": "Noto Sans New Tai Lue v2.004\n\nThis release fixes the encoding of U+19D2 (NEW TAI LUE DIGIT TWO). See #2\n",
  10024. "published": "2023-09-14T12:19:49",
  10025. "url": "https://github.com/notofonts/new-tai-lue/releases/tag/NotoSansNewTaiLue-v2.004",
  10026. "version": "v2.004"
  10027. }
  10028. }
  10029. },
  10030. "known_releases": [
  10031. "NotoSansNewTaiLue-v2.003",
  10032. "NotoSansNewTaiLue-v2.004"
  10033. ]
  10034. },
  10035. "newa": {
  10036. "families": {
  10037. "Noto Sans Newa": {
  10038. "files": [
  10039. "fonts/NotoSansNewa/hinted/ttf/NotoSansNewa-Regular.ttf",
  10040. "fonts/NotoSansNewa/unhinted/otf/NotoSansNewa-Regular.otf",
  10041. "fonts/NotoSansNewa/unhinted/ttf/NotoSansNewa-Regular.ttf",
  10042. "fonts/NotoSansNewa/full/otf/NotoSansNewa-Regular.otf",
  10043. "fonts/NotoSansNewa/full/ttf/NotoSansNewa-Regular.ttf",
  10044. "fonts/NotoSansNewa/googlefonts/ttf/NotoSansNewa-Regular.ttf"
  10045. ],
  10046. "latest_release": {
  10047. "notes": "Noto Sans Newa v2.007\n\nThis release fixes an issue with attaching marks to dependent vowels.\n",
  10048. "published": "2022-10-24T07:44:09",
  10049. "url": "https://github.com/notofonts/newa/releases/tag/NotoSansNewa-v2.007",
  10050. "version": "v2.007"
  10051. }
  10052. }
  10053. },
  10054. "known_releases": [
  10055. "NotoSansNewa-v2.005",
  10056. "NotoSansNewa-v2.006",
  10057. "NotoSansNewa-v2.007"
  10058. ]
  10059. },
  10060. "nko": {
  10061. "families": {
  10062. "Noto Sans NKo": {
  10063. "files": [
  10064. "fonts/NotoSansNKo/full/ttf/NotoSansNKo-Regular.ttf",
  10065. "fonts/NotoSansNKo/full/otf/NotoSansNKo-Regular.otf",
  10066. "fonts/NotoSansNKo/hinted/ttf/NotoSansNKo-Regular.ttf",
  10067. "fonts/NotoSansNKo/unhinted/slim-otf/NotoSansNKo-Regular.otf",
  10068. "fonts/NotoSansNKo/unhinted/ttf/NotoSansNKo-Regular.ttf",
  10069. "fonts/NotoSansNKo/unhinted/otf/NotoSansNKo-Regular.otf",
  10070. "fonts/NotoSansNKo/googlefonts/ttf/NotoSansNKo-Regular.ttf"
  10071. ],
  10072. "latest_release": {
  10073. "notes": "This release:\r\n\r\n* Adjust the size of the dorome, thanks to Neil Patel\r\n* Reshapes the tone marks to make them easily distinguishable (#3)\r\n* Sets above marks at a constant height (#7)\r\n* Add spaces around Dantayalan where necessary (#5)",
  10074. "published": "2023-06-23T08:45:44",
  10075. "url": "https://github.com/notofonts/nko/releases/tag/NotoSansNKo-v2.004",
  10076. "version": "v2.004"
  10077. }
  10078. },
  10079. "Noto Sans NKo Unjoined": {
  10080. "files": [
  10081. "fonts/NotoSansNKoUnjoined/full/ttf/NotoSansNKoUnjoined-Regular.ttf",
  10082. "fonts/NotoSansNKoUnjoined/full/ttf/NotoSansNKoUnjoined-Bold.ttf",
  10083. "fonts/NotoSansNKoUnjoined/full/otf/NotoSansNKoUnjoined-Bold.otf",
  10084. "fonts/NotoSansNKoUnjoined/full/otf/NotoSansNKoUnjoined-Regular.otf",
  10085. "fonts/NotoSansNKoUnjoined/full/variable-ttf/NotoSansNKoUnjoined[wght].ttf",
  10086. "fonts/NotoSansNKoUnjoined/full/slim-variable-ttf/NotoSansNKoUnjoined[wght].ttf",
  10087. "fonts/NotoSansNKoUnjoined/hinted/ttf/NotoSansNKoUnjoined-Regular.ttf",
  10088. "fonts/NotoSansNKoUnjoined/hinted/ttf/NotoSansNKoUnjoined-Bold.ttf",
  10089. "fonts/NotoSansNKoUnjoined/unhinted/ttf/NotoSansNKoUnjoined-Regular.ttf",
  10090. "fonts/NotoSansNKoUnjoined/unhinted/ttf/NotoSansNKoUnjoined-Bold.ttf",
  10091. "fonts/NotoSansNKoUnjoined/unhinted/otf/NotoSansNKoUnjoined-Bold.otf",
  10092. "fonts/NotoSansNKoUnjoined/unhinted/otf/NotoSansNKoUnjoined-Regular.otf",
  10093. "fonts/NotoSansNKoUnjoined/unhinted/variable-ttf/NotoSansNKoUnjoined[wght].ttf",
  10094. "fonts/NotoSansNKoUnjoined/unhinted/slim-variable-ttf/NotoSansNKoUnjoined[wght].ttf",
  10095. "fonts/NotoSansNKoUnjoined/googlefonts/ttf/NotoSansNKoUnjoined-Regular.ttf",
  10096. "fonts/NotoSansNKoUnjoined/googlefonts/ttf/NotoSansNKoUnjoined-Bold.ttf",
  10097. "fonts/NotoSansNKoUnjoined/googlefonts/variable-ttf/NotoSansNKoUnjoined[wght].ttf"
  10098. ],
  10099. "latest_release": {
  10100. "notes": "This is a new font for display purposes, based on Noto Sans NKo with modifications to add a second weight by myself and Neil Patel.",
  10101. "published": "2023-06-23T08:45:37",
  10102. "url": "https://github.com/notofonts/nko/releases/tag/NotoSansNKoUnjoined-v2.004",
  10103. "version": "v2.004"
  10104. }
  10105. }
  10106. },
  10107. "known_releases": [
  10108. "NotoSansNKo-v2.003",
  10109. "NotoSansNKoUnjoined-v2.004",
  10110. "NotoSansNKo-v2.004"
  10111. ]
  10112. },
  10113. "nushu": {
  10114. "families": {
  10115. "Noto Sans Nushu": {
  10116. "files": [
  10117. "fonts/NotoSansNushu/googlefonts/ttf/NotoSansNushu-Regular.ttf",
  10118. "fonts/NotoSansNushu/unhinted/otf/NotoSansNushu-Regular.otf",
  10119. "fonts/NotoSansNushu/unhinted/ttf/NotoSansNushu-Regular.ttf",
  10120. "fonts/NotoSansNushu/full/otf/NotoSansNushu-Regular.otf",
  10121. "fonts/NotoSansNushu/full/ttf/NotoSansNushu-Regular.ttf",
  10122. "fonts/NotoSansNushu/hinted/ttf/NotoSansNushu-Regular.ttf"
  10123. ],
  10124. "latest_release": {
  10125. "notes": "Noto Sans Nushu v1.003 This release fixes a number of fontbakery fails.\n",
  10126. "published": "2022-12-13T09:10:46",
  10127. "url": "https://github.com/notofonts/nushu/releases/tag/NotoSansNushu-v1.003",
  10128. "version": "v1.003"
  10129. }
  10130. },
  10131. "Noto Traditional Nushu": {
  10132. "files": [
  10133. "fonts/NotoTraditionalNushu/unhinted/ttf/NotoTraditionalNushu-Bold.ttf",
  10134. "fonts/NotoTraditionalNushu/unhinted/ttf/NotoTraditionalNushu-Light.ttf",
  10135. "fonts/NotoTraditionalNushu/unhinted/ttf/NotoTraditionalNushu-Regular.ttf",
  10136. "fonts/NotoTraditionalNushu/unhinted/variable-ttf/NotoTraditionalNushu[wght].ttf",
  10137. "fonts/NotoTraditionalNushu/unhinted/otf/NotoTraditionalNushu-Light.otf",
  10138. "fonts/NotoTraditionalNushu/unhinted/otf/NotoTraditionalNushu-Regular.otf",
  10139. "fonts/NotoTraditionalNushu/unhinted/otf/NotoTraditionalNushu-Bold.otf",
  10140. "fonts/NotoTraditionalNushu/unhinted/slim-variable-ttf/NotoTraditionalNushu[wght].ttf",
  10141. "fonts/NotoTraditionalNushu/full/ttf/NotoTraditionalNushu-Bold.ttf",
  10142. "fonts/NotoTraditionalNushu/full/ttf/NotoTraditionalNushu-Light.ttf",
  10143. "fonts/NotoTraditionalNushu/full/ttf/NotoTraditionalNushu-Regular.ttf",
  10144. "fonts/NotoTraditionalNushu/full/variable-ttf/NotoTraditionalNushu[wght].ttf",
  10145. "fonts/NotoTraditionalNushu/full/otf/NotoTraditionalNushu-Light.otf",
  10146. "fonts/NotoTraditionalNushu/full/otf/NotoTraditionalNushu-Regular.otf",
  10147. "fonts/NotoTraditionalNushu/full/otf/NotoTraditionalNushu-Bold.otf",
  10148. "fonts/NotoTraditionalNushu/full/slim-variable-ttf/NotoTraditionalNushu[wght].ttf",
  10149. "fonts/NotoTraditionalNushu/googlefonts/ttf/NotoTraditionalNushu-Bold.ttf",
  10150. "fonts/NotoTraditionalNushu/googlefonts/ttf/NotoTraditionalNushu-Light.ttf",
  10151. "fonts/NotoTraditionalNushu/googlefonts/ttf/NotoTraditionalNushu-Regular.ttf",
  10152. "fonts/NotoTraditionalNushu/googlefonts/variable-ttf/NotoTraditionalNushu[wght].ttf",
  10153. "fonts/NotoTraditionalNushu/hinted/ttf/NotoTraditionalNushu-Bold.ttf",
  10154. "fonts/NotoTraditionalNushu/hinted/ttf/NotoTraditionalNushu-Light.ttf",
  10155. "fonts/NotoTraditionalNushu/hinted/ttf/NotoTraditionalNushu-Regular.ttf"
  10156. ],
  10157. "latest_release": {
  10158. "notes": "Noto Traditional Nushu v2.003\n\nThis release fixes a number of fontbakery fails.\n",
  10159. "published": "2023-01-03T08:08:09",
  10160. "url": "https://github.com/notofonts/nushu/releases/tag/NotoTraditionalNushu-v2.003",
  10161. "version": "v2.003"
  10162. }
  10163. }
  10164. },
  10165. "known_releases": [
  10166. "NotoSansNushu-v1.003",
  10167. "NotoTraditionalNushu-v2.003"
  10168. ]
  10169. },
  10170. "nyiakeng-puachue-hmong": {
  10171. "families": {
  10172. "Noto Serif NPHmong": {
  10173. "files": [
  10174. "fonts/NotoSerifNPHmong/full/slim-variable-ttf/NotoSerifNPHmong[wght].ttf",
  10175. "fonts/NotoSerifNPHmong/full/ttf/NotoSerifNPHmong-SemiBold.ttf",
  10176. "fonts/NotoSerifNPHmong/full/ttf/NotoSerifNPHmong-Bold.ttf",
  10177. "fonts/NotoSerifNPHmong/full/ttf/NotoSerifNPHmong-Medium.ttf",
  10178. "fonts/NotoSerifNPHmong/full/ttf/NotoSerifNPHmong-Regular.ttf",
  10179. "fonts/NotoSerifNPHmong/full/variable-ttf/NotoSerifNPHmong[wght].ttf",
  10180. "fonts/NotoSerifNPHmong/full/otf/NotoSerifNPHmong-SemiBold.otf",
  10181. "fonts/NotoSerifNPHmong/full/otf/NotoSerifNPHmong-Bold.otf",
  10182. "fonts/NotoSerifNPHmong/full/otf/NotoSerifNPHmong-Medium.otf",
  10183. "fonts/NotoSerifNPHmong/full/otf/NotoSerifNPHmong-Regular.otf",
  10184. "fonts/NotoSerifNPHmong/googlefonts/ttf/NotoSerifNPHmong-SemiBold.ttf",
  10185. "fonts/NotoSerifNPHmong/googlefonts/ttf/NotoSerifNPHmong-Bold.ttf",
  10186. "fonts/NotoSerifNPHmong/googlefonts/ttf/NotoSerifNPHmong-Medium.ttf",
  10187. "fonts/NotoSerifNPHmong/googlefonts/ttf/NotoSerifNPHmong-Regular.ttf",
  10188. "fonts/NotoSerifNPHmong/googlefonts/variable-ttf/NotoSerifNPHmong[wght].ttf",
  10189. "fonts/NotoSerifNPHmong/unhinted/slim-variable-ttf/NotoSerifNPHmong[wght].ttf",
  10190. "fonts/NotoSerifNPHmong/unhinted/ttf/NotoSerifNPHmong-SemiBold.ttf",
  10191. "fonts/NotoSerifNPHmong/unhinted/ttf/NotoSerifNPHmong-Bold.ttf",
  10192. "fonts/NotoSerifNPHmong/unhinted/ttf/NotoSerifNPHmong-Medium.ttf",
  10193. "fonts/NotoSerifNPHmong/unhinted/ttf/NotoSerifNPHmong-Regular.ttf",
  10194. "fonts/NotoSerifNPHmong/unhinted/variable-ttf/NotoSerifNPHmong[wght].ttf",
  10195. "fonts/NotoSerifNPHmong/unhinted/otf/NotoSerifNPHmong-SemiBold.otf",
  10196. "fonts/NotoSerifNPHmong/unhinted/otf/NotoSerifNPHmong-Bold.otf",
  10197. "fonts/NotoSerifNPHmong/unhinted/otf/NotoSerifNPHmong-Medium.otf",
  10198. "fonts/NotoSerifNPHmong/unhinted/otf/NotoSerifNPHmong-Regular.otf",
  10199. "fonts/NotoSerifNPHmong/hinted/ttf/NotoSerifNPHmong-SemiBold.ttf",
  10200. "fonts/NotoSerifNPHmong/hinted/ttf/NotoSerifNPHmong-Bold.ttf",
  10201. "fonts/NotoSerifNPHmong/hinted/ttf/NotoSerifNPHmong-Medium.ttf",
  10202. "fonts/NotoSerifNPHmong/hinted/ttf/NotoSerifNPHmong-Regular.ttf"
  10203. ],
  10204. "latest_release": {
  10205. "notes": "Noto Serif NP Hmong v1.001\n\nThis release:\n* renames the font family from \"Noto Serif Nyiakeng Puachue Hmong\" to avoid over-long name table entries\n* fixes a number of other fontbakery fails\n",
  10206. "published": "2022-09-15T08:38:41",
  10207. "url": "https://github.com/notofonts/nyiakeng-puachue-hmong/releases/tag/NotoSerifNPHmong-v1.001",
  10208. "version": "v1.001"
  10209. }
  10210. }
  10211. },
  10212. "known_releases": [
  10213. "NotoSerifNPHmong-v1.001"
  10214. ]
  10215. },
  10216. "ogham": {
  10217. "families": {
  10218. "Noto Sans Ogham": {
  10219. "files": [
  10220. "fonts/NotoSansOgham/full/ttf/NotoSansOgham-Regular.ttf",
  10221. "fonts/NotoSansOgham/full/otf/NotoSansOgham-Regular.otf",
  10222. "fonts/NotoSansOgham/googlefonts/ttf/NotoSansOgham-Regular.ttf",
  10223. "fonts/NotoSansOgham/unhinted/ttf/NotoSansOgham-Regular.ttf",
  10224. "fonts/NotoSansOgham/unhinted/otf/NotoSansOgham-Regular.otf",
  10225. "fonts/NotoSansOgham/hinted/ttf/NotoSansOgham-Regular.ttf"
  10226. ],
  10227. "latest_release": {
  10228. "notes": "Noto Sans Ogham v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10229. "published": "2022-09-19T09:07:40",
  10230. "url": "https://github.com/notofonts/ogham/releases/tag/NotoSansOgham-v2.001",
  10231. "version": "v2.001"
  10232. }
  10233. }
  10234. },
  10235. "known_releases": [
  10236. "NotoSansOgham-v2.001"
  10237. ]
  10238. },
  10239. "ol-chiki": {
  10240. "families": {
  10241. "Noto Sans Ol Chiki": {
  10242. "files": [
  10243. "fonts/NotoSansOlChiki/full/slim-variable-ttf/NotoSansOlChiki[wght].ttf",
  10244. "fonts/NotoSansOlChiki/full/ttf/NotoSansOlChiki-Regular.ttf",
  10245. "fonts/NotoSansOlChiki/full/ttf/NotoSansOlChiki-Medium.ttf",
  10246. "fonts/NotoSansOlChiki/full/ttf/NotoSansOlChiki-Bold.ttf",
  10247. "fonts/NotoSansOlChiki/full/ttf/NotoSansOlChiki-SemiBold.ttf",
  10248. "fonts/NotoSansOlChiki/full/variable-ttf/NotoSansOlChiki[wght].ttf",
  10249. "fonts/NotoSansOlChiki/full/otf/NotoSansOlChiki-Medium.otf",
  10250. "fonts/NotoSansOlChiki/full/otf/NotoSansOlChiki-SemiBold.otf",
  10251. "fonts/NotoSansOlChiki/full/otf/NotoSansOlChiki-Regular.otf",
  10252. "fonts/NotoSansOlChiki/full/otf/NotoSansOlChiki-Bold.otf",
  10253. "fonts/NotoSansOlChiki/googlefonts/ttf/NotoSansOlChiki-Regular.ttf",
  10254. "fonts/NotoSansOlChiki/googlefonts/ttf/NotoSansOlChiki-Medium.ttf",
  10255. "fonts/NotoSansOlChiki/googlefonts/ttf/NotoSansOlChiki-Bold.ttf",
  10256. "fonts/NotoSansOlChiki/googlefonts/ttf/NotoSansOlChiki-SemiBold.ttf",
  10257. "fonts/NotoSansOlChiki/googlefonts/variable-ttf/NotoSansOlChiki[wght].ttf",
  10258. "fonts/NotoSansOlChiki/unhinted/slim-variable-ttf/NotoSansOlChiki[wght].ttf",
  10259. "fonts/NotoSansOlChiki/unhinted/ttf/NotoSansOlChiki-Regular.ttf",
  10260. "fonts/NotoSansOlChiki/unhinted/ttf/NotoSansOlChiki-Medium.ttf",
  10261. "fonts/NotoSansOlChiki/unhinted/ttf/NotoSansOlChiki-Bold.ttf",
  10262. "fonts/NotoSansOlChiki/unhinted/ttf/NotoSansOlChiki-SemiBold.ttf",
  10263. "fonts/NotoSansOlChiki/unhinted/variable-ttf/NotoSansOlChiki[wght].ttf",
  10264. "fonts/NotoSansOlChiki/unhinted/otf/NotoSansOlChiki-Medium.otf",
  10265. "fonts/NotoSansOlChiki/unhinted/otf/NotoSansOlChiki-SemiBold.otf",
  10266. "fonts/NotoSansOlChiki/unhinted/otf/NotoSansOlChiki-Regular.otf",
  10267. "fonts/NotoSansOlChiki/unhinted/otf/NotoSansOlChiki-Bold.otf",
  10268. "fonts/NotoSansOlChiki/hinted/ttf/NotoSansOlChiki-Regular.ttf",
  10269. "fonts/NotoSansOlChiki/hinted/ttf/NotoSansOlChiki-Medium.ttf",
  10270. "fonts/NotoSansOlChiki/hinted/ttf/NotoSansOlChiki-Bold.ttf",
  10271. "fonts/NotoSansOlChiki/hinted/ttf/NotoSansOlChiki-SemiBold.ttf"
  10272. ],
  10273. "latest_release": {
  10274. "notes": "Noto Sans Ol Chiki v2.003\n\nThis release fixes a number of fontbakery fails.\n",
  10275. "published": "2022-09-02T06:28:51",
  10276. "url": "https://github.com/notofonts/ol-chiki/releases/tag/NotoSansOlChiki-v2.003",
  10277. "version": "v2.003"
  10278. }
  10279. }
  10280. },
  10281. "known_releases": [
  10282. "NotoSansOlChiki-v2.003"
  10283. ]
  10284. },
  10285. "old-hungarian": {
  10286. "families": {
  10287. "Noto Sans Old Hungarian": {
  10288. "files": [
  10289. "fonts/NotoSansOldHungarian/full/ttf/NotoSansOldHungarian-Regular.ttf",
  10290. "fonts/NotoSansOldHungarian/full/otf/NotoSansOldHungarian-Regular.otf",
  10291. "fonts/NotoSansOldHungarian/hinted/ttf/NotoSansOldHungarian-Regular.ttf",
  10292. "fonts/NotoSansOldHungarian/unhinted/slim-otf/NotoSansOldHungarian-Regular.otf",
  10293. "fonts/NotoSansOldHungarian/unhinted/ttf/NotoSansOldHungarian-Regular.ttf",
  10294. "fonts/NotoSansOldHungarian/unhinted/otf/NotoSansOldHungarian-Regular.otf",
  10295. "fonts/NotoSansOldHungarian/googlefonts/ttf/NotoSansOldHungarian-Regular.ttf"
  10296. ],
  10297. "latest_release": {
  10298. "notes": "Noto Sans Old Hungarian v2.005\n\nThis version adds a number of punctuation signs mentioned in the Unicode poposal to full builds of this font.\n",
  10299. "published": "2023-06-27T09:51:04",
  10300. "url": "https://github.com/notofonts/old-hungarian/releases/tag/NotoSansOldHungarian-v2.005",
  10301. "version": "v2.005"
  10302. }
  10303. }
  10304. },
  10305. "known_releases": [
  10306. "NotoSansOldHungarian-v2.004",
  10307. "NotoSansOldHungarian-v2.005"
  10308. ]
  10309. },
  10310. "old-hungarian-ui": {},
  10311. "old-italic": {
  10312. "families": {
  10313. "Noto Sans Old Italic": {
  10314. "files": [
  10315. "fonts/NotoSansOldItalic/googlefonts/ttf/NotoSansOldItalic-Regular.ttf",
  10316. "fonts/NotoSansOldItalic/full/otf/NotoSansOldItalic-Regular.otf",
  10317. "fonts/NotoSansOldItalic/full/ttf/NotoSansOldItalic-Regular.ttf",
  10318. "fonts/NotoSansOldItalic/hinted/ttf/NotoSansOldItalic-Regular.ttf",
  10319. "fonts/NotoSansOldItalic/unhinted/otf/NotoSansOldItalic-Regular.otf",
  10320. "fonts/NotoSansOldItalic/unhinted/ttf/NotoSansOldItalic-Regular.ttf"
  10321. ],
  10322. "latest_release": {
  10323. "notes": "Noto Sans Old Italic v2.003\n\nThis version fixes the WWS bits to stop Windows thinking that Old Italic is Italic. (#3)\n",
  10324. "published": "2024-06-11T07:17:26+00:00",
  10325. "url": "https://github.com/notofonts/old-italic/releases/tag/NotoSansOldItalic-v2.004",
  10326. "version": "v2.004"
  10327. }
  10328. }
  10329. },
  10330. "known_releases": [
  10331. "NotoSansOldItalic-v2.003",
  10332. "NotoSansOldItalic-v2.004"
  10333. ]
  10334. },
  10335. "old-north-arabian": {
  10336. "families": {
  10337. "Noto Sans Old North Arabian": {
  10338. "files": [
  10339. "fonts/NotoSansOldNorthArabian/hinted/ttf/NotoSansOldNorthArabian-Regular.ttf",
  10340. "fonts/NotoSansOldNorthArabian/googlefonts/ttf/NotoSansOldNorthArabian-Regular.ttf",
  10341. "fonts/NotoSansOldNorthArabian/unhinted/ttf/NotoSansOldNorthArabian-Regular.ttf",
  10342. "fonts/NotoSansOldNorthArabian/unhinted/otf/NotoSansOldNorthArabian-Regular.otf",
  10343. "fonts/NotoSansOldNorthArabian/full/ttf/NotoSansOldNorthArabian-Regular.ttf",
  10344. "fonts/NotoSansOldNorthArabian/full/otf/NotoSansOldNorthArabian-Regular.otf"
  10345. ],
  10346. "latest_release": {
  10347. "notes": "Noto Sans Old North Arabian v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10348. "published": "2022-09-24T14:23:35",
  10349. "url": "https://github.com/notofonts/old-north-arabian/releases/tag/NotoSansOldNorthArabian-v2.001",
  10350. "version": "v2.001"
  10351. }
  10352. }
  10353. },
  10354. "known_releases": [
  10355. "NotoSansOldNorthArabian-v2.001"
  10356. ]
  10357. },
  10358. "old-permic": {
  10359. "families": {
  10360. "Noto Sans Old Permic": {
  10361. "files": [
  10362. "fonts/NotoSansOldPermic/full/ttf/NotoSansOldPermic-Regular.ttf",
  10363. "fonts/NotoSansOldPermic/full/otf/NotoSansOldPermic-Regular.otf",
  10364. "fonts/NotoSansOldPermic/googlefonts/ttf/NotoSansOldPermic-Regular.ttf",
  10365. "fonts/NotoSansOldPermic/unhinted/ttf/NotoSansOldPermic-Regular.ttf",
  10366. "fonts/NotoSansOldPermic/unhinted/otf/NotoSansOldPermic-Regular.otf",
  10367. "fonts/NotoSansOldPermic/hinted/ttf/NotoSansOldPermic-Regular.ttf"
  10368. ],
  10369. "latest_release": {
  10370. "notes": "Noto Sans Old Permic v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10371. "published": "2022-09-24T14:28:20",
  10372. "url": "https://github.com/notofonts/old-permic/releases/tag/NotoSansOldPermic-v2.001",
  10373. "version": "v2.001"
  10374. }
  10375. }
  10376. },
  10377. "known_releases": [
  10378. "NotoSansOldPermic-v2.001"
  10379. ]
  10380. },
  10381. "old-persian": {
  10382. "families": {
  10383. "Noto Sans Old Persian": {
  10384. "files": [
  10385. "fonts/NotoSansOldPersian/full/ttf/NotoSansOldPersian-Regular.ttf",
  10386. "fonts/NotoSansOldPersian/full/otf/NotoSansOldPersian-Regular.otf",
  10387. "fonts/NotoSansOldPersian/googlefonts/ttf/NotoSansOldPersian-Regular.ttf",
  10388. "fonts/NotoSansOldPersian/unhinted/ttf/NotoSansOldPersian-Regular.ttf",
  10389. "fonts/NotoSansOldPersian/unhinted/otf/NotoSansOldPersian-Regular.otf",
  10390. "fonts/NotoSansOldPersian/hinted/ttf/NotoSansOldPersian-Regular.ttf"
  10391. ],
  10392. "latest_release": {
  10393. "notes": "Noto Sans Old Persian v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10394. "published": "2022-09-24T14:26:34",
  10395. "url": "https://github.com/notofonts/old-persian/releases/tag/NotoSansOldPersian-v2.001",
  10396. "version": "v2.001"
  10397. }
  10398. }
  10399. },
  10400. "known_releases": [
  10401. "NotoSansOldPersian-v2.001"
  10402. ]
  10403. },
  10404. "old-sogdian": {
  10405. "families": {
  10406. "Noto Sans Old Sogdian": {
  10407. "files": [
  10408. "fonts/NotoSansOldSogdian/googlefonts/ttf/NotoSansOldSogdian-Regular.ttf",
  10409. "fonts/NotoSansOldSogdian/full/otf/NotoSansOldSogdian-Regular.otf",
  10410. "fonts/NotoSansOldSogdian/full/ttf/NotoSansOldSogdian-Regular.ttf",
  10411. "fonts/NotoSansOldSogdian/hinted/ttf/NotoSansOldSogdian-Regular.ttf",
  10412. "fonts/NotoSansOldSogdian/unhinted/otf/NotoSansOldSogdian-Regular.otf",
  10413. "fonts/NotoSansOldSogdian/unhinted/ttf/NotoSansOldSogdian-Regular.ttf"
  10414. ],
  10415. "latest_release": {
  10416. "notes": "Noto Sans Old Sogdian v2.003\n\nThis release fixes the encoding of alternate FINAL SADHE and AYIN (#1, #3)\n",
  10417. "published": "2024-06-11T07:46:50+00:00",
  10418. "url": "https://github.com/notofonts/old-sogdian/releases/tag/NotoSansOldSogdian-v2.003",
  10419. "version": "v2.003"
  10420. }
  10421. }
  10422. },
  10423. "known_releases": [
  10424. "NotoSansOldSogdian-v2.002",
  10425. "NotoSansOldSogdian-v2.003"
  10426. ]
  10427. },
  10428. "old-south-arabian": {
  10429. "families": {
  10430. "Noto Sans Old South Arabian": {
  10431. "files": [
  10432. "fonts/NotoSansOldSouthArabian/full/ttf/NotoSansOldSouthArabian-Regular.ttf",
  10433. "fonts/NotoSansOldSouthArabian/full/otf/NotoSansOldSouthArabian-Regular.otf",
  10434. "fonts/NotoSansOldSouthArabian/googlefonts/ttf/NotoSansOldSouthArabian-Regular.ttf",
  10435. "fonts/NotoSansOldSouthArabian/unhinted/ttf/NotoSansOldSouthArabian-Regular.ttf",
  10436. "fonts/NotoSansOldSouthArabian/unhinted/otf/NotoSansOldSouthArabian-Regular.otf",
  10437. "fonts/NotoSansOldSouthArabian/hinted/ttf/NotoSansOldSouthArabian-Regular.ttf"
  10438. ],
  10439. "latest_release": {
  10440. "notes": "Noto Sans Old South Arabian v2.001\n\nThis font fixes a number of fontbakery fails.\n",
  10441. "published": "2022-09-24T14:31:33",
  10442. "url": "https://github.com/notofonts/old-south-arabian/releases/tag/NotoSansOldSouthArabian-v2.001",
  10443. "version": "v2.001"
  10444. }
  10445. }
  10446. },
  10447. "known_releases": [
  10448. "NotoSansOldSouthArabian-v2.001"
  10449. ]
  10450. },
  10451. "old-turkic": {
  10452. "families": {
  10453. "Noto Sans Old Turkic": {
  10454. "files": [
  10455. "fonts/NotoSansOldTurkic/googlefonts/ttf/NotoSansOldTurkic-Regular.ttf",
  10456. "fonts/NotoSansOldTurkic/full/otf/NotoSansOldTurkic-Regular.otf",
  10457. "fonts/NotoSansOldTurkic/full/ttf/NotoSansOldTurkic-Regular.ttf",
  10458. "fonts/NotoSansOldTurkic/hinted/ttf/NotoSansOldTurkic-Regular.ttf",
  10459. "fonts/NotoSansOldTurkic/unhinted/otf/NotoSansOldTurkic-Regular.otf",
  10460. "fonts/NotoSansOldTurkic/unhinted/ttf/NotoSansOldTurkic-Regular.ttf"
  10461. ],
  10462. "latest_release": {
  10463. "notes": "Noto Sans Old Turkic v2.004\n\nThis release fixes the shape of U+10C47 ORKHON OT.\n",
  10464. "published": "2024-06-11T10:03:36+00:00",
  10465. "url": "https://github.com/notofonts/old-turkic/releases/tag/NotoSansOldTurkic-v2.004",
  10466. "version": "v2.004"
  10467. }
  10468. }
  10469. },
  10470. "known_releases": [
  10471. "NotoSansOldTurkic-v2.002",
  10472. "NotoSansOldTurkic-v2.003",
  10473. "NotoSansOldTurkic-v2.004"
  10474. ]
  10475. },
  10476. "old-uyghur": {
  10477. "families": {
  10478. "Noto Serif Old Uyghur": {
  10479. "files": [
  10480. "fonts/NotoSerifOldUyghur/googlefonts/ttf/NotoSerifOldUyghur-Regular.ttf",
  10481. "fonts/NotoSerifOldUyghur/full/otf/NotoSerifOldUyghur-Regular.otf",
  10482. "fonts/NotoSerifOldUyghur/full/ttf/NotoSerifOldUyghur-Regular.ttf",
  10483. "fonts/NotoSerifOldUyghur/hinted/ttf/NotoSerifOldUyghur-Regular.ttf",
  10484. "fonts/NotoSerifOldUyghur/unhinted/otf/NotoSerifOldUyghur-Regular.otf",
  10485. "fonts/NotoSerifOldUyghur/unhinted/ttf/NotoSerifOldUyghur-Regular.ttf"
  10486. ],
  10487. "latest_release": {
  10488. "notes": "Noto Serif Old Uyghur v1.004\n\nThis release:\n\n* Adds anchors for combining marks (#5)\n* Improves the joining PE+KAPH (#6)\n* Disables the MEM+LESH ligature to avoid confusion with LESH+MEM (#7)\n",
  10489. "published": "2024-06-11T10:26:23+00:00",
  10490. "url": "https://github.com/notofonts/old-uyghur/releases/tag/NotoSerifOldUyghur-v1.004",
  10491. "version": "v1.004"
  10492. }
  10493. }
  10494. },
  10495. "known_releases": [
  10496. "NotoSerifOldUyghur-v1.002",
  10497. "NotoSerifOldUyghur-v1.003",
  10498. "NotoSerifOldUyghur-v1.004"
  10499. ]
  10500. },
  10501. "oriya": {
  10502. "families": {
  10503. "Noto Sans Oriya": {
  10504. "files": [
  10505. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-CondensedThin.ttf",
  10506. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-CondensedBlack.ttf",
  10507. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-Bold.ttf",
  10508. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-ExtraCondensed.ttf",
  10509. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-ExtraCondensedBlack.ttf",
  10510. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-Black.ttf",
  10511. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-Regular.ttf",
  10512. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-Thin.ttf",
  10513. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-ExtraCondensedBold.ttf",
  10514. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-Condensed.ttf",
  10515. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-CondensedBold.ttf",
  10516. "fonts/NotoSansOriya/hinted/ttf/NotoSansOriya-ExtraCondensedThin.ttf",
  10517. "fonts/NotoSansOriya/full/slim-variable-ttf/NotoSansOriya[wght].ttf",
  10518. "fonts/NotoSansOriya/full/variable-ttf/NotoSansOriya[wdth,wght].ttf",
  10519. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-CondensedThin.ttf",
  10520. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-CondensedBlack.ttf",
  10521. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-Bold.ttf",
  10522. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensed.ttf",
  10523. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedBlack.ttf",
  10524. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-Black.ttf",
  10525. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-Regular.ttf",
  10526. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-Thin.ttf",
  10527. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedBold.ttf",
  10528. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-Condensed.ttf",
  10529. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-CondensedBold.ttf",
  10530. "fonts/NotoSansOriya/full/ttf/NotoSansOriya-ExtraCondensedThin.ttf",
  10531. "fonts/NotoSansOriya/full/otf/NotoSansOriya-ExtraCondensedBlack.otf",
  10532. "fonts/NotoSansOriya/full/otf/NotoSansOriya-Bold.otf",
  10533. "fonts/NotoSansOriya/full/otf/NotoSansOriya-ExtraCondensedBold.otf",
  10534. "fonts/NotoSansOriya/full/otf/NotoSansOriya-CondensedThin.otf",
  10535. "fonts/NotoSansOriya/full/otf/NotoSansOriya-CondensedBlack.otf",
  10536. "fonts/NotoSansOriya/full/otf/NotoSansOriya-Thin.otf",
  10537. "fonts/NotoSansOriya/full/otf/NotoSansOriya-Regular.otf",
  10538. "fonts/NotoSansOriya/full/otf/NotoSansOriya-ExtraCondensedThin.otf",
  10539. "fonts/NotoSansOriya/full/otf/NotoSansOriya-Black.otf",
  10540. "fonts/NotoSansOriya/full/otf/NotoSansOriya-CondensedBold.otf",
  10541. "fonts/NotoSansOriya/full/otf/NotoSansOriya-ExtraCondensed.otf",
  10542. "fonts/NotoSansOriya/full/otf/NotoSansOriya-Condensed.otf",
  10543. "fonts/NotoSansOriya/unhinted/slim-variable-ttf/NotoSansOriya[wght].ttf",
  10544. "fonts/NotoSansOriya/unhinted/variable-ttf/NotoSansOriya[wdth,wght].ttf",
  10545. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-CondensedThin.ttf",
  10546. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-CondensedBlack.ttf",
  10547. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-Bold.ttf",
  10548. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-ExtraCondensed.ttf",
  10549. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-ExtraCondensedBlack.ttf",
  10550. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-Black.ttf",
  10551. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-Regular.ttf",
  10552. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-Thin.ttf",
  10553. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-ExtraCondensedBold.ttf",
  10554. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-Condensed.ttf",
  10555. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-CondensedBold.ttf",
  10556. "fonts/NotoSansOriya/unhinted/ttf/NotoSansOriya-ExtraCondensedThin.ttf",
  10557. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-ExtraCondensedBlack.otf",
  10558. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-Bold.otf",
  10559. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-ExtraCondensedBold.otf",
  10560. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-CondensedThin.otf",
  10561. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-CondensedBlack.otf",
  10562. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-Thin.otf",
  10563. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-Regular.otf",
  10564. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-ExtraCondensedThin.otf",
  10565. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-Black.otf",
  10566. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-CondensedBold.otf",
  10567. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-ExtraCondensed.otf",
  10568. "fonts/NotoSansOriya/unhinted/otf/NotoSansOriya-Condensed.otf",
  10569. "fonts/NotoSansOriya/googlefonts/variable-ttf/NotoSansOriya[wdth,wght].ttf"
  10570. ],
  10571. "latest_release": {
  10572. "notes": "Noto Sans Oriya v2.007\n\n* ORIYA DIGIT THREE (U+0B69) updated, thanks to Paul Hanslow\n* Ligature support for candrabindu and reph, thanks to Yusuke Shirakihara\n* Improved positioning of subjoining ra\n* Restored some missing conjuncts\n",
  10573. "published": "2026-02-03T17:44:55+00:00",
  10574. "url": "https://github.com/notofonts/oriya/releases/tag/NotoSansOriya-v2.007",
  10575. "version": "v2.007"
  10576. }
  10577. },
  10578. "Noto Serif Oriya": {
  10579. "files": [
  10580. "fonts/NotoSerifOriya/full/otf/NotoSerifOriya-Regular.otf",
  10581. "fonts/NotoSerifOriya/full/otf/NotoSerifOriya-Medium.otf",
  10582. "fonts/NotoSerifOriya/full/otf/NotoSerifOriya-SemiBold.otf",
  10583. "fonts/NotoSerifOriya/full/otf/NotoSerifOriya-Bold.otf",
  10584. "fonts/NotoSerifOriya/full/ttf/NotoSerifOriya-Medium.ttf",
  10585. "fonts/NotoSerifOriya/full/ttf/NotoSerifOriya-Bold.ttf",
  10586. "fonts/NotoSerifOriya/full/ttf/NotoSerifOriya-Regular.ttf",
  10587. "fonts/NotoSerifOriya/full/ttf/NotoSerifOriya-SemiBold.ttf",
  10588. "fonts/NotoSerifOriya/full/slim-variable-ttf/NotoSerifOriya[wght].ttf",
  10589. "fonts/NotoSerifOriya/full/variable-ttf/NotoSerifOriya[wght].ttf",
  10590. "fonts/NotoSerifOriya/googlefonts/ttf/NotoSerifOriya-Medium.ttf",
  10591. "fonts/NotoSerifOriya/googlefonts/ttf/NotoSerifOriya-Bold.ttf",
  10592. "fonts/NotoSerifOriya/googlefonts/ttf/NotoSerifOriya-Regular.ttf",
  10593. "fonts/NotoSerifOriya/googlefonts/ttf/NotoSerifOriya-SemiBold.ttf",
  10594. "fonts/NotoSerifOriya/googlefonts/variable-ttf/NotoSerifOriya[wght].ttf",
  10595. "fonts/NotoSerifOriya/unhinted/otf/NotoSerifOriya-Regular.otf",
  10596. "fonts/NotoSerifOriya/unhinted/otf/NotoSerifOriya-Medium.otf",
  10597. "fonts/NotoSerifOriya/unhinted/otf/NotoSerifOriya-SemiBold.otf",
  10598. "fonts/NotoSerifOriya/unhinted/otf/NotoSerifOriya-Bold.otf",
  10599. "fonts/NotoSerifOriya/unhinted/ttf/NotoSerifOriya-Medium.ttf",
  10600. "fonts/NotoSerifOriya/unhinted/ttf/NotoSerifOriya-Bold.ttf",
  10601. "fonts/NotoSerifOriya/unhinted/ttf/NotoSerifOriya-Regular.ttf",
  10602. "fonts/NotoSerifOriya/unhinted/ttf/NotoSerifOriya-SemiBold.ttf",
  10603. "fonts/NotoSerifOriya/unhinted/slim-variable-ttf/NotoSerifOriya[wght].ttf",
  10604. "fonts/NotoSerifOriya/unhinted/variable-ttf/NotoSerifOriya[wght].ttf",
  10605. "fonts/NotoSerifOriya/hinted/ttf/NotoSerifOriya-Medium.ttf",
  10606. "fonts/NotoSerifOriya/hinted/ttf/NotoSerifOriya-Bold.ttf",
  10607. "fonts/NotoSerifOriya/hinted/ttf/NotoSerifOriya-Regular.ttf",
  10608. "fonts/NotoSerifOriya/hinted/ttf/NotoSerifOriya-SemiBold.ttf"
  10609. ],
  10610. "latest_release": {
  10611. "notes": "Noto Serif Oriya v1.051\n\n* Administrative fixes\n* Add dotted circle anchors\n",
  10612. "published": "2022-07-04T13:19:53",
  10613. "url": "https://github.com/notofonts/oriya/releases/tag/NotoSerifOriya-v1.051",
  10614. "version": "v1.051"
  10615. }
  10616. }
  10617. },
  10618. "known_releases": [
  10619. "NotoSerifOriya-v1.051",
  10620. "NotoSansOriya-v2.001",
  10621. "NotoSansOriya-v2.002",
  10622. "NotoSansOriya-v2.003",
  10623. "NotoSansOriya-v2.005",
  10624. "NotoSansOriya-v2.006",
  10625. "NotoSansOriya-v2.007"
  10626. ]
  10627. },
  10628. "osage": {
  10629. "families": {
  10630. "Noto Sans Osage": {
  10631. "files": [
  10632. "fonts/NotoSansOsage/full/ttf/NotoSansOsage-Regular.ttf",
  10633. "fonts/NotoSansOsage/full/otf/NotoSansOsage-Regular.otf",
  10634. "fonts/NotoSansOsage/googlefonts/ttf/NotoSansOsage-Regular.ttf",
  10635. "fonts/NotoSansOsage/unhinted/ttf/NotoSansOsage-Regular.ttf",
  10636. "fonts/NotoSansOsage/unhinted/otf/NotoSansOsage-Regular.otf",
  10637. "fonts/NotoSansOsage/hinted/ttf/NotoSansOsage-Regular.ttf"
  10638. ],
  10639. "latest_release": {
  10640. "notes": "Noto Sans Osage v2.002\n\nThis release fixes a number of fontbakery fails.\n",
  10641. "published": "2022-09-02T06:58:14",
  10642. "url": "https://github.com/notofonts/osage/releases/tag/NotoSansOsage-v2.002",
  10643. "version": "v2.002"
  10644. }
  10645. }
  10646. },
  10647. "known_releases": [
  10648. "NotoSansOsage-v2.002"
  10649. ]
  10650. },
  10651. "osmanya": {
  10652. "families": {
  10653. "Noto Sans Osmanya": {
  10654. "files": [
  10655. "fonts/NotoSansOsmanya/full/ttf/NotoSansOsmanya-Regular.ttf",
  10656. "fonts/NotoSansOsmanya/full/otf/NotoSansOsmanya-Regular.otf",
  10657. "fonts/NotoSansOsmanya/googlefonts/ttf/NotoSansOsmanya-Regular.ttf",
  10658. "fonts/NotoSansOsmanya/unhinted/ttf/NotoSansOsmanya-Regular.ttf",
  10659. "fonts/NotoSansOsmanya/unhinted/otf/NotoSansOsmanya-Regular.otf",
  10660. "fonts/NotoSansOsmanya/hinted/ttf/NotoSansOsmanya-Regular.ttf"
  10661. ],
  10662. "latest_release": {
  10663. "notes": "Noto Sans Osmanya v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10664. "published": "2022-09-02T06:59:23",
  10665. "url": "https://github.com/notofonts/osmanya/releases/tag/NotoSansOsmanya-v2.001",
  10666. "version": "v2.001"
  10667. }
  10668. }
  10669. },
  10670. "known_releases": [
  10671. "NotoSansOsmanya-v2.001"
  10672. ]
  10673. },
  10674. "ottoman-siyaq-numbers": {
  10675. "families": {
  10676. "Noto Serif Ottoman Siyaq": {
  10677. "files": [
  10678. "fonts/NotoSerifOttomanSiyaq/hinted/ttf/NotoSerifOttomanSiyaq-Regular.ttf",
  10679. "fonts/NotoSerifOttomanSiyaq/googlefonts/ttf/NotoSerifOttomanSiyaq-Regular.ttf",
  10680. "fonts/NotoSerifOttomanSiyaq/full/ttf/NotoSerifOttomanSiyaq-Regular.ttf",
  10681. "fonts/NotoSerifOttomanSiyaq/full/otf/NotoSerifOttomanSiyaq-Regular.otf",
  10682. "fonts/NotoSerifOttomanSiyaq/unhinted/ttf/NotoSerifOttomanSiyaq-Regular.ttf",
  10683. "fonts/NotoSerifOttomanSiyaq/unhinted/slim-otf/NotoSerifOttomanSiyaq-Regular.otf",
  10684. "fonts/NotoSerifOttomanSiyaq/unhinted/otf/NotoSerifOttomanSiyaq-Regular.otf"
  10685. ],
  10686. "latest_release": {
  10687. "notes": "Noto Serif Ottoman Siyaq v1.006\n\nThis release:\n* Takes the companion latin from Noto Serif, not Noto Sans (#3)\n* Fixes the marratan ligature (#2)\n",
  10688. "published": "2023-08-01T07:31:49",
  10689. "url": "https://github.com/notofonts/ottoman-siyaq-numbers/releases/tag/NotoSerifOttomanSiyaq-v1.006",
  10690. "version": "v1.006"
  10691. }
  10692. }
  10693. },
  10694. "known_releases": [
  10695. "NotoSerifOttomanSiyaq-v1.005",
  10696. "NotoSerifOttomanSiyaq-v1.006"
  10697. ]
  10698. },
  10699. "pahawh-hmong": {
  10700. "families": {
  10701. "Noto Sans Pahawh Hmong": {
  10702. "files": [
  10703. "fonts/NotoSansPahawhHmong/full/ttf/NotoSansPahawhHmong-Regular.ttf",
  10704. "fonts/NotoSansPahawhHmong/full/otf/NotoSansPahawhHmong-Regular.otf",
  10705. "fonts/NotoSansPahawhHmong/googlefonts/ttf/NotoSansPahawhHmong-Regular.ttf",
  10706. "fonts/NotoSansPahawhHmong/unhinted/ttf/NotoSansPahawhHmong-Regular.ttf",
  10707. "fonts/NotoSansPahawhHmong/unhinted/otf/NotoSansPahawhHmong-Regular.otf",
  10708. "fonts/NotoSansPahawhHmong/hinted/ttf/NotoSansPahawhHmong-Regular.ttf"
  10709. ],
  10710. "latest_release": {
  10711. "notes": "Noto Sans Pahawh Hmong v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10712. "published": "2022-08-29T20:47:43",
  10713. "url": "https://github.com/notofonts/pahawh-hmong/releases/tag/NotoSansPahawhHmong-v2.001",
  10714. "version": "v2.001"
  10715. }
  10716. }
  10717. },
  10718. "known_releases": [
  10719. "NotoSansPahawhHmong-v2.001"
  10720. ]
  10721. },
  10722. "palmyrene": {
  10723. "families": {
  10724. "Noto Sans Palmyrene": {
  10725. "files": [
  10726. "fonts/NotoSansPalmyrene/full/ttf/NotoSansPalmyrene-Regular.ttf",
  10727. "fonts/NotoSansPalmyrene/full/otf/NotoSansPalmyrene-Regular.otf",
  10728. "fonts/NotoSansPalmyrene/googlefonts/ttf/NotoSansPalmyrene-Regular.ttf",
  10729. "fonts/NotoSansPalmyrene/unhinted/ttf/NotoSansPalmyrene-Regular.ttf",
  10730. "fonts/NotoSansPalmyrene/unhinted/otf/NotoSansPalmyrene-Regular.otf",
  10731. "fonts/NotoSansPalmyrene/hinted/ttf/NotoSansPalmyrene-Regular.ttf"
  10732. ],
  10733. "latest_release": {
  10734. "notes": "Noto Sans Palmyrene v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10735. "published": "2022-09-24T15:02:19",
  10736. "url": "https://github.com/notofonts/palmyrene/releases/tag/NotoSansPalmyrene-v2.001",
  10737. "version": "v2.001"
  10738. }
  10739. }
  10740. },
  10741. "known_releases": [
  10742. "NotoSansPalmyrene-v2.001"
  10743. ]
  10744. },
  10745. "pau-cin-hau": {
  10746. "families": {
  10747. "Noto Sans Pau Cin Hau": {
  10748. "files": [
  10749. "fonts/NotoSansPauCinHau/full/ttf/NotoSansPauCinHau-Regular.ttf",
  10750. "fonts/NotoSansPauCinHau/full/otf/NotoSansPauCinHau-Regular.otf",
  10751. "fonts/NotoSansPauCinHau/googlefonts/ttf/NotoSansPauCinHau-Regular.ttf",
  10752. "fonts/NotoSansPauCinHau/unhinted/ttf/NotoSansPauCinHau-Regular.ttf",
  10753. "fonts/NotoSansPauCinHau/unhinted/otf/NotoSansPauCinHau-Regular.otf",
  10754. "fonts/NotoSansPauCinHau/hinted/ttf/NotoSansPauCinHau-Regular.ttf"
  10755. ],
  10756. "latest_release": {
  10757. "notes": "Noto Sans Pau Cin Hau v2.002\n\nThis release fixes a number of fontbakery fails.\n",
  10758. "published": "2022-09-02T07:11:20",
  10759. "url": "https://github.com/notofonts/pau-cin-hau/releases/tag/NotoSansPauCinHau-v2.002",
  10760. "version": "v2.002"
  10761. }
  10762. }
  10763. },
  10764. "known_releases": [
  10765. "NotoSansPauCinHau-v2.002"
  10766. ]
  10767. },
  10768. "phags-pa": {
  10769. "families": {
  10770. "Noto Sans Phags Pa": {
  10771. "files": [
  10772. "fonts/NotoSansPhagsPa/unhinted/otf/NotoSansPhagsPa-Regular.otf",
  10773. "fonts/NotoSansPhagsPa/unhinted/ttf/NotoSansPhagsPa-Regular.ttf",
  10774. "fonts/NotoSansPhagsPa/googlefonts/ttf/NotoSansPhagsPa-Regular.ttf",
  10775. "fonts/NotoSansPhagsPa/hinted/ttf/NotoSansPhagsPa-Regular.ttf",
  10776. "fonts/NotoSansPhagsPa/full/otf/NotoSansPhagsPa-Regular.otf",
  10777. "fonts/NotoSansPhagsPa/full/ttf/NotoSansPhagsPa-Regular.ttf"
  10778. ],
  10779. "latest_release": {
  10780. "notes": "Noto Sans Phags-Pa v2.004\n\nThis version fixes a number of issues (#8, #9) with transitive mirroring.\n",
  10781. "published": "2023-12-01T09:51:20+00:00",
  10782. "url": "https://github.com/notofonts/phags-pa/releases/tag/NotoSansPhagsPa-v2.004",
  10783. "version": "v2.004"
  10784. }
  10785. }
  10786. },
  10787. "known_releases": [
  10788. "NotoSansPhagsPa-v2.003",
  10789. "NotoSansPhagsPa-v2.004"
  10790. ]
  10791. },
  10792. "phoenician": {
  10793. "families": {
  10794. "Noto Sans Phoenician": {
  10795. "files": [
  10796. "fonts/NotoSansPhoenician/full/ttf/NotoSansPhoenician-Regular.ttf",
  10797. "fonts/NotoSansPhoenician/full/otf/NotoSansPhoenician-Regular.otf",
  10798. "fonts/NotoSansPhoenician/googlefonts/ttf/NotoSansPhoenician-Regular.ttf",
  10799. "fonts/NotoSansPhoenician/unhinted/ttf/NotoSansPhoenician-Regular.ttf",
  10800. "fonts/NotoSansPhoenician/unhinted/otf/NotoSansPhoenician-Regular.otf",
  10801. "fonts/NotoSansPhoenician/hinted/ttf/NotoSansPhoenician-Regular.ttf"
  10802. ],
  10803. "latest_release": {
  10804. "notes": "Noto Sans Phoenician v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10805. "published": "2022-09-19T09:02:33",
  10806. "url": "https://github.com/notofonts/phoenician/releases/tag/NotoSansPhoenician-v2.001",
  10807. "version": "v2.001"
  10808. }
  10809. }
  10810. },
  10811. "known_releases": [
  10812. "NotoSansPhoenician-v2.001"
  10813. ]
  10814. },
  10815. "psalter-pahlavi": {
  10816. "families": {
  10817. "Noto Sans Psalter Pahlavi": {
  10818. "files": [
  10819. "fonts/NotoSansPsalterPahlavi/googlefonts/ttf/NotoSansPsalterPahlavi-Regular.ttf",
  10820. "fonts/NotoSansPsalterPahlavi/full/otf/NotoSansPsalterPahlavi-Regular.otf",
  10821. "fonts/NotoSansPsalterPahlavi/full/ttf/NotoSansPsalterPahlavi-Regular.ttf",
  10822. "fonts/NotoSansPsalterPahlavi/hinted/ttf/NotoSansPsalterPahlavi-Regular.ttf",
  10823. "fonts/NotoSansPsalterPahlavi/unhinted/otf/NotoSansPsalterPahlavi-Regular.otf",
  10824. "fonts/NotoSansPsalterPahlavi/unhinted/ttf/NotoSansPsalterPahlavi-Regular.ttf"
  10825. ],
  10826. "latest_release": {
  10827. "notes": "Noto Sans Psalter Pahlavi v2.003\n\nThis release:\n* Corrects the joining behaviour of numbers (#1)\n* Drops the KAF after descenders (#2)\n* Adds a default languagesystem\n",
  10828. "published": "2024-06-13T09:36:54+00:00",
  10829. "url": "https://github.com/notofonts/psalter-pahlavi/releases/tag/NotoSansPsalterPahlavi-v2.003",
  10830. "version": "v2.003"
  10831. }
  10832. }
  10833. },
  10834. "known_releases": [
  10835. "NotoSansPsalterPahlavi-v2.002",
  10836. "NotoSansPsalterPahlavi-v2.003"
  10837. ]
  10838. },
  10839. "rejang": {
  10840. "families": {
  10841. "Noto Sans Rejang": {
  10842. "files": [
  10843. "fonts/NotoSansRejang/hinted/ttf/NotoSansRejang-Regular.ttf",
  10844. "fonts/NotoSansRejang/full/ttf/NotoSansRejang-Regular.ttf",
  10845. "fonts/NotoSansRejang/full/otf/NotoSansRejang-Regular.otf",
  10846. "fonts/NotoSansRejang/unhinted/ttf/NotoSansRejang-Regular.ttf",
  10847. "fonts/NotoSansRejang/unhinted/otf/NotoSansRejang-Regular.otf",
  10848. "fonts/NotoSansRejang/googlefonts/ttf/NotoSansRejang-Regular.ttf"
  10849. ],
  10850. "latest_release": {
  10851. "notes": "Noto Sans Rejang v2.003\n\nThis version includes improvements to the RA (#4)\n",
  10852. "published": "2025-11-17T09:02:40+00:00",
  10853. "url": "https://github.com/notofonts/rejang/releases/tag/NotoSansRejang-v2.003",
  10854. "version": "v2.003"
  10855. }
  10856. }
  10857. },
  10858. "known_releases": [
  10859. "NotoSansRejang-v2.001",
  10860. "NotoSansRejang-v2.002",
  10861. "NotoSansRejang-v2.003"
  10862. ]
  10863. },
  10864. "runic": {
  10865. "families": {
  10866. "Noto Sans Runic": {
  10867. "files": [
  10868. "fonts/NotoSansRunic/full/ttf/NotoSansRunic-Regular.ttf",
  10869. "fonts/NotoSansRunic/full/otf/NotoSansRunic-Regular.otf",
  10870. "fonts/NotoSansRunic/googlefonts/ttf/NotoSansRunic-Regular.ttf",
  10871. "fonts/NotoSansRunic/unhinted/ttf/NotoSansRunic-Regular.ttf",
  10872. "fonts/NotoSansRunic/unhinted/otf/NotoSansRunic-Regular.otf",
  10873. "fonts/NotoSansRunic/hinted/ttf/NotoSansRunic-Regular.ttf"
  10874. ],
  10875. "latest_release": {
  10876. "notes": "Noto Sans Runic v2.002\n\nThis release fixes a number of fontbakery fails.\n",
  10877. "published": "2022-09-24T13:23:33",
  10878. "url": "https://github.com/notofonts/runic/releases/tag/NotoSansRunic-v2.002",
  10879. "version": "v2.002"
  10880. }
  10881. }
  10882. },
  10883. "known_releases": [
  10884. "NotoSansRunic-v2.002"
  10885. ]
  10886. },
  10887. "samaritan": {
  10888. "families": {
  10889. "Noto Sans Samaritan": {
  10890. "files": [
  10891. "fonts/NotoSansSamaritan/full/ttf/NotoSansSamaritan-Regular.ttf",
  10892. "fonts/NotoSansSamaritan/full/otf/NotoSansSamaritan-Regular.otf",
  10893. "fonts/NotoSansSamaritan/googlefonts/ttf/NotoSansSamaritan-Regular.ttf",
  10894. "fonts/NotoSansSamaritan/unhinted/ttf/NotoSansSamaritan-Regular.ttf",
  10895. "fonts/NotoSansSamaritan/unhinted/otf/NotoSansSamaritan-Regular.otf",
  10896. "fonts/NotoSansSamaritan/hinted/ttf/NotoSansSamaritan-Regular.ttf"
  10897. ],
  10898. "latest_release": {
  10899. "notes": "Noto Sans Samaritan v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10900. "published": "2022-09-24T15:00:35",
  10901. "url": "https://github.com/notofonts/samaritan/releases/tag/NotoSansSamaritan-v2.001",
  10902. "version": "v2.001"
  10903. }
  10904. }
  10905. },
  10906. "known_releases": [
  10907. "NotoSansSamaritan-v2.001"
  10908. ]
  10909. },
  10910. "saurashtra": {
  10911. "families": {
  10912. "Noto Sans Saurashtra": {
  10913. "files": [
  10914. "fonts/NotoSansSaurashtra/hinted/ttf/NotoSansSaurashtra-Regular.ttf",
  10915. "fonts/NotoSansSaurashtra/googlefonts/ttf/NotoSansSaurashtra-Regular.ttf",
  10916. "fonts/NotoSansSaurashtra/unhinted/ttf/NotoSansSaurashtra-Regular.ttf",
  10917. "fonts/NotoSansSaurashtra/unhinted/otf/NotoSansSaurashtra-Regular.otf",
  10918. "fonts/NotoSansSaurashtra/full/ttf/NotoSansSaurashtra-Regular.ttf",
  10919. "fonts/NotoSansSaurashtra/full/otf/NotoSansSaurashtra-Regular.otf"
  10920. ],
  10921. "latest_release": {
  10922. "notes": "Noto Sans Saurashtra v2.002 This release: AUTHORS.txt CONTRIBUTORS.txt Makefile OFL.txt README.md build.stamp documentation fontbakery.yml fonts master_ttf master_ufo qa report.html requirements.txt scripts sources subset-files venv Fixes the category of certain spacing marks. (#3) AUTHORS.txt CONTRIBUTORS.txt Makefile OFL.txt README.md build.stamp documentation fontbakery.yml fonts master_ttf master_ufo qa report.html requirements.txt scripts sources subset-files venv Fixes the counter shape of vocalic rr. (#4)\n",
  10923. "published": "2022-10-10T08:26:11",
  10924. "url": "https://github.com/notofonts/saurashtra/releases/tag/NotoSansSaurashtra-v2.002",
  10925. "version": "v2.002"
  10926. }
  10927. }
  10928. },
  10929. "known_releases": [
  10930. "NotoSansSaurashtra-v2.001",
  10931. "NotoSansSaurashtra-v2.002"
  10932. ]
  10933. },
  10934. "sharada": {
  10935. "families": {
  10936. "Noto Sans Sharada": {
  10937. "files": [
  10938. "fonts/NotoSansSharada/hinted/ttf/NotoSansSharada-Regular.ttf",
  10939. "fonts/NotoSansSharada/unhinted/otf/NotoSansSharada-Regular.otf",
  10940. "fonts/NotoSansSharada/unhinted/ttf/NotoSansSharada-Regular.ttf",
  10941. "fonts/NotoSansSharada/full/otf/NotoSansSharada-Regular.otf",
  10942. "fonts/NotoSansSharada/full/ttf/NotoSansSharada-Regular.ttf",
  10943. "fonts/NotoSansSharada/googlefonts/ttf/NotoSansSharada-Regular.ttf"
  10944. ],
  10945. "latest_release": {
  10946. "notes": "Noto Sans Sharada v2.006\n\nThis release fixes an issue where certain marks (in particular the e vowel) did not attach correctly to the base consonant.\n",
  10947. "published": "2022-10-23T07:04:31",
  10948. "url": "https://github.com/notofonts/sharada/releases/tag/NotoSansSharada-v2.006",
  10949. "version": "v2.006"
  10950. }
  10951. }
  10952. },
  10953. "known_releases": [
  10954. "NotoSansSharada-v2.005",
  10955. "NotoSansSharada-v2.006"
  10956. ]
  10957. },
  10958. "shavian": {
  10959. "families": {
  10960. "Noto Sans Shavian": {
  10961. "files": [
  10962. "fonts/NotoSansShavian/full/ttf/NotoSansShavian-Regular.ttf",
  10963. "fonts/NotoSansShavian/full/otf/NotoSansShavian-Regular.otf",
  10964. "fonts/NotoSansShavian/googlefonts/ttf/NotoSansShavian-Regular.ttf",
  10965. "fonts/NotoSansShavian/unhinted/ttf/NotoSansShavian-Regular.ttf",
  10966. "fonts/NotoSansShavian/unhinted/otf/NotoSansShavian-Regular.otf",
  10967. "fonts/NotoSansShavian/hinted/ttf/NotoSansShavian-Regular.ttf"
  10968. ],
  10969. "latest_release": {
  10970. "notes": "Noto Sans Shavian v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  10971. "published": "2022-09-19T09:09:53",
  10972. "url": "https://github.com/notofonts/shavian/releases/tag/NotoSansShavian-v2.001",
  10973. "version": "v2.001"
  10974. }
  10975. }
  10976. },
  10977. "known_releases": [
  10978. "NotoSansShavian-v2.001"
  10979. ]
  10980. },
  10981. "siddham": {
  10982. "families": {
  10983. "Noto Sans Siddham": {
  10984. "files": [
  10985. "fonts/NotoSansSiddham/full/ttf/NotoSansSiddham-Regular.ttf",
  10986. "fonts/NotoSansSiddham/full/otf/NotoSansSiddham-Regular.otf",
  10987. "fonts/NotoSansSiddham/hinted/ttf/NotoSansSiddham-Regular.ttf",
  10988. "fonts/NotoSansSiddham/unhinted/slim-otf/NotoSansSiddham-Regular.otf",
  10989. "fonts/NotoSansSiddham/unhinted/ttf/NotoSansSiddham-Regular.ttf",
  10990. "fonts/NotoSansSiddham/unhinted/otf/NotoSansSiddham-Regular.otf",
  10991. "fonts/NotoSansSiddham/googlefonts/ttf/NotoSansSiddham-Regular.ttf"
  10992. ],
  10993. "latest_release": {
  10994. "notes": "Noto Sans Siddham v2.005\r\n\r\nThis version contains a number of shaping fixes, including:\r\n\r\n* Make alternate j\u00f1a available by +ss05 (#3)\r\n* Do something sensible with ryu+ss05 (#19)\r\n* Fix an issue where ss04 would take the -i vowel from the following cluster (#14)\r\n* Form missing seed syllables (#18)\r\n* Fix an issue with the ta-ha-ii-ma-m seed (#16)\r\n* Fix attachment to dotted circle\r\n* Raise matras when raising ra head (#12)\r\n* Support raising ra head on third-order conjuncts (#13)\r\n* Change kern feature to dist (#17)",
  10995. "published": "2023-06-21T06:26:18",
  10996. "url": "https://github.com/notofonts/siddham/releases/tag/NotoSansSiddham-v2.005",
  10997. "version": "v2.005"
  10998. }
  10999. }
  11000. },
  11001. "known_releases": [
  11002. "NotoSansSiddham-v2.003",
  11003. "NotoSansSiddham-v2.004",
  11004. "NotoSansSiddham-v2.005"
  11005. ]
  11006. },
  11007. "sign-writing": {
  11008. "families": {
  11009. "Noto Sans Sign Writing": {
  11010. "files": [
  11011. "fonts/NotoSansSignWriting/full/ttf/NotoSansSignWriting-Regular.ttf",
  11012. "fonts/NotoSansSignWriting/full/otf/NotoSansSignWriting-Regular.otf",
  11013. "fonts/NotoSansSignWriting/hinted/ttf/NotoSansSignWriting-Regular.ttf",
  11014. "fonts/NotoSansSignWriting/unhinted/slim-otf/NotoSansSignWriting-Regular.otf",
  11015. "fonts/NotoSansSignWriting/unhinted/ttf/NotoSansSignWriting-Regular.ttf",
  11016. "fonts/NotoSansSignWriting/unhinted/otf/NotoSansSignWriting-Regular.otf",
  11017. "fonts/NotoSansSignWriting/googlefonts/ttf/NotoSansSignWriting-Regular.ttf"
  11018. ],
  11019. "latest_release": {
  11020. "notes": "This release: \r\n\r\n- Allows additional marks on the modified forms of the head (#6) \r\n- Allows multiple modifier marks on the face (#2) \r\n- Ensure that marks correctly overlay onto the head (#4",
  11021. "published": "2023-06-27T07:07:47",
  11022. "url": "https://github.com/notofonts/sign-writing/releases/tag/NotoSansSignWriting-v2.005",
  11023. "version": "v2.005"
  11024. }
  11025. }
  11026. },
  11027. "known_releases": [
  11028. "NotoSansSignWriting-v2.004",
  11029. "NotoSansSignWriting-v2.005"
  11030. ]
  11031. },
  11032. "sinhala": {
  11033. "families": {
  11034. "Noto Sans Sinhala": {
  11035. "files": [
  11036. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-Condensed.ttf",
  11037. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-ExtraLight.ttf",
  11038. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-Light.ttf",
  11039. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-Medium.ttf",
  11040. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-Bold.ttf",
  11041. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-ExtraBold.ttf",
  11042. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-Thin.ttf",
  11043. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-SemiBold.ttf",
  11044. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-ThinCondensed.ttf",
  11045. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-BlackCondensed.ttf",
  11046. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-Black.ttf",
  11047. "fonts/NotoSansSinhala/hinted/ttf/NotoSansSinhala-Regular.ttf",
  11048. "fonts/NotoSansSinhala/full/slim-variable-ttf/NotoSansSinhala[wght].ttf",
  11049. "fonts/NotoSansSinhala/full/variable-ttf/NotoSansSinhala[wdth,wght].ttf",
  11050. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Condensed.ttf",
  11051. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraLight.ttf",
  11052. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Light.ttf",
  11053. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Medium.ttf",
  11054. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Bold.ttf",
  11055. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ExtraBold.ttf",
  11056. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Thin.ttf",
  11057. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-SemiBold.ttf",
  11058. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-ThinCondensed.ttf",
  11059. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-BlackCondensed.ttf",
  11060. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Black.ttf",
  11061. "fonts/NotoSansSinhala/full/ttf/NotoSansSinhala-Regular.ttf",
  11062. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-SemiBold.otf",
  11063. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-ExtraLight.otf",
  11064. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-BlackCondensed.otf",
  11065. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-Medium.otf",
  11066. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-Thin.otf",
  11067. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-ThinCondensed.otf",
  11068. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-Black.otf",
  11069. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-Bold.otf",
  11070. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-Light.otf",
  11071. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-Regular.otf",
  11072. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-ExtraBold.otf",
  11073. "fonts/NotoSansSinhala/full/otf/NotoSansSinhala-Condensed.otf",
  11074. "fonts/NotoSansSinhala/unhinted/slim-variable-ttf/NotoSansSinhala[wght].ttf",
  11075. "fonts/NotoSansSinhala/unhinted/variable-ttf/NotoSansSinhala[wdth,wght].ttf",
  11076. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-Condensed.ttf",
  11077. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-ExtraLight.ttf",
  11078. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-Light.ttf",
  11079. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-Medium.ttf",
  11080. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-Bold.ttf",
  11081. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-ExtraBold.ttf",
  11082. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-Thin.ttf",
  11083. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-SemiBold.ttf",
  11084. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-ThinCondensed.ttf",
  11085. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-BlackCondensed.ttf",
  11086. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-Black.ttf",
  11087. "fonts/NotoSansSinhala/unhinted/ttf/NotoSansSinhala-Regular.ttf",
  11088. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-SemiBold.otf",
  11089. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-ExtraLight.otf",
  11090. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-BlackCondensed.otf",
  11091. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-Medium.otf",
  11092. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-Thin.otf",
  11093. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-ThinCondensed.otf",
  11094. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-Black.otf",
  11095. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-Bold.otf",
  11096. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-Light.otf",
  11097. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-Regular.otf",
  11098. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-ExtraBold.otf",
  11099. "fonts/NotoSansSinhala/unhinted/otf/NotoSansSinhala-Condensed.otf",
  11100. "fonts/NotoSansSinhala/googlefonts/variable-ttf/NotoSansSinhala[wdth,wght].ttf"
  11101. ],
  11102. "latest_release": {
  11103. "notes": "Noto Sans Sinhala v3.000\n\nThis release brings an improved design and optimized glyphset, by\nPathumn Egodawatta and Mooniak Type.\n",
  11104. "published": "2025-10-14T15:47:31+00:00",
  11105. "url": "https://github.com/notofonts/sinhala/releases/tag/NotoSansSinhala-v3.000",
  11106. "version": "v3.000"
  11107. }
  11108. },
  11109. "Noto Serif Sinhala": {
  11110. "files": [
  11111. "fonts/NotoSerifSinhala/full/slim-variable-ttf/NotoSerifSinhala[wght].ttf",
  11112. "fonts/NotoSerifSinhala/full/variable-ttf/NotoSerifSinhala[wdth,wght].ttf",
  11113. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-Medium.otf",
  11114. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-CondensedLight.otf",
  11115. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensedMedium.otf",
  11116. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-CondensedExtraBold.otf",
  11117. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-CondensedMedium.otf",
  11118. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-Light.otf",
  11119. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiBold.otf",
  11120. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-Thin.otf",
  11121. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensed.otf",
  11122. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensedMedium.otf",
  11123. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-Regular.otf",
  11124. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraLight.otf",
  11125. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-Black.otf",
  11126. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensedSemiBold.otf",
  11127. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-CondensedSemiBold.otf",
  11128. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-Condensed.otf",
  11129. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensedLight.otf",
  11130. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensedBold.otf",
  11131. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensedBlack.otf",
  11132. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-CondensedBlack.otf",
  11133. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensedExtraLight.otf",
  11134. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-CondensedExtraLight.otf",
  11135. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensedThin.otf",
  11136. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensedBlack.otf",
  11137. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-Bold.otf",
  11138. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensedBold.otf",
  11139. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-CondensedThin.otf",
  11140. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensedSemiBold.otf",
  11141. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensedExtraLight.otf",
  11142. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensed.otf",
  11143. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensedExtraBold.otf",
  11144. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraBold.otf",
  11145. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensedExtraBold.otf",
  11146. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-CondensedBold.otf",
  11147. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-ExtraCondensedThin.otf",
  11148. "fonts/NotoSerifSinhala/full/otf/NotoSerifSinhala-SemiCondensedLight.otf",
  11149. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraLight.ttf",
  11150. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedBold.ttf",
  11151. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedThin.ttf",
  11152. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedBlack.ttf",
  11153. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedSemiBold.ttf",
  11154. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedExtraBold.ttf",
  11155. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraBold.ttf",
  11156. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedThin.ttf",
  11157. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedExtraLight.ttf",
  11158. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedExtraLight.ttf",
  11159. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiBold.ttf",
  11160. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedExtraBold.ttf",
  11161. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedSemiBold.ttf",
  11162. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Light.ttf",
  11163. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedBold.ttf",
  11164. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedMedium.ttf",
  11165. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Condensed.ttf",
  11166. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Medium.ttf",
  11167. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Black.ttf",
  11168. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedBold.ttf",
  11169. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedMedium.ttf",
  11170. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Bold.ttf",
  11171. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedThin.ttf",
  11172. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedExtraBold.ttf",
  11173. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedSemiBold.ttf",
  11174. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensed.ttf",
  11175. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedLight.ttf",
  11176. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedMedium.ttf",
  11177. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedBlack.ttf",
  11178. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedBlack.ttf",
  11179. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-CondensedLight.ttf",
  11180. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-ExtraCondensedLight.ttf",
  11181. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensed.ttf",
  11182. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Thin.ttf",
  11183. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-Regular.ttf",
  11184. "fonts/NotoSerifSinhala/full/ttf/NotoSerifSinhala-SemiCondensedExtraLight.ttf",
  11185. "fonts/NotoSerifSinhala/googlefonts/variable-ttf/NotoSerifSinhala[wdth,wght].ttf",
  11186. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-ExtraLight.ttf",
  11187. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-ExtraBold.ttf",
  11188. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-SemiBold.ttf",
  11189. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-Light.ttf",
  11190. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-Medium.ttf",
  11191. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-Black.ttf",
  11192. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-Bold.ttf",
  11193. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-Thin.ttf",
  11194. "fonts/NotoSerifSinhala/googlefonts/ttf/NotoSerifSinhala-Regular.ttf",
  11195. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraLight.ttf",
  11196. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensedBold.ttf",
  11197. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensedThin.ttf",
  11198. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensedBlack.ttf",
  11199. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensedSemiBold.ttf",
  11200. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-CondensedExtraBold.ttf",
  11201. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraBold.ttf",
  11202. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensedThin.ttf",
  11203. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-CondensedExtraLight.ttf",
  11204. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensedExtraLight.ttf",
  11205. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiBold.ttf",
  11206. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensedExtraBold.ttf",
  11207. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-CondensedSemiBold.ttf",
  11208. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-Light.ttf",
  11209. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensedBold.ttf",
  11210. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-CondensedMedium.ttf",
  11211. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-Condensed.ttf",
  11212. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-Medium.ttf",
  11213. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-Black.ttf",
  11214. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-CondensedBold.ttf",
  11215. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensedMedium.ttf",
  11216. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-Bold.ttf",
  11217. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-CondensedThin.ttf",
  11218. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensedExtraBold.ttf",
  11219. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensedSemiBold.ttf",
  11220. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensed.ttf",
  11221. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensedLight.ttf",
  11222. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensedMedium.ttf",
  11223. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-CondensedBlack.ttf",
  11224. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensedBlack.ttf",
  11225. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-CondensedLight.ttf",
  11226. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-ExtraCondensedLight.ttf",
  11227. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensed.ttf",
  11228. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-Thin.ttf",
  11229. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-Regular.ttf",
  11230. "fonts/NotoSerifSinhala/hinted/ttf/NotoSerifSinhala-SemiCondensedExtraLight.ttf",
  11231. "fonts/NotoSerifSinhala/unhinted/slim-variable-ttf/NotoSerifSinhala[wght].ttf",
  11232. "fonts/NotoSerifSinhala/unhinted/variable-ttf/NotoSerifSinhala[wdth,wght].ttf",
  11233. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-Medium.otf",
  11234. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-CondensedLight.otf",
  11235. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensedMedium.otf",
  11236. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-CondensedExtraBold.otf",
  11237. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-CondensedMedium.otf",
  11238. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-Light.otf",
  11239. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiBold.otf",
  11240. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-Thin.otf",
  11241. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensed.otf",
  11242. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensedMedium.otf",
  11243. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-Regular.otf",
  11244. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraLight.otf",
  11245. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-Black.otf",
  11246. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensedSemiBold.otf",
  11247. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-CondensedSemiBold.otf",
  11248. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-Condensed.otf",
  11249. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensedLight.otf",
  11250. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensedBold.otf",
  11251. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensedBlack.otf",
  11252. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-CondensedBlack.otf",
  11253. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensedExtraLight.otf",
  11254. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-CondensedExtraLight.otf",
  11255. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensedThin.otf",
  11256. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensedBlack.otf",
  11257. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-Bold.otf",
  11258. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensedBold.otf",
  11259. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-CondensedThin.otf",
  11260. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensedSemiBold.otf",
  11261. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensedExtraLight.otf",
  11262. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensed.otf",
  11263. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensedExtraBold.otf",
  11264. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraBold.otf",
  11265. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensedExtraBold.otf",
  11266. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-CondensedBold.otf",
  11267. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-ExtraCondensedThin.otf",
  11268. "fonts/NotoSerifSinhala/unhinted/otf/NotoSerifSinhala-SemiCondensedLight.otf",
  11269. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraLight.ttf",
  11270. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensedBold.ttf",
  11271. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensedThin.ttf",
  11272. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensedBlack.ttf",
  11273. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensedSemiBold.ttf",
  11274. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-CondensedExtraBold.ttf",
  11275. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraBold.ttf",
  11276. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensedThin.ttf",
  11277. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-CondensedExtraLight.ttf",
  11278. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensedExtraLight.ttf",
  11279. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiBold.ttf",
  11280. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensedExtraBold.ttf",
  11281. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-CondensedSemiBold.ttf",
  11282. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-Light.ttf",
  11283. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensedBold.ttf",
  11284. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-CondensedMedium.ttf",
  11285. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-Condensed.ttf",
  11286. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-Medium.ttf",
  11287. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-Black.ttf",
  11288. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-CondensedBold.ttf",
  11289. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensedMedium.ttf",
  11290. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-Bold.ttf",
  11291. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-CondensedThin.ttf",
  11292. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensedExtraBold.ttf",
  11293. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensedSemiBold.ttf",
  11294. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensed.ttf",
  11295. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensedLight.ttf",
  11296. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensedMedium.ttf",
  11297. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-CondensedBlack.ttf",
  11298. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensedBlack.ttf",
  11299. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-CondensedLight.ttf",
  11300. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-ExtraCondensedLight.ttf",
  11301. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensed.ttf",
  11302. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-Thin.ttf",
  11303. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-Regular.ttf",
  11304. "fonts/NotoSerifSinhala/unhinted/ttf/NotoSerifSinhala-SemiCondensedExtraLight.ttf"
  11305. ],
  11306. "latest_release": {
  11307. "notes": "Noto Serif Sinhala v2.007\n\nThis release fixes the category of the KOMBU DEKA vowel sign, fixing some overlaps (#6).\n",
  11308. "published": "2023-03-27T09:40:35",
  11309. "url": "https://github.com/notofonts/sinhala/releases/tag/NotoSerifSinhala-v2.007",
  11310. "version": "v2.007"
  11311. }
  11312. }
  11313. },
  11314. "known_releases": [
  11315. "NotoSerifSinhala-v2.004",
  11316. "NotoSansSinhala-v2.004",
  11317. "NotoSansSinhala-v2.005",
  11318. "NotoSerifSinhala-v2.005",
  11319. "NotoSerifSinhala-v2.006",
  11320. "NotoSansSinhala-v2.006",
  11321. "NotoSerifSinhala-v2.007",
  11322. "NotoSansSinhala-v3.000"
  11323. ]
  11324. },
  11325. "sogdian": {
  11326. "families": {
  11327. "Noto Sans Sogdian": {
  11328. "files": [
  11329. "fonts/NotoSansSogdian/hinted/ttf/NotoSansSogdian-Regular.ttf",
  11330. "fonts/NotoSansSogdian/googlefonts/ttf/NotoSansSogdian-Regular.ttf",
  11331. "fonts/NotoSansSogdian/unhinted/ttf/NotoSansSogdian-Regular.ttf",
  11332. "fonts/NotoSansSogdian/unhinted/otf/NotoSansSogdian-Regular.otf",
  11333. "fonts/NotoSansSogdian/full/ttf/NotoSansSogdian-Regular.ttf",
  11334. "fonts/NotoSansSogdian/full/otf/NotoSansSogdian-Regular.otf"
  11335. ],
  11336. "latest_release": {
  11337. "notes": "Noto Sans Sogdian v2.002\n\nThis release fixes a number of fontbakery fails.\n",
  11338. "published": "2022-10-04T12:44:55",
  11339. "url": "https://github.com/notofonts/sogdian/releases/tag/NotoSansSogdian-v2.002",
  11340. "version": "v2.002"
  11341. }
  11342. }
  11343. },
  11344. "known_releases": [
  11345. "NotoSansSogdian-v2.002"
  11346. ]
  11347. },
  11348. "sora-sompeng": {
  11349. "families": {
  11350. "Noto Sans Sora Sompeng": {
  11351. "files": [
  11352. "fonts/NotoSansSoraSompeng/full/slim-variable-ttf/NotoSansSoraSompeng[wght].ttf",
  11353. "fonts/NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Regular.ttf",
  11354. "fonts/NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-SemiBold.ttf",
  11355. "fonts/NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Medium.ttf",
  11356. "fonts/NotoSansSoraSompeng/full/ttf/NotoSansSoraSompeng-Bold.ttf",
  11357. "fonts/NotoSansSoraSompeng/full/variable-ttf/NotoSansSoraSompeng[wght].ttf",
  11358. "fonts/NotoSansSoraSompeng/full/otf/NotoSansSoraSompeng-SemiBold.otf",
  11359. "fonts/NotoSansSoraSompeng/full/otf/NotoSansSoraSompeng-Medium.otf",
  11360. "fonts/NotoSansSoraSompeng/full/otf/NotoSansSoraSompeng-Regular.otf",
  11361. "fonts/NotoSansSoraSompeng/full/otf/NotoSansSoraSompeng-Bold.otf",
  11362. "fonts/NotoSansSoraSompeng/googlefonts/ttf/NotoSansSoraSompeng-Regular.ttf",
  11363. "fonts/NotoSansSoraSompeng/googlefonts/ttf/NotoSansSoraSompeng-Medium.ttf",
  11364. "fonts/NotoSansSoraSompeng/googlefonts/ttf/NotoSansSoraSompeng-Bold.ttf",
  11365. "fonts/NotoSansSoraSompeng/googlefonts/variable-ttf/NotoSansSoraSompeng[wght].ttf",
  11366. "fonts/NotoSansSoraSompeng/unhinted/slim-variable-ttf/NotoSansSoraSompeng[wght].ttf",
  11367. "fonts/NotoSansSoraSompeng/unhinted/ttf/NotoSansSoraSompeng-Regular.ttf",
  11368. "fonts/NotoSansSoraSompeng/unhinted/ttf/NotoSansSoraSompeng-SemiBold.ttf",
  11369. "fonts/NotoSansSoraSompeng/unhinted/ttf/NotoSansSoraSompeng-Medium.ttf",
  11370. "fonts/NotoSansSoraSompeng/unhinted/ttf/NotoSansSoraSompeng-Bold.ttf",
  11371. "fonts/NotoSansSoraSompeng/unhinted/variable-ttf/NotoSansSoraSompeng[wght].ttf",
  11372. "fonts/NotoSansSoraSompeng/unhinted/otf/NotoSansSoraSompeng-SemiBold.otf",
  11373. "fonts/NotoSansSoraSompeng/unhinted/otf/NotoSansSoraSompeng-Medium.otf",
  11374. "fonts/NotoSansSoraSompeng/unhinted/otf/NotoSansSoraSompeng-Regular.otf",
  11375. "fonts/NotoSansSoraSompeng/unhinted/otf/NotoSansSoraSompeng-Bold.otf",
  11376. "fonts/NotoSansSoraSompeng/hinted/ttf/NotoSansSoraSompeng-Regular.ttf",
  11377. "fonts/NotoSansSoraSompeng/hinted/ttf/NotoSansSoraSompeng-SemiBold.ttf",
  11378. "fonts/NotoSansSoraSompeng/hinted/ttf/NotoSansSoraSompeng-Medium.ttf",
  11379. "fonts/NotoSansSoraSompeng/hinted/ttf/NotoSansSoraSompeng-Bold.ttf"
  11380. ],
  11381. "latest_release": {
  11382. "notes": "Noro Sans Sora Sompeng v2.101\n\nThis release fixes a number of fontbakery fails\n",
  11383. "published": "2022-09-02T09:03:30",
  11384. "url": "https://github.com/notofonts/sora-sompeng/releases/tag/NotoSansSoraSompeng-v2.101",
  11385. "version": "v2.101"
  11386. }
  11387. }
  11388. },
  11389. "known_releases": [
  11390. "NotoSansSoraSompeng-v2.101"
  11391. ]
  11392. },
  11393. "soyombo": {
  11394. "families": {
  11395. "Noto Sans Soyombo": {
  11396. "files": [
  11397. "fonts/NotoSansSoyombo/hinted/ttf/NotoSansSoyombo-Regular.ttf",
  11398. "fonts/NotoSansSoyombo/googlefonts/ttf/NotoSansSoyombo-Regular.ttf",
  11399. "fonts/NotoSansSoyombo/unhinted/ttf/NotoSansSoyombo-Regular.ttf",
  11400. "fonts/NotoSansSoyombo/unhinted/otf/NotoSansSoyombo-Regular.otf",
  11401. "fonts/NotoSansSoyombo/full/ttf/NotoSansSoyombo-Regular.ttf",
  11402. "fonts/NotoSansSoyombo/full/otf/NotoSansSoyombo-Regular.otf"
  11403. ],
  11404. "latest_release": {
  11405. "notes": "Noto Sans Soyombo v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  11406. "published": "2022-09-24T13:45:02",
  11407. "url": "https://github.com/notofonts/soyombo/releases/tag/NotoSansSoyombo-v2.001",
  11408. "version": "v2.001"
  11409. }
  11410. }
  11411. },
  11412. "known_releases": [
  11413. "NotoSansSoyombo-v2.001"
  11414. ]
  11415. },
  11416. "sundanese": {
  11417. "families": {
  11418. "Noto Sans Sundanese": {
  11419. "files": [
  11420. "fonts/NotoSansSundanese/googlefonts/variable/NotoSansSundanese[wght].ttf",
  11421. "fonts/NotoSansSundanese/googlefonts/ttf/NotoSansSundanese-Regular.ttf",
  11422. "fonts/NotoSansSundanese/googlefonts/ttf/NotoSansSundanese-Bold.ttf",
  11423. "fonts/NotoSansSundanese/googlefonts/ttf/NotoSansSundanese-SemiBold.ttf",
  11424. "fonts/NotoSansSundanese/googlefonts/ttf/NotoSansSundanese-Medium.ttf",
  11425. "fonts/NotoSansSundanese/full/variable/NotoSansSundanese[wght].ttf",
  11426. "fonts/NotoSansSundanese/full/otf/NotoSansSundanese-Bold.otf",
  11427. "fonts/NotoSansSundanese/full/otf/NotoSansSundanese-Regular.otf",
  11428. "fonts/NotoSansSundanese/full/otf/NotoSansSundanese-Medium.otf",
  11429. "fonts/NotoSansSundanese/full/otf/NotoSansSundanese-SemiBold.otf",
  11430. "fonts/NotoSansSundanese/full/ttf/NotoSansSundanese-Regular.ttf",
  11431. "fonts/NotoSansSundanese/full/ttf/NotoSansSundanese-Bold.ttf",
  11432. "fonts/NotoSansSundanese/full/ttf/NotoSansSundanese-SemiBold.ttf",
  11433. "fonts/NotoSansSundanese/full/ttf/NotoSansSundanese-Medium.ttf",
  11434. "fonts/NotoSansSundanese/full/slim-variable-ttf/NotoSansSundanese[wght].ttf",
  11435. "fonts/NotoSansSundanese/unhinted/variable/NotoSansSundanese[wght].ttf",
  11436. "fonts/NotoSansSundanese/unhinted/otf/NotoSansSundanese-Bold.otf",
  11437. "fonts/NotoSansSundanese/unhinted/otf/NotoSansSundanese-Regular.otf",
  11438. "fonts/NotoSansSundanese/unhinted/otf/NotoSansSundanese-Medium.otf",
  11439. "fonts/NotoSansSundanese/unhinted/otf/NotoSansSundanese-SemiBold.otf",
  11440. "fonts/NotoSansSundanese/unhinted/ttf/NotoSansSundanese-Regular.ttf",
  11441. "fonts/NotoSansSundanese/unhinted/ttf/NotoSansSundanese-Bold.ttf",
  11442. "fonts/NotoSansSundanese/unhinted/ttf/NotoSansSundanese-SemiBold.ttf",
  11443. "fonts/NotoSansSundanese/unhinted/ttf/NotoSansSundanese-Medium.ttf",
  11444. "fonts/NotoSansSundanese/unhinted/slim-variable-ttf/NotoSansSundanese[wght].ttf",
  11445. "fonts/NotoSansSundanese/hinted/ttf/NotoSansSundanese-Regular.ttf",
  11446. "fonts/NotoSansSundanese/hinted/ttf/NotoSansSundanese-Bold.ttf",
  11447. "fonts/NotoSansSundanese/hinted/ttf/NotoSansSundanese-SemiBold.ttf",
  11448. "fonts/NotoSansSundanese/hinted/ttf/NotoSansSundanese-Medium.ttf"
  11449. ],
  11450. "latest_release": {
  11451. "notes": "Noto Sans Sundanese v2.005\n\nThis release fixes the positioning of the pamingkal. (#7)\n",
  11452. "published": "2023-09-26T11:23:17",
  11453. "url": "https://github.com/notofonts/sundanese/releases/tag/NotoSansSundanese-v2.005",
  11454. "version": "v2.005"
  11455. }
  11456. }
  11457. },
  11458. "known_releases": [
  11459. "NotoSansSundanese-v2.002",
  11460. "NotoSansSundanese-v2.003",
  11461. "NotoSansSundanese-v2.004",
  11462. "NotoSansSundanese-v2.005"
  11463. ]
  11464. },
  11465. "sunuwar": {
  11466. "families": {
  11467. "Noto Sans Sunuwar": {
  11468. "files": [
  11469. "fonts/NotoSansSunuwar/hinted/ttf/NotoSansSunuwar-Regular.ttf",
  11470. "fonts/NotoSansSunuwar/googlefonts/ttf/NotoSansSunuwar-Regular.ttf",
  11471. "fonts/NotoSansSunuwar/unhinted/ttf/NotoSansSunuwar-Regular.ttf",
  11472. "fonts/NotoSansSunuwar/unhinted/otf/NotoSansSunuwar-Regular.otf",
  11473. "fonts/NotoSansSunuwar/full/ttf/NotoSansSunuwar-Regular.ttf",
  11474. "fonts/NotoSansSunuwar/full/otf/NotoSansSunuwar-Regular.otf"
  11475. ],
  11476. "latest_release": {
  11477. "notes": "Noto Sans Sunuwar v1.000\n\nThis is the first release of Noto Sans Sunuwar. Thanks to the Script Encoding Initiative for providing this font.\n",
  11478. "published": "2025-06-10T16:41:13+00:00",
  11479. "url": "https://github.com/notofonts/sunuwar/releases/tag/NotoSansSunuwar-v1.000",
  11480. "version": "v1.000"
  11481. }
  11482. }
  11483. },
  11484. "known_releases": [
  11485. "NotoSansSunuwar-v1.000"
  11486. ]
  11487. },
  11488. "syloti-nagri": {
  11489. "families": {
  11490. "Noto Sans Syloti Nagri": {
  11491. "files": [
  11492. "fonts/NotoSansSylotiNagri/full/ttf/NotoSansSylotiNagri-Regular.ttf",
  11493. "fonts/NotoSansSylotiNagri/full/otf/NotoSansSylotiNagri-Regular.otf",
  11494. "fonts/NotoSansSylotiNagri/hinted/ttf/NotoSansSylotiNagri-Regular.ttf",
  11495. "fonts/NotoSansSylotiNagri/unhinted/slim-otf/NotoSansSylotiNagri-Regular.otf",
  11496. "fonts/NotoSansSylotiNagri/unhinted/ttf/NotoSansSylotiNagri-Regular.ttf",
  11497. "fonts/NotoSansSylotiNagri/unhinted/otf/NotoSansSylotiNagri-Regular.otf",
  11498. "fonts/NotoSansSylotiNagri/googlefonts/ttf/NotoSansSylotiNagri-Regular.ttf"
  11499. ],
  11500. "latest_release": {
  11501. "notes": "Noto Sans Syloti Nagri v2.004 This release fixes a number of issues with attachment of accents to the dotted circle glyph. (#7)\n",
  11502. "published": "2023-06-23T10:58:51",
  11503. "url": "https://github.com/notofonts/syloti-nagri/releases/tag/NotoSansSylotiNagri-v2.004",
  11504. "version": "v2.004"
  11505. }
  11506. }
  11507. },
  11508. "known_releases": [
  11509. "NotoSansSylotiNagri-v2.002",
  11510. "NotoSansSylotiNagri-v2.003",
  11511. "NotoSansSylotiNagri-v2.004"
  11512. ]
  11513. },
  11514. "symbols": {
  11515. "families": {
  11516. "Noto Sans Symbols": {
  11517. "files": [
  11518. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-SemiBold.ttf",
  11519. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-Black.ttf",
  11520. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-Medium.ttf",
  11521. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-ExtraBold.ttf",
  11522. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-Bold.ttf",
  11523. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-Regular.ttf",
  11524. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-Thin.ttf",
  11525. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-ExtraLight.ttf",
  11526. "fonts/NotoSansSymbols/full/ttf/NotoSansSymbols-Light.ttf",
  11527. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-Thin.otf",
  11528. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-Medium.otf",
  11529. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-ExtraLight.otf",
  11530. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-ExtraBold.otf",
  11531. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-Regular.otf",
  11532. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-Bold.otf",
  11533. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-Black.otf",
  11534. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-Light.otf",
  11535. "fonts/NotoSansSymbols/full/otf/NotoSansSymbols-SemiBold.otf",
  11536. "fonts/NotoSansSymbols/full/variable-ttf/NotoSansSymbols[wght].ttf",
  11537. "fonts/NotoSansSymbols/full/slim-variable-ttf/NotoSansSymbols[wght].ttf",
  11538. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-SemiBold.ttf",
  11539. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-Black.ttf",
  11540. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-Medium.ttf",
  11541. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-ExtraBold.ttf",
  11542. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-Bold.ttf",
  11543. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-Regular.ttf",
  11544. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-Thin.ttf",
  11545. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-ExtraLight.ttf",
  11546. "fonts/NotoSansSymbols/hinted/ttf/NotoSansSymbols-Light.ttf",
  11547. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-SemiBold.ttf",
  11548. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-Black.ttf",
  11549. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-Medium.ttf",
  11550. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-ExtraBold.ttf",
  11551. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-Bold.ttf",
  11552. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-Regular.ttf",
  11553. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-Thin.ttf",
  11554. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-ExtraLight.ttf",
  11555. "fonts/NotoSansSymbols/unhinted/ttf/NotoSansSymbols-Light.ttf",
  11556. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-Thin.otf",
  11557. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-Medium.otf",
  11558. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-ExtraLight.otf",
  11559. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-ExtraBold.otf",
  11560. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-Regular.otf",
  11561. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-Bold.otf",
  11562. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-Black.otf",
  11563. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-Light.otf",
  11564. "fonts/NotoSansSymbols/unhinted/otf/NotoSansSymbols-SemiBold.otf",
  11565. "fonts/NotoSansSymbols/unhinted/variable-ttf/NotoSansSymbols[wght].ttf",
  11566. "fonts/NotoSansSymbols/unhinted/slim-variable-ttf/NotoSansSymbols[wght].ttf",
  11567. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-SemiBold.ttf",
  11568. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-Black.ttf",
  11569. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-Medium.ttf",
  11570. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-ExtraBold.ttf",
  11571. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-Bold.ttf",
  11572. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-Regular.ttf",
  11573. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-Thin.ttf",
  11574. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-ExtraLight.ttf",
  11575. "fonts/NotoSansSymbols/googlefonts/ttf/NotoSansSymbols-Light.ttf",
  11576. "fonts/NotoSansSymbols/googlefonts/variable-ttf/NotoSansSymbols[wght].ttf"
  11577. ],
  11578. "latest_release": {
  11579. "notes": "Noto Sans Symbols v2.003\n\nThis release:\n\n- fixes a number of contour issues due to glyphs having open corners\n- improves the positioning of combining marks (#23)\n- fixes the presentation of circled zeroes (#15)\n",
  11580. "published": "2023-06-27T13:24:27",
  11581. "url": "https://github.com/notofonts/symbols/releases/tag/NotoSansSymbols-v2.003",
  11582. "version": "v2.003"
  11583. }
  11584. },
  11585. "Noto Sans Symbols2": {
  11586. "files": [
  11587. "fonts/NotoSansSymbols2/googlefonts/ttf/NotoSansSymbols2-Regular.ttf",
  11588. "fonts/NotoSansSymbols2/full/otf/NotoSansSymbols2-Regular.otf",
  11589. "fonts/NotoSansSymbols2/full/ttf/NotoSansSymbols2-Regular.ttf",
  11590. "fonts/NotoSansSymbols2/unhinted/otf/NotoSansSymbols2-Regular.otf",
  11591. "fonts/NotoSansSymbols2/unhinted/ttf/NotoSansSymbols2-Regular.ttf",
  11592. "fonts/NotoSansSymbols2/hinted/ttf/NotoSansSymbols2-Regular.ttf"
  11593. ],
  11594. "latest_release": {
  11595. "notes": "Noto Sans Symbols 2 v2.008\n\nThis release includes new symbols U+1F1AD, U+1F10D-U+1F10F, U+1F16D-U+1F16F, U+1F774-1F776, U+1F77B-1F77F, U+1F900-1F90B (thanks to Emma Marichal!)\n",
  11596. "published": "2023-10-13T11:08:22+00:00",
  11597. "url": "https://github.com/notofonts/symbols/releases/tag/NotoSansSymbols2-v2.008",
  11598. "version": "v2.008"
  11599. }
  11600. }
  11601. },
  11602. "known_releases": [
  11603. "NotoSansSymbols-v2.002",
  11604. "NotoSansSymbols2-v2.004",
  11605. "NotoSansSymbols2-v2.005",
  11606. "NotoSansSymbols2-v2.006",
  11607. "NotoSansSymbols2-v2.007",
  11608. "NotoSansSymbols-v2.003",
  11609. "NotoSansSymbols2-v2.008"
  11610. ]
  11611. },
  11612. "syriac": {
  11613. "families": {
  11614. "Noto Sans Syriac": {
  11615. "files": [
  11616. "fonts/NotoSansSyriac/unhinted/ttf/NotoSansSyriac-Black.ttf",
  11617. "fonts/NotoSansSyriac/unhinted/ttf/NotoSansSyriac-Regular.ttf",
  11618. "fonts/NotoSansSyriac/unhinted/ttf/NotoSansSyriac-Thin.ttf",
  11619. "fonts/NotoSansSyriac/unhinted/variable-ttf/NotoSansSyriac[wght].ttf",
  11620. "fonts/NotoSansSyriac/unhinted/otf/NotoSansSyriac-Black.otf",
  11621. "fonts/NotoSansSyriac/unhinted/otf/NotoSansSyriac-Thin.otf",
  11622. "fonts/NotoSansSyriac/unhinted/otf/NotoSansSyriac-Regular.otf",
  11623. "fonts/NotoSansSyriac/unhinted/slim-variable-ttf/NotoSansSyriac[wght].ttf",
  11624. "fonts/NotoSansSyriac/full/ttf/NotoSansSyriac-Black.ttf",
  11625. "fonts/NotoSansSyriac/full/ttf/NotoSansSyriac-Regular.ttf",
  11626. "fonts/NotoSansSyriac/full/ttf/NotoSansSyriac-Thin.ttf",
  11627. "fonts/NotoSansSyriac/full/variable-ttf/NotoSansSyriac[wght].ttf",
  11628. "fonts/NotoSansSyriac/full/otf/NotoSansSyriac-Black.otf",
  11629. "fonts/NotoSansSyriac/full/otf/NotoSansSyriac-Thin.otf",
  11630. "fonts/NotoSansSyriac/full/otf/NotoSansSyriac-Regular.otf",
  11631. "fonts/NotoSansSyriac/full/slim-variable-ttf/NotoSansSyriac[wght].ttf",
  11632. "fonts/NotoSansSyriac/googlefonts/ttf/NotoSansSyriac-Black.ttf",
  11633. "fonts/NotoSansSyriac/googlefonts/ttf/NotoSansSyriac-Regular.ttf",
  11634. "fonts/NotoSansSyriac/googlefonts/ttf/NotoSansSyriac-Thin.ttf",
  11635. "fonts/NotoSansSyriac/googlefonts/variable-ttf/NotoSansSyriac[wght].ttf",
  11636. "fonts/NotoSansSyriac/hinted/ttf/NotoSansSyriac-Black.ttf",
  11637. "fonts/NotoSansSyriac/hinted/ttf/NotoSansSyriac-Regular.ttf",
  11638. "fonts/NotoSansSyriac/hinted/ttf/NotoSansSyriac-Thin.ttf"
  11639. ],
  11640. "latest_release": {
  11641. "notes": "Noto Sans Syriac v3.000\n\nThis release:\n* Comprises only of the Estrangela style of Noto Sans Syriac\n* Interpolates as a variable font\n* Fixes the naming of the stylistic sets (#1)\n* Fixes the shape of U+0724 final semkath (#6)\n* Fixes a problem with the rish-dieresis ligature (#8)\n* Cleans up some of the OpenType layout code\n* and fixes various fontbakery fails.\n",
  11642. "published": "2023-01-03T13:56:57",
  11643. "url": "https://github.com/notofonts/syriac/releases/tag/NotoSansSyriac-v3.000",
  11644. "version": "v3.000"
  11645. }
  11646. },
  11647. "Noto Sans Syriac Eastern": {
  11648. "files": [
  11649. "fonts/NotoSansSyriacEastern/unhinted/ttf/NotoSansSyriacEastern-Thin.ttf",
  11650. "fonts/NotoSansSyriacEastern/unhinted/ttf/NotoSansSyriacEastern-Regular.ttf",
  11651. "fonts/NotoSansSyriacEastern/unhinted/ttf/NotoSansSyriacEastern-Black.ttf",
  11652. "fonts/NotoSansSyriacEastern/unhinted/variable-ttf/NotoSansSyriacEastern[wght].ttf",
  11653. "fonts/NotoSansSyriacEastern/unhinted/otf/NotoSansSyriacEastern-Thin.otf",
  11654. "fonts/NotoSansSyriacEastern/unhinted/otf/NotoSansSyriacEastern-Regular.otf",
  11655. "fonts/NotoSansSyriacEastern/unhinted/otf/NotoSansSyriacEastern-Black.otf",
  11656. "fonts/NotoSansSyriacEastern/unhinted/slim-variable-ttf/NotoSansSyriacEastern[wght].ttf",
  11657. "fonts/NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Thin.ttf",
  11658. "fonts/NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Regular.ttf",
  11659. "fonts/NotoSansSyriacEastern/full/ttf/NotoSansSyriacEastern-Black.ttf",
  11660. "fonts/NotoSansSyriacEastern/full/variable-ttf/NotoSansSyriacEastern[wght].ttf",
  11661. "fonts/NotoSansSyriacEastern/full/otf/NotoSansSyriacEastern-Thin.otf",
  11662. "fonts/NotoSansSyriacEastern/full/otf/NotoSansSyriacEastern-Regular.otf",
  11663. "fonts/NotoSansSyriacEastern/full/otf/NotoSansSyriacEastern-Black.otf",
  11664. "fonts/NotoSansSyriacEastern/full/slim-variable-ttf/NotoSansSyriacEastern[wght].ttf",
  11665. "fonts/NotoSansSyriacEastern/googlefonts/ttf/NotoSansSyriacEastern-Thin.ttf",
  11666. "fonts/NotoSansSyriacEastern/googlefonts/ttf/NotoSansSyriacEastern-Regular.ttf",
  11667. "fonts/NotoSansSyriacEastern/googlefonts/ttf/NotoSansSyriacEastern-Black.ttf",
  11668. "fonts/NotoSansSyriacEastern/googlefonts/variable-ttf/NotoSansSyriacEastern[wght].ttf",
  11669. "fonts/NotoSansSyriacEastern/hinted/ttf/NotoSansSyriacEastern-Thin.ttf",
  11670. "fonts/NotoSansSyriacEastern/hinted/ttf/NotoSansSyriacEastern-Regular.ttf",
  11671. "fonts/NotoSansSyriacEastern/hinted/ttf/NotoSansSyriacEastern-Black.ttf"
  11672. ],
  11673. "latest_release": {
  11674. "notes": "Noto Sans Syriac Eastern v3.001\n\nThis release restores a number of missing ligatures and other shaping rules.\n",
  11675. "published": "2023-01-06T12:49:41",
  11676. "url": "https://github.com/notofonts/syriac/releases/tag/NotoSansSyriacEastern-v3.001",
  11677. "version": "v3.001"
  11678. }
  11679. },
  11680. "Noto Sans Syriac Western": {
  11681. "files": [
  11682. "fonts/NotoSansSyriacWestern/hinted/ttf/NotoSansSyriacWestern-Regular.ttf",
  11683. "fonts/NotoSansSyriacWestern/hinted/ttf/NotoSansSyriacWestern-Black.ttf",
  11684. "fonts/NotoSansSyriacWestern/hinted/ttf/NotoSansSyriacWestern-Thin.ttf",
  11685. "fonts/NotoSansSyriacWestern/full/slim-variable-ttf/NotoSansSyriacWestern[wght].ttf",
  11686. "fonts/NotoSansSyriacWestern/full/variable-ttf/NotoSansSyriacWestern[wght].ttf",
  11687. "fonts/NotoSansSyriacWestern/full/ttf/NotoSansSyriacWestern-Regular.ttf",
  11688. "fonts/NotoSansSyriacWestern/full/ttf/NotoSansSyriacWestern-Black.ttf",
  11689. "fonts/NotoSansSyriacWestern/full/ttf/NotoSansSyriacWestern-Thin.ttf",
  11690. "fonts/NotoSansSyriacWestern/full/otf/NotoSansSyriacWestern-Thin.otf",
  11691. "fonts/NotoSansSyriacWestern/full/otf/NotoSansSyriacWestern-Regular.otf",
  11692. "fonts/NotoSansSyriacWestern/full/otf/NotoSansSyriacWestern-Black.otf",
  11693. "fonts/NotoSansSyriacWestern/unhinted/slim-variable-ttf/NotoSansSyriacWestern[wght].ttf",
  11694. "fonts/NotoSansSyriacWestern/unhinted/variable-ttf/NotoSansSyriacWestern[wght].ttf",
  11695. "fonts/NotoSansSyriacWestern/unhinted/ttf/NotoSansSyriacWestern-Regular.ttf",
  11696. "fonts/NotoSansSyriacWestern/unhinted/ttf/NotoSansSyriacWestern-Black.ttf",
  11697. "fonts/NotoSansSyriacWestern/unhinted/ttf/NotoSansSyriacWestern-Thin.ttf",
  11698. "fonts/NotoSansSyriacWestern/unhinted/otf/NotoSansSyriacWestern-Thin.otf",
  11699. "fonts/NotoSansSyriacWestern/unhinted/otf/NotoSansSyriacWestern-Regular.otf",
  11700. "fonts/NotoSansSyriacWestern/unhinted/otf/NotoSansSyriacWestern-Black.otf",
  11701. "fonts/NotoSansSyriacWestern/googlefonts/variable-ttf/NotoSansSyriacWestern[wght].ttf"
  11702. ],
  11703. "latest_release": {
  11704. "notes": "Noto Sans Syriac Western v3.001\n\nThis release fixes the weight of glyphs which change their shape (dalesh rish, shin, etc.)\n",
  11705. "published": "2025-10-02T13:14:25+00:00",
  11706. "url": "https://github.com/notofonts/syriac/releases/tag/NotoSansSyriacWestern-v3.001",
  11707. "version": "v3.001"
  11708. }
  11709. }
  11710. },
  11711. "known_releases": [
  11712. "NotoSansSyriacWestern-v3.000",
  11713. "NotoSansSyriac-v3.000",
  11714. "NotoSansSyriacEastern-v3.000",
  11715. "NotoSansSyriacEastern-v3.001",
  11716. "NotoSansSyriacWestern-v3.001"
  11717. ]
  11718. },
  11719. "tagalog": {
  11720. "families": {
  11721. "Noto Sans Tagalog": {
  11722. "files": [
  11723. "fonts/NotoSansTagalog/full/ttf/NotoSansTagalog-Regular.ttf",
  11724. "fonts/NotoSansTagalog/full/otf/NotoSansTagalog-Regular.otf",
  11725. "fonts/NotoSansTagalog/googlefonts/ttf/NotoSansTagalog-Regular.ttf",
  11726. "fonts/NotoSansTagalog/unhinted/slim-otf/NotoSansTagalog-Regular.otf",
  11727. "fonts/NotoSansTagalog/unhinted/ttf/NotoSansTagalog-Regular.ttf",
  11728. "fonts/NotoSansTagalog/unhinted/otf/NotoSansTagalog-Regular.otf",
  11729. "fonts/NotoSansTagalog/hinted/ttf/NotoSansTagalog-Regular.ttf"
  11730. ],
  11731. "latest_release": {
  11732. "notes": "This release:\r\n\r\n* Disables the use of the Universal Shaping Engine, fixing #5\r\n* Makes pamudpod a base, fixing #6",
  11733. "published": "2023-06-21T12:41:00",
  11734. "url": "https://github.com/notofonts/tagalog/releases/tag/NotoSansTagalog-v2.002",
  11735. "version": "v2.002"
  11736. }
  11737. }
  11738. },
  11739. "known_releases": [
  11740. "NotoSansTagalog-v2.001",
  11741. "NotoSansTagalog-v2.002"
  11742. ]
  11743. },
  11744. "tagbanwa": {
  11745. "families": {
  11746. "Noto Sans Tagbanwa": {
  11747. "files": [
  11748. "fonts/NotoSansTagbanwa/full/ttf/NotoSansTagbanwa-Regular.ttf",
  11749. "fonts/NotoSansTagbanwa/full/otf/NotoSansTagbanwa-Regular.otf",
  11750. "fonts/NotoSansTagbanwa/googlefonts/ttf/NotoSansTagbanwa-Regular.ttf",
  11751. "fonts/NotoSansTagbanwa/unhinted/ttf/NotoSansTagbanwa-Regular.ttf",
  11752. "fonts/NotoSansTagbanwa/unhinted/otf/NotoSansTagbanwa-Regular.otf",
  11753. "fonts/NotoSansTagbanwa/hinted/ttf/NotoSansTagbanwa-Regular.ttf"
  11754. ],
  11755. "latest_release": {
  11756. "notes": "Noto Sans Tagbanwa v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  11757. "published": "2022-09-05T07:53:59",
  11758. "url": "https://github.com/notofonts/tagbanwa/releases/tag/NotoSansTagbanwa-v2.001",
  11759. "version": "v2.001"
  11760. }
  11761. }
  11762. },
  11763. "known_releases": [
  11764. "NotoSansTagbanwa-v2.001"
  11765. ]
  11766. },
  11767. "tai-le": {
  11768. "families": {
  11769. "Noto Sans Tai Le": {
  11770. "files": [
  11771. "fonts/NotoSansTaiLe/full/ttf/NotoSansTaiLe-Regular.ttf",
  11772. "fonts/NotoSansTaiLe/full/otf/NotoSansTaiLe-Regular.otf",
  11773. "fonts/NotoSansTaiLe/googlefonts/ttf/NotoSansTaiLe-Regular.ttf",
  11774. "fonts/NotoSansTaiLe/unhinted/ttf/NotoSansTaiLe-Regular.ttf",
  11775. "fonts/NotoSansTaiLe/unhinted/otf/NotoSansTaiLe-Regular.otf",
  11776. "fonts/NotoSansTaiLe/hinted/ttf/NotoSansTaiLe-Regular.ttf"
  11777. ],
  11778. "latest_release": {
  11779. "notes": "Noto Sans Tai Le v2.002\n\nThis release:\n* fixes a number of fontbakery fails\n* fixes a problem where shaping was applied across clusters. (#2)\n",
  11780. "published": "2022-09-14T15:37:58",
  11781. "url": "https://github.com/notofonts/tai-le/releases/tag/NotoSansTaiLe-v2.002",
  11782. "version": "v2.002"
  11783. }
  11784. }
  11785. },
  11786. "known_releases": [
  11787. "NotoSansTaiLe-v2.002"
  11788. ]
  11789. },
  11790. "tai-tham": {
  11791. "families": {
  11792. "Noto Sans Tai Tham": {
  11793. "files": [
  11794. "fonts/NotoSansTaiTham/full/slim-variable-ttf/NotoSansTaiTham[wght].ttf",
  11795. "fonts/NotoSansTaiTham/full/ttf/NotoSansTaiTham-SemiBold.ttf",
  11796. "fonts/NotoSansTaiTham/full/ttf/NotoSansTaiTham-Bold.ttf",
  11797. "fonts/NotoSansTaiTham/full/ttf/NotoSansTaiTham-Medium.ttf",
  11798. "fonts/NotoSansTaiTham/full/ttf/NotoSansTaiTham-Regular.ttf",
  11799. "fonts/NotoSansTaiTham/full/variable-ttf/NotoSansTaiTham[wght].ttf",
  11800. "fonts/NotoSansTaiTham/full/otf/NotoSansTaiTham-Medium.otf",
  11801. "fonts/NotoSansTaiTham/full/otf/NotoSansTaiTham-Regular.otf",
  11802. "fonts/NotoSansTaiTham/full/otf/NotoSansTaiTham-SemiBold.otf",
  11803. "fonts/NotoSansTaiTham/full/otf/NotoSansTaiTham-Bold.otf",
  11804. "fonts/NotoSansTaiTham/googlefonts/ttf/NotoSansTaiTham-SemiBold.ttf",
  11805. "fonts/NotoSansTaiTham/googlefonts/ttf/NotoSansTaiTham-Bold.ttf",
  11806. "fonts/NotoSansTaiTham/googlefonts/ttf/NotoSansTaiTham-Medium.ttf",
  11807. "fonts/NotoSansTaiTham/googlefonts/ttf/NotoSansTaiTham-Regular.ttf",
  11808. "fonts/NotoSansTaiTham/googlefonts/variable-ttf/NotoSansTaiTham[wght].ttf",
  11809. "fonts/NotoSansTaiTham/unhinted/slim-variable-ttf/NotoSansTaiTham[wght].ttf",
  11810. "fonts/NotoSansTaiTham/unhinted/ttf/NotoSansTaiTham-SemiBold.ttf",
  11811. "fonts/NotoSansTaiTham/unhinted/ttf/NotoSansTaiTham-Bold.ttf",
  11812. "fonts/NotoSansTaiTham/unhinted/ttf/NotoSansTaiTham-Medium.ttf",
  11813. "fonts/NotoSansTaiTham/unhinted/ttf/NotoSansTaiTham-Regular.ttf",
  11814. "fonts/NotoSansTaiTham/unhinted/variable-ttf/NotoSansTaiTham[wght].ttf",
  11815. "fonts/NotoSansTaiTham/unhinted/otf/NotoSansTaiTham-Medium.otf",
  11816. "fonts/NotoSansTaiTham/unhinted/otf/NotoSansTaiTham-Regular.otf",
  11817. "fonts/NotoSansTaiTham/unhinted/otf/NotoSansTaiTham-SemiBold.otf",
  11818. "fonts/NotoSansTaiTham/unhinted/otf/NotoSansTaiTham-Bold.otf",
  11819. "fonts/NotoSansTaiTham/hinted/ttf/NotoSansTaiTham-SemiBold.ttf",
  11820. "fonts/NotoSansTaiTham/hinted/ttf/NotoSansTaiTham-Bold.ttf",
  11821. "fonts/NotoSansTaiTham/hinted/ttf/NotoSansTaiTham-Medium.ttf",
  11822. "fonts/NotoSansTaiTham/hinted/ttf/NotoSansTaiTham-Regular.ttf"
  11823. ],
  11824. "latest_release": {
  11825. "notes": "Noto Sans Tai Tham v2.002\n\nThis release:\n* fixes a number of fontbakery fails\n* correctly forms the conjunct for HIGH PA (#1)\n* does not form the conjunct for WA+LOW YA unless sakot characters are provided (#3)\n",
  11826. "published": "2022-09-14T16:17:31",
  11827. "url": "https://github.com/notofonts/tai-tham/releases/tag/NotoSansTaiTham-v2.002",
  11828. "version": "v2.002"
  11829. }
  11830. }
  11831. },
  11832. "known_releases": [
  11833. "NotoSansTaiTham-v2.002"
  11834. ]
  11835. },
  11836. "tai-viet": {
  11837. "families": {
  11838. "Noto Sans Tai Viet": {
  11839. "files": [
  11840. "fonts/NotoSansTaiViet/full/ttf/NotoSansTaiViet-Regular.ttf",
  11841. "fonts/NotoSansTaiViet/full/otf/NotoSansTaiViet-Regular.otf",
  11842. "fonts/NotoSansTaiViet/googlefonts/ttf/NotoSansTaiViet-Regular.ttf",
  11843. "fonts/NotoSansTaiViet/unhinted/slim-otf/NotoSansTaiViet-Regular.otf",
  11844. "fonts/NotoSansTaiViet/unhinted/ttf/NotoSansTaiViet-Regular.ttf",
  11845. "fonts/NotoSansTaiViet/unhinted/otf/NotoSansTaiViet-Regular.otf",
  11846. "fonts/NotoSansTaiViet/hinted/ttf/NotoSansTaiViet-Regular.ttf"
  11847. ],
  11848. "latest_release": {
  11849. "notes": "This release:\r\n\r\n* Adds kerning to avoid mark collisions (#6)\r\n* Removes the saltillo glyphs (#5)\r\n* Fixes mark anchors again (#4)",
  11850. "published": "2023-06-21T11:15:12",
  11851. "url": "https://github.com/notofonts/tai-viet/releases/tag/NotoSansTaiViet-v2.004",
  11852. "version": "v2.004"
  11853. }
  11854. }
  11855. },
  11856. "known_releases": [
  11857. "NotoSansTaiViet-v2.002",
  11858. "NotoSansTaiViet-v2.003",
  11859. "NotoSansTaiViet-v2.004"
  11860. ]
  11861. },
  11862. "takri": {
  11863. "families": {
  11864. "Noto Sans Takri": {
  11865. "files": [
  11866. "fonts/NotoSansTakri/unhinted/ttf/NotoSansTakri-Regular.ttf",
  11867. "fonts/NotoSansTakri/unhinted/otf/NotoSansTakri-Regular.otf",
  11868. "fonts/NotoSansTakri/full/ttf/NotoSansTakri-Regular.ttf",
  11869. "fonts/NotoSansTakri/full/otf/NotoSansTakri-Regular.otf",
  11870. "fonts/NotoSansTakri/hinted/ttf/NotoSansTakri-Regular.ttf",
  11871. "fonts/NotoSansTakri/googlefonts/ttf/NotoSansTakri-Regular.ttf"
  11872. ],
  11873. "latest_release": {
  11874. "notes": "Noto Sans Takri v2.005\n\nThis release includes the Unicode 14.0 codepoint U+16B9 (TAKRI ABBREVIATION SIGN).\n",
  11875. "published": "2023-09-26T11:53:35",
  11876. "url": "https://github.com/notofonts/takri/releases/tag/NotoSansTakri-v2.005",
  11877. "version": "v2.005"
  11878. }
  11879. }
  11880. },
  11881. "known_releases": [
  11882. "NotoSansTakri-v2.003",
  11883. "NotoSansTakri-v2.004",
  11884. "NotoSansTakri-v2.005"
  11885. ]
  11886. },
  11887. "tamil": {
  11888. "families": {
  11889. "Noto Sans Tamil": {
  11890. "files": [
  11891. "fonts/NotoSansTamil/full/slim-variable-ttf/NotoSansTamil-UI-VF.ttf",
  11892. "fonts/NotoSansTamil/full/slim-variable-ttf/NotoSansTamil[wght].ttf",
  11893. "fonts/NotoSansTamil/full/variable-ttf/NotoSansTamil[wdth,wght].ttf",
  11894. "fonts/NotoSansTamil/full/otf/NotoSansTamil-Medium.otf",
  11895. "fonts/NotoSansTamil/full/otf/NotoSansTamil-CondensedExtraBold.otf",
  11896. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensedExtraLight.otf",
  11897. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-Medium.otf",
  11898. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensedThin.otf",
  11899. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensedExtraBold.otf",
  11900. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-CondensedThin.otf",
  11901. "fonts/NotoSansTamil/full/otf/NotoSansTamil-Regular.otf",
  11902. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-Thin.otf",
  11903. "fonts/NotoSansTamil/full/otf/NotoSansTamil-Condensed.otf",
  11904. "fonts/NotoSansTamil/full/otf/NotoSansTamil-Bold.otf",
  11905. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensed.otf",
  11906. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiBold.otf",
  11907. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensedSemiBold.otf",
  11908. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-Regular.otf",
  11909. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-CondensedMedium.otf",
  11910. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-CondensedExtraBold.otf",
  11911. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraBold.otf",
  11912. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensedBlack.otf",
  11913. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensedThin.otf",
  11914. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensedMedium.otf",
  11915. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensedBold.otf",
  11916. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-CondensedExtraLight.otf",
  11917. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraLight.otf",
  11918. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensedBold.otf",
  11919. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensedExtraBold.otf",
  11920. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensedExtraLight.otf",
  11921. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensedSemiBold.otf",
  11922. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-Light.otf",
  11923. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensed.otf",
  11924. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensedLight.otf",
  11925. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensedExtraBold.otf",
  11926. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensedThin.otf",
  11927. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensedLight.otf",
  11928. "fonts/NotoSansTamil/full/otf/NotoSansTamil-CondensedExtraLight.otf",
  11929. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensedMedium.otf",
  11930. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensedSemiBold.otf",
  11931. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-CondensedBold.otf",
  11932. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensedBlack.otf",
  11933. "fonts/NotoSansTamil/full/otf/NotoSansTamil-CondensedMedium.otf",
  11934. "fonts/NotoSansTamil/full/otf/NotoSansTamil-Black.otf",
  11935. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraLight.otf",
  11936. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-CondensedLight.otf",
  11937. "fonts/NotoSansTamil/full/otf/NotoSansTamil-CondensedLight.otf",
  11938. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensedSemiBold.otf",
  11939. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensedThin.otf",
  11940. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensed.otf",
  11941. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiBold.otf",
  11942. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-CondensedBlack.otf",
  11943. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensedExtraLight.otf",
  11944. "fonts/NotoSansTamil/full/otf/NotoSansTamil-Light.otf",
  11945. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensedExtraBold.otf",
  11946. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensedBold.otf",
  11947. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-CondensedSemiBold.otf",
  11948. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensedLight.otf",
  11949. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensedBold.otf",
  11950. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-Bold.otf",
  11951. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-Condensed.otf",
  11952. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensedBlack.otf",
  11953. "fonts/NotoSansTamil/full/otf/NotoSansTamil-CondensedBlack.otf",
  11954. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensedMedium.otf",
  11955. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensedExtraLight.otf",
  11956. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraBold.otf",
  11957. "fonts/NotoSansTamil/full/otf/NotoSansTamil-CondensedThin.otf",
  11958. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-SemiCondensedMedium.otf",
  11959. "fonts/NotoSansTamil/full/otf/NotoSansTamil-SemiCondensed.otf",
  11960. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-ExtraCondensedBlack.otf",
  11961. "fonts/NotoSansTamil/full/otf/NotoSansTamil-CondensedSemiBold.otf",
  11962. "fonts/NotoSansTamil/full/otf/NotoSansTamil-ExtraCondensedLight.otf",
  11963. "fonts/NotoSansTamil/full/otf/NotoSansTamil-CondensedBold.otf",
  11964. "fonts/NotoSansTamil/full/otf/NotoSansTamil-Thin.otf",
  11965. "fonts/NotoSansTamil/full/otf/NotoSansTamilUI-Black.otf",
  11966. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiBold.ttf",
  11967. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedThin.ttf",
  11968. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedBlack.ttf",
  11969. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedBold.ttf",
  11970. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedBlack.ttf",
  11971. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Light.ttf",
  11972. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedLight.ttf",
  11973. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedBold.ttf",
  11974. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-Bold.ttf",
  11975. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedMedium.ttf",
  11976. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedExtraBold.ttf",
  11977. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Black.ttf",
  11978. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedMedium.ttf",
  11979. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Regular.ttf",
  11980. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedExtraBold.ttf",
  11981. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedExtraLight.ttf",
  11982. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedMedium.ttf",
  11983. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedBold.ttf",
  11984. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedSemiBold.ttf",
  11985. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedLight.ttf",
  11986. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-Thin.ttf",
  11987. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedMedium.ttf",
  11988. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Condensed.ttf",
  11989. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedThin.ttf",
  11990. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedSemiBold.ttf",
  11991. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedLight.ttf",
  11992. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedSemiBold.ttf",
  11993. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedExtraLight.ttf",
  11994. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedExtraBold.ttf",
  11995. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedThin.ttf",
  11996. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedBold.ttf",
  11997. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-Regular.ttf",
  11998. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedLight.ttf",
  11999. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensed.ttf",
  12000. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedExtraBold.ttf",
  12001. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedExtraBold.ttf",
  12002. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedExtraLight.ttf",
  12003. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedExtraBold.ttf",
  12004. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedSemiBold.ttf",
  12005. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedBlack.ttf",
  12006. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedExtraLight.ttf",
  12007. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Thin.ttf",
  12008. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedThin.ttf",
  12009. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Medium.ttf",
  12010. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraLight.ttf",
  12011. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedMedium.ttf",
  12012. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiBold.ttf",
  12013. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-Black.ttf",
  12014. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensed.ttf",
  12015. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedLight.ttf",
  12016. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensedMedium.ttf",
  12017. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedBold.ttf",
  12018. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedThin.ttf",
  12019. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-Light.ttf",
  12020. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedSemiBold.ttf",
  12021. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-Condensed.ttf",
  12022. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedLight.ttf",
  12023. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraBold.ttf",
  12024. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedBlack.ttf",
  12025. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedExtraLight.ttf",
  12026. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraBold.ttf",
  12027. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-CondensedExtraLight.ttf",
  12028. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedBlack.ttf",
  12029. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensed.ttf",
  12030. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-CondensedSemiBold.ttf",
  12031. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraCondensedBold.ttf",
  12032. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-ExtraLight.ttf",
  12033. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-ExtraCondensedThin.ttf",
  12034. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-SemiCondensed.ttf",
  12035. "fonts/NotoSansTamil/full/ttf/NotoSansTamil-Medium.ttf",
  12036. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-SemiCondensedBlack.ttf",
  12037. "fonts/NotoSansTamil/full/ttf/NotoSansTamilUI-Bold.ttf",
  12038. "fonts/NotoSansTamil/googlefonts/variable-ttf/NotoSansTamil[wdth,wght].ttf",
  12039. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-SemiBold.ttf",
  12040. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-Light.ttf",
  12041. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-Bold.ttf",
  12042. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-Black.ttf",
  12043. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-Regular.ttf",
  12044. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-Thin.ttf",
  12045. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-Regular.ttf",
  12046. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-Thin.ttf",
  12047. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-Medium.ttf",
  12048. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-ExtraLight.ttf",
  12049. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-SemiBold.ttf",
  12050. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-Black.ttf",
  12051. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-Light.ttf",
  12052. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-ExtraBold.ttf",
  12053. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-ExtraBold.ttf",
  12054. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-ExtraLight.ttf",
  12055. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamil-Medium.ttf",
  12056. "fonts/NotoSansTamil/googlefonts/ttf/NotoSansTamilUI-Bold.ttf",
  12057. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiBold.ttf",
  12058. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensedThin.ttf",
  12059. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensedBlack.ttf",
  12060. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensedBold.ttf",
  12061. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-CondensedBlack.ttf",
  12062. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-Light.ttf",
  12063. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-CondensedLight.ttf",
  12064. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-CondensedBold.ttf",
  12065. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-Bold.ttf",
  12066. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-CondensedMedium.ttf",
  12067. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-CondensedExtraBold.ttf",
  12068. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-Black.ttf",
  12069. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-CondensedMedium.ttf",
  12070. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-Regular.ttf",
  12071. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-CondensedExtraBold.ttf",
  12072. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensedExtraLight.ttf",
  12073. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensedMedium.ttf",
  12074. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensedBold.ttf",
  12075. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensedSemiBold.ttf",
  12076. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-CondensedLight.ttf",
  12077. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-Thin.ttf",
  12078. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensedMedium.ttf",
  12079. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-Condensed.ttf",
  12080. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensedThin.ttf",
  12081. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensedSemiBold.ttf",
  12082. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensedLight.ttf",
  12083. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensedSemiBold.ttf",
  12084. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensedExtraLight.ttf",
  12085. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensedExtraBold.ttf",
  12086. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-CondensedThin.ttf",
  12087. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensedBold.ttf",
  12088. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-Regular.ttf",
  12089. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensedLight.ttf",
  12090. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensed.ttf",
  12091. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensedExtraBold.ttf",
  12092. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensedExtraBold.ttf",
  12093. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensedExtraLight.ttf",
  12094. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensedExtraBold.ttf",
  12095. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensedSemiBold.ttf",
  12096. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-CondensedBlack.ttf",
  12097. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-CondensedExtraLight.ttf",
  12098. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-Thin.ttf",
  12099. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-CondensedThin.ttf",
  12100. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-Medium.ttf",
  12101. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraLight.ttf",
  12102. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensedMedium.ttf",
  12103. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiBold.ttf",
  12104. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-Black.ttf",
  12105. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensed.ttf",
  12106. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensedLight.ttf",
  12107. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensedMedium.ttf",
  12108. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-CondensedBold.ttf",
  12109. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensedThin.ttf",
  12110. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-Light.ttf",
  12111. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-CondensedSemiBold.ttf",
  12112. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-Condensed.ttf",
  12113. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensedLight.ttf",
  12114. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraBold.ttf",
  12115. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensedBlack.ttf",
  12116. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensedExtraLight.ttf",
  12117. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraBold.ttf",
  12118. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-CondensedExtraLight.ttf",
  12119. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensedBlack.ttf",
  12120. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensed.ttf",
  12121. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-CondensedSemiBold.ttf",
  12122. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraCondensedBold.ttf",
  12123. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-ExtraLight.ttf",
  12124. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-ExtraCondensedThin.ttf",
  12125. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-SemiCondensed.ttf",
  12126. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamil-Medium.ttf",
  12127. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-SemiCondensedBlack.ttf",
  12128. "fonts/NotoSansTamil/hinted/ttf/NotoSansTamilUI-Bold.ttf",
  12129. "fonts/NotoSansTamil/unhinted/slim-variable-ttf/NotoSansTamil-UI-VF.ttf",
  12130. "fonts/NotoSansTamil/unhinted/slim-variable-ttf/NotoSansTamil[wght].ttf",
  12131. "fonts/NotoSansTamil/unhinted/variable-ttf/NotoSansTamil[wdth,wght].ttf",
  12132. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-Medium.otf",
  12133. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-CondensedExtraBold.otf",
  12134. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensedExtraLight.otf",
  12135. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-Medium.otf",
  12136. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensedThin.otf",
  12137. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensedExtraBold.otf",
  12138. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-CondensedThin.otf",
  12139. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-Regular.otf",
  12140. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-Thin.otf",
  12141. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-Condensed.otf",
  12142. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-Bold.otf",
  12143. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensed.otf",
  12144. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiBold.otf",
  12145. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensedSemiBold.otf",
  12146. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-Regular.otf",
  12147. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-CondensedMedium.otf",
  12148. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-CondensedExtraBold.otf",
  12149. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraBold.otf",
  12150. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensedBlack.otf",
  12151. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensedThin.otf",
  12152. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensedMedium.otf",
  12153. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensedBold.otf",
  12154. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-CondensedExtraLight.otf",
  12155. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraLight.otf",
  12156. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensedBold.otf",
  12157. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensedExtraBold.otf",
  12158. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensedExtraLight.otf",
  12159. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensedSemiBold.otf",
  12160. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-Light.otf",
  12161. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensed.otf",
  12162. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensedLight.otf",
  12163. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensedExtraBold.otf",
  12164. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensedThin.otf",
  12165. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensedLight.otf",
  12166. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-CondensedExtraLight.otf",
  12167. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensedMedium.otf",
  12168. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensedSemiBold.otf",
  12169. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-CondensedBold.otf",
  12170. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensedBlack.otf",
  12171. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-CondensedMedium.otf",
  12172. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-Black.otf",
  12173. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraLight.otf",
  12174. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-CondensedLight.otf",
  12175. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-CondensedLight.otf",
  12176. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensedSemiBold.otf",
  12177. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensedThin.otf",
  12178. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensed.otf",
  12179. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiBold.otf",
  12180. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-CondensedBlack.otf",
  12181. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensedExtraLight.otf",
  12182. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-Light.otf",
  12183. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensedExtraBold.otf",
  12184. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensedBold.otf",
  12185. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-CondensedSemiBold.otf",
  12186. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensedLight.otf",
  12187. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensedBold.otf",
  12188. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-Bold.otf",
  12189. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-Condensed.otf",
  12190. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensedBlack.otf",
  12191. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-CondensedBlack.otf",
  12192. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensedMedium.otf",
  12193. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensedExtraLight.otf",
  12194. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraBold.otf",
  12195. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-CondensedThin.otf",
  12196. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-SemiCondensedMedium.otf",
  12197. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-SemiCondensed.otf",
  12198. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-ExtraCondensedBlack.otf",
  12199. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-CondensedSemiBold.otf",
  12200. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-ExtraCondensedLight.otf",
  12201. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-CondensedBold.otf",
  12202. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamil-Thin.otf",
  12203. "fonts/NotoSansTamil/unhinted/otf/NotoSansTamilUI-Black.otf",
  12204. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiBold.ttf",
  12205. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensedThin.ttf",
  12206. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensedBlack.ttf",
  12207. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensedBold.ttf",
  12208. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-CondensedBlack.ttf",
  12209. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-Light.ttf",
  12210. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-CondensedLight.ttf",
  12211. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-CondensedBold.ttf",
  12212. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-Bold.ttf",
  12213. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-CondensedMedium.ttf",
  12214. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-CondensedExtraBold.ttf",
  12215. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-Black.ttf",
  12216. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-CondensedMedium.ttf",
  12217. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-Regular.ttf",
  12218. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-CondensedExtraBold.ttf",
  12219. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensedExtraLight.ttf",
  12220. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensedMedium.ttf",
  12221. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensedBold.ttf",
  12222. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensedSemiBold.ttf",
  12223. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-CondensedLight.ttf",
  12224. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-Thin.ttf",
  12225. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensedMedium.ttf",
  12226. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-Condensed.ttf",
  12227. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensedThin.ttf",
  12228. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensedSemiBold.ttf",
  12229. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensedLight.ttf",
  12230. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensedSemiBold.ttf",
  12231. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensedExtraLight.ttf",
  12232. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensedExtraBold.ttf",
  12233. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-CondensedThin.ttf",
  12234. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensedBold.ttf",
  12235. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-Regular.ttf",
  12236. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensedLight.ttf",
  12237. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensed.ttf",
  12238. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensedExtraBold.ttf",
  12239. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensedExtraBold.ttf",
  12240. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensedExtraLight.ttf",
  12241. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensedExtraBold.ttf",
  12242. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensedSemiBold.ttf",
  12243. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-CondensedBlack.ttf",
  12244. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-CondensedExtraLight.ttf",
  12245. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-Thin.ttf",
  12246. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-CondensedThin.ttf",
  12247. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-Medium.ttf",
  12248. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraLight.ttf",
  12249. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensedMedium.ttf",
  12250. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiBold.ttf",
  12251. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-Black.ttf",
  12252. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensed.ttf",
  12253. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensedLight.ttf",
  12254. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensedMedium.ttf",
  12255. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-CondensedBold.ttf",
  12256. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensedThin.ttf",
  12257. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-Light.ttf",
  12258. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-CondensedSemiBold.ttf",
  12259. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-Condensed.ttf",
  12260. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensedLight.ttf",
  12261. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraBold.ttf",
  12262. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensedBlack.ttf",
  12263. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensedExtraLight.ttf",
  12264. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraBold.ttf",
  12265. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-CondensedExtraLight.ttf",
  12266. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensedBlack.ttf",
  12267. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensed.ttf",
  12268. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-CondensedSemiBold.ttf",
  12269. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraCondensedBold.ttf",
  12270. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-ExtraLight.ttf",
  12271. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-ExtraCondensedThin.ttf",
  12272. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-SemiCondensed.ttf",
  12273. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamil-Medium.ttf",
  12274. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-SemiCondensedBlack.ttf",
  12275. "fonts/NotoSansTamil/unhinted/ttf/NotoSansTamilUI-Bold.ttf"
  12276. ],
  12277. "latest_release": {
  12278. "notes": "Noto Sans Tamil v2.004\n\nThis release:\n* Includes UI builds\n* Fixes missing kerning (#15)\n* Improves the positioning of nuktas below vowel sign e (#3)\n",
  12279. "published": "2023-03-27T09:02:29",
  12280. "url": "https://github.com/notofonts/tamil/releases/tag/NotoSansTamil-v2.004",
  12281. "version": "v2.004"
  12282. }
  12283. },
  12284. "Noto Sans Tamil Supplement": {
  12285. "files": [
  12286. "fonts/NotoSansTamilSupplement/googlefonts/ttf/NotoSansTamilSupplement-Regular.ttf",
  12287. "fonts/NotoSansTamilSupplement/unhinted/otf/NotoSansTamilSupplement-Regular.otf",
  12288. "fonts/NotoSansTamilSupplement/unhinted/ttf/NotoSansTamilSupplement-Regular.ttf",
  12289. "fonts/NotoSansTamilSupplement/full/otf/NotoSansTamilSupplement-Regular.otf",
  12290. "fonts/NotoSansTamilSupplement/full/ttf/NotoSansTamilSupplement-Regular.ttf",
  12291. "fonts/NotoSansTamilSupplement/hinted/ttf/NotoSansTamilSupplement-Regular.ttf"
  12292. ],
  12293. "latest_release": {
  12294. "notes": "Noto Sans Tamil Supplement v2.001 This release fixes a number of fontbakery fails.\n",
  12295. "published": "2022-12-13T14:39:32",
  12296. "url": "https://github.com/notofonts/tamil/releases/tag/NotoSansTamilSupplement-v2.001",
  12297. "version": "v2.001"
  12298. }
  12299. },
  12300. "Noto Serif Tamil": {
  12301. "files": [
  12302. "fonts/NotoSerifTamil/full/slim-variable-ttf/NotoSerifTamil-Italic[wght].ttf",
  12303. "fonts/NotoSerifTamil/full/slim-variable-ttf/NotoSerifTamil[wght].ttf",
  12304. "fonts/NotoSerifTamil/full/variable-ttf/NotoSerifTamil[wdth,wght].ttf",
  12305. "fonts/NotoSerifTamil/full/variable-ttf/NotoSerifTamil-Italic[wdth,wght].ttf",
  12306. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiBoldItalic.otf",
  12307. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-Black.otf",
  12308. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-MediumItalic.otf",
  12309. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedMediumItalic.otf",
  12310. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-Thin.otf",
  12311. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedBlackItalic.otf",
  12312. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedMedium.otf",
  12313. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-Italic.otf",
  12314. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ThinItalic.otf",
  12315. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedBold.otf",
  12316. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedSemiBold.otf",
  12317. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensed.otf",
  12318. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-BoldItalic.otf",
  12319. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedBlack.otf",
  12320. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedBlack.otf",
  12321. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedItalic.otf",
  12322. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-BlackItalic.otf",
  12323. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-Regular.otf",
  12324. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-Light.otf",
  12325. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiBold.otf",
  12326. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraBoldItalic.otf",
  12327. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedExtraLightItalic.otf",
  12328. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedThinItalic.otf",
  12329. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedBold.otf",
  12330. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraLightItalic.otf",
  12331. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedMediumItalic.otf",
  12332. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedSemiBold.otf",
  12333. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedExtraLightItalic.otf",
  12334. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedExtraLightItalic.otf",
  12335. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedSemiBoldItalic.otf",
  12336. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedBlack.otf",
  12337. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedExtraBold.otf",
  12338. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedSemiBold.otf",
  12339. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedExtraBoldItalic.otf",
  12340. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedLightItalic.otf",
  12341. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedExtraBold.otf",
  12342. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedThinItalic.otf",
  12343. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraBold.otf",
  12344. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedThin.otf",
  12345. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedLight.otf",
  12346. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedBoldItalic.otf",
  12347. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedThinItalic.otf",
  12348. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedThin.otf",
  12349. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedLight.otf",
  12350. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedMedium.otf",
  12351. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedItalic.otf",
  12352. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedItalic.otf",
  12353. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraLight.otf",
  12354. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-Bold.otf",
  12355. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedMediumItalic.otf",
  12356. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedThin.otf",
  12357. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedExtraBoldItalic.otf",
  12358. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedLight.otf",
  12359. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedBoldItalic.otf",
  12360. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedSemiBoldItalic.otf",
  12361. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedExtraBold.otf",
  12362. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedBoldItalic.otf",
  12363. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedExtraBoldItalic.otf",
  12364. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedBlackItalic.otf",
  12365. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-LightItalic.otf",
  12366. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedExtraLight.otf",
  12367. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedExtraLight.otf",
  12368. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedMedium.otf",
  12369. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedLightItalic.otf",
  12370. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedExtraLight.otf",
  12371. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedBold.otf",
  12372. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-CondensedLightItalic.otf",
  12373. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-SemiCondensedBlackItalic.otf",
  12374. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensedSemiBoldItalic.otf",
  12375. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-ExtraCondensed.otf",
  12376. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-Medium.otf",
  12377. "fonts/NotoSerifTamil/full/otf/NotoSerifTamil-Condensed.otf",
  12378. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraLight.ttf",
  12379. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBlackItalic.ttf",
  12380. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedLightItalic.ttf",
  12381. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraBoldItalic.ttf",
  12382. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraLightItalic.ttf",
  12383. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-BoldItalic.ttf",
  12384. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedLight.ttf",
  12385. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedThin.ttf",
  12386. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedMedium.ttf",
  12387. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedLight.ttf",
  12388. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedMediumItalic.ttf",
  12389. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraBold.ttf",
  12390. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedLightItalic.ttf",
  12391. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-BlackItalic.ttf",
  12392. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraLight.ttf",
  12393. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBoldItalic.ttf",
  12394. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBoldItalic.ttf",
  12395. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedItalic.ttf",
  12396. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraLight.ttf",
  12397. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedLight.ttf",
  12398. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiBoldItalic.ttf",
  12399. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ThinItalic.ttf",
  12400. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBlackItalic.ttf",
  12401. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedMediumItalic.ttf",
  12402. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedThin.ttf",
  12403. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-LightItalic.ttf",
  12404. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedThinItalic.ttf",
  12405. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensed.ttf",
  12406. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedSemiBoldItalic.ttf",
  12407. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBlack.ttf",
  12408. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraLightItalic.ttf",
  12409. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Regular.ttf",
  12410. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBlackItalic.ttf",
  12411. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Italic.ttf",
  12412. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedItalic.ttf",
  12413. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Medium.ttf",
  12414. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedSemiBold.ttf",
  12415. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedSemiBold.ttf",
  12416. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Light.ttf",
  12417. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraLight.ttf",
  12418. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensed.ttf",
  12419. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-MediumItalic.ttf",
  12420. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedSemiBoldItalic.ttf",
  12421. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedSemiBold.ttf",
  12422. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiBold.ttf",
  12423. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBold.ttf",
  12424. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedThinItalic.ttf",
  12425. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Black.ttf",
  12426. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedBoldItalic.ttf",
  12427. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Bold.ttf",
  12428. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedMediumItalic.ttf",
  12429. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBold.ttf",
  12430. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraBoldItalic.ttf",
  12431. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedSemiBoldItalic.ttf",
  12432. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraLightItalic.ttf",
  12433. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Condensed.ttf",
  12434. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedMedium.ttf",
  12435. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-Thin.ttf",
  12436. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedThin.ttf",
  12437. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedLightItalic.ttf",
  12438. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedThinItalic.ttf",
  12439. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedItalic.ttf",
  12440. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraBold.ttf",
  12441. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedExtraBoldItalic.ttf",
  12442. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraBold.ttf",
  12443. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBlack.ttf",
  12444. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedBold.ttf",
  12445. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-ExtraCondensedExtraBold.ttf",
  12446. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedMedium.ttf",
  12447. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-SemiCondensedBlack.ttf",
  12448. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraBoldItalic.ttf",
  12449. "fonts/NotoSerifTamil/full/ttf/NotoSerifTamil-CondensedExtraLightItalic.ttf",
  12450. "fonts/NotoSerifTamil/googlefonts/variable-ttf/NotoSerifTamil[wdth,wght].ttf",
  12451. "fonts/NotoSerifTamil/googlefonts/variable-ttf/NotoSerifTamil-Italic[wdth,wght].ttf",
  12452. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-BoldItalic.ttf",
  12453. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-BlackItalic.ttf",
  12454. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-ExtraLight.ttf",
  12455. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-SemiBoldItalic.ttf",
  12456. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-ThinItalic.ttf",
  12457. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-LightItalic.ttf",
  12458. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-ExtraLightItalic.ttf",
  12459. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-Regular.ttf",
  12460. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-Italic.ttf",
  12461. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-Medium.ttf",
  12462. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-Light.ttf",
  12463. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-MediumItalic.ttf",
  12464. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-SemiBold.ttf",
  12465. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-Black.ttf",
  12466. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-Bold.ttf",
  12467. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-ExtraBoldItalic.ttf",
  12468. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-Thin.ttf",
  12469. "fonts/NotoSerifTamil/googlefonts/ttf/NotoSerifTamil-ExtraBold.ttf",
  12470. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedExtraLight.ttf",
  12471. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedBlackItalic.ttf",
  12472. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedLightItalic.ttf",
  12473. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedExtraBoldItalic.ttf",
  12474. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedExtraLightItalic.ttf",
  12475. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-BoldItalic.ttf",
  12476. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedLight.ttf",
  12477. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedThin.ttf",
  12478. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedMedium.ttf",
  12479. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedLight.ttf",
  12480. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedMediumItalic.ttf",
  12481. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedExtraBold.ttf",
  12482. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedLightItalic.ttf",
  12483. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-BlackItalic.ttf",
  12484. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedExtraLight.ttf",
  12485. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedBoldItalic.ttf",
  12486. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedBoldItalic.ttf",
  12487. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedItalic.ttf",
  12488. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraLight.ttf",
  12489. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedLight.ttf",
  12490. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiBoldItalic.ttf",
  12491. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ThinItalic.ttf",
  12492. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedBlackItalic.ttf",
  12493. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedMediumItalic.ttf",
  12494. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedThin.ttf",
  12495. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-LightItalic.ttf",
  12496. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedThinItalic.ttf",
  12497. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensed.ttf",
  12498. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedSemiBoldItalic.ttf",
  12499. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedBlack.ttf",
  12500. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraLightItalic.ttf",
  12501. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-Regular.ttf",
  12502. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedBlackItalic.ttf",
  12503. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-Italic.ttf",
  12504. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedItalic.ttf",
  12505. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-Medium.ttf",
  12506. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedSemiBold.ttf",
  12507. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedSemiBold.ttf",
  12508. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-Light.ttf",
  12509. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedExtraLight.ttf",
  12510. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensed.ttf",
  12511. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-MediumItalic.ttf",
  12512. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedSemiBoldItalic.ttf",
  12513. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedSemiBold.ttf",
  12514. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiBold.ttf",
  12515. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedBold.ttf",
  12516. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedThinItalic.ttf",
  12517. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-Black.ttf",
  12518. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedBoldItalic.ttf",
  12519. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-Bold.ttf",
  12520. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedMediumItalic.ttf",
  12521. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedBold.ttf",
  12522. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraBoldItalic.ttf",
  12523. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedSemiBoldItalic.ttf",
  12524. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedExtraLightItalic.ttf",
  12525. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-Condensed.ttf",
  12526. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedMedium.ttf",
  12527. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-Thin.ttf",
  12528. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedThin.ttf",
  12529. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedLightItalic.ttf",
  12530. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedThinItalic.ttf",
  12531. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedItalic.ttf",
  12532. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedExtraBold.ttf",
  12533. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedExtraBoldItalic.ttf",
  12534. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraBold.ttf",
  12535. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedBlack.ttf",
  12536. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedBold.ttf",
  12537. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-ExtraCondensedExtraBold.ttf",
  12538. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedMedium.ttf",
  12539. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-SemiCondensedBlack.ttf",
  12540. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedExtraBoldItalic.ttf",
  12541. "fonts/NotoSerifTamil/hinted/ttf/NotoSerifTamil-CondensedExtraLightItalic.ttf",
  12542. "fonts/NotoSerifTamil/unhinted/slim-variable-ttf/NotoSerifTamil-Italic[wght].ttf",
  12543. "fonts/NotoSerifTamil/unhinted/slim-variable-ttf/NotoSerifTamil[wght].ttf",
  12544. "fonts/NotoSerifTamil/unhinted/variable-ttf/NotoSerifTamil[wdth,wght].ttf",
  12545. "fonts/NotoSerifTamil/unhinted/variable-ttf/NotoSerifTamil-Italic[wdth,wght].ttf",
  12546. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiBoldItalic.otf",
  12547. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-Black.otf",
  12548. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-MediumItalic.otf",
  12549. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedMediumItalic.otf",
  12550. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-Thin.otf",
  12551. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedBlackItalic.otf",
  12552. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedMedium.otf",
  12553. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-Italic.otf",
  12554. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ThinItalic.otf",
  12555. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedBold.otf",
  12556. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedSemiBold.otf",
  12557. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensed.otf",
  12558. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-BoldItalic.otf",
  12559. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedBlack.otf",
  12560. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedBlack.otf",
  12561. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedItalic.otf",
  12562. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-BlackItalic.otf",
  12563. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-Regular.otf",
  12564. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-Light.otf",
  12565. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiBold.otf",
  12566. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraBoldItalic.otf",
  12567. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedExtraLightItalic.otf",
  12568. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedThinItalic.otf",
  12569. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedBold.otf",
  12570. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraLightItalic.otf",
  12571. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedMediumItalic.otf",
  12572. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedSemiBold.otf",
  12573. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedExtraLightItalic.otf",
  12574. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedExtraLightItalic.otf",
  12575. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedSemiBoldItalic.otf",
  12576. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedBlack.otf",
  12577. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedExtraBold.otf",
  12578. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedSemiBold.otf",
  12579. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedExtraBoldItalic.otf",
  12580. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedLightItalic.otf",
  12581. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedExtraBold.otf",
  12582. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedThinItalic.otf",
  12583. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraBold.otf",
  12584. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedThin.otf",
  12585. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedLight.otf",
  12586. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedBoldItalic.otf",
  12587. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedThinItalic.otf",
  12588. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedThin.otf",
  12589. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedLight.otf",
  12590. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedMedium.otf",
  12591. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedItalic.otf",
  12592. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedItalic.otf",
  12593. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraLight.otf",
  12594. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-Bold.otf",
  12595. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedMediumItalic.otf",
  12596. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedThin.otf",
  12597. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedExtraBoldItalic.otf",
  12598. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedLight.otf",
  12599. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedBoldItalic.otf",
  12600. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedSemiBoldItalic.otf",
  12601. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedExtraBold.otf",
  12602. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedBoldItalic.otf",
  12603. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedExtraBoldItalic.otf",
  12604. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedBlackItalic.otf",
  12605. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-LightItalic.otf",
  12606. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedExtraLight.otf",
  12607. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedExtraLight.otf",
  12608. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedMedium.otf",
  12609. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedLightItalic.otf",
  12610. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedExtraLight.otf",
  12611. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedBold.otf",
  12612. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-CondensedLightItalic.otf",
  12613. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-SemiCondensedBlackItalic.otf",
  12614. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensedSemiBoldItalic.otf",
  12615. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-ExtraCondensed.otf",
  12616. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-Medium.otf",
  12617. "fonts/NotoSerifTamil/unhinted/otf/NotoSerifTamil-Condensed.otf",
  12618. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedExtraLight.ttf",
  12619. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedBlackItalic.ttf",
  12620. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedLightItalic.ttf",
  12621. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedExtraBoldItalic.ttf",
  12622. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedExtraLightItalic.ttf",
  12623. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-BoldItalic.ttf",
  12624. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedLight.ttf",
  12625. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedThin.ttf",
  12626. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedMedium.ttf",
  12627. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedLight.ttf",
  12628. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedMediumItalic.ttf",
  12629. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedExtraBold.ttf",
  12630. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedLightItalic.ttf",
  12631. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-BlackItalic.ttf",
  12632. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedExtraLight.ttf",
  12633. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedBoldItalic.ttf",
  12634. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedBoldItalic.ttf",
  12635. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedItalic.ttf",
  12636. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraLight.ttf",
  12637. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedLight.ttf",
  12638. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiBoldItalic.ttf",
  12639. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ThinItalic.ttf",
  12640. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedBlackItalic.ttf",
  12641. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedMediumItalic.ttf",
  12642. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedThin.ttf",
  12643. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-LightItalic.ttf",
  12644. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedThinItalic.ttf",
  12645. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensed.ttf",
  12646. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedSemiBoldItalic.ttf",
  12647. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedBlack.ttf",
  12648. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraLightItalic.ttf",
  12649. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-Regular.ttf",
  12650. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedBlackItalic.ttf",
  12651. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-Italic.ttf",
  12652. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedItalic.ttf",
  12653. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-Medium.ttf",
  12654. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedSemiBold.ttf",
  12655. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedSemiBold.ttf",
  12656. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-Light.ttf",
  12657. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedExtraLight.ttf",
  12658. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensed.ttf",
  12659. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-MediumItalic.ttf",
  12660. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedSemiBoldItalic.ttf",
  12661. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedSemiBold.ttf",
  12662. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiBold.ttf",
  12663. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedBold.ttf",
  12664. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedThinItalic.ttf",
  12665. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-Black.ttf",
  12666. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedBoldItalic.ttf",
  12667. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-Bold.ttf",
  12668. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedMediumItalic.ttf",
  12669. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedBold.ttf",
  12670. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraBoldItalic.ttf",
  12671. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedSemiBoldItalic.ttf",
  12672. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedExtraLightItalic.ttf",
  12673. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-Condensed.ttf",
  12674. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedMedium.ttf",
  12675. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-Thin.ttf",
  12676. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedThin.ttf",
  12677. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedLightItalic.ttf",
  12678. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedThinItalic.ttf",
  12679. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedItalic.ttf",
  12680. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedExtraBold.ttf",
  12681. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedExtraBoldItalic.ttf",
  12682. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraBold.ttf",
  12683. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedBlack.ttf",
  12684. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedBold.ttf",
  12685. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-ExtraCondensedExtraBold.ttf",
  12686. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedMedium.ttf",
  12687. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-SemiCondensedBlack.ttf",
  12688. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedExtraBoldItalic.ttf",
  12689. "fonts/NotoSerifTamil/unhinted/ttf/NotoSerifTamil-CondensedExtraLightItalic.ttf"
  12690. ],
  12691. "latest_release": {
  12692. "notes": "Noto Serif Tamil v2.004 This release: AUTHORS.txt CONTRIBUTORS.txt Makefile OFL.txt README.md dc documentation fontbakery.yml fonts foo.fea master_ttf master_ufo out qa report.html requirements.txt scripts sources subset-files variable_ttf venv Fixes missing kerning (#15) AUTHORS.txt CONTRIBUTORS.txt Makefile OFL.txt README.md dc documentation fontbakery.yml fonts foo.fea master_ttf master_ufo out qa report.html requirements.txt scripts sources subset-files variable_ttf venv Improves the positioning of nuktas below vowel sign e (#3)\n",
  12693. "published": "2023-03-27T09:54:27",
  12694. "url": "https://github.com/notofonts/tamil/releases/tag/NotoSerifTamil-v2.004",
  12695. "version": "v2.004"
  12696. }
  12697. }
  12698. },
  12699. "known_releases": [
  12700. "NotoSansTamil-v2.003",
  12701. "NotoSerifTamil-v2.003",
  12702. "NotoSansTamilSupplement-v2.001",
  12703. "NotoSansTamil-v2.004",
  12704. "NotoSerifTamil-v2.004"
  12705. ]
  12706. },
  12707. "tangsa": {
  12708. "families": {
  12709. "Noto Sans Tangsa": {
  12710. "files": [
  12711. "fonts/NotoSansTangsa/unhinted/ttf/NotoSansTangsa-Regular.ttf",
  12712. "fonts/NotoSansTangsa/unhinted/ttf/NotoSansTangsa-Medium.ttf",
  12713. "fonts/NotoSansTangsa/unhinted/ttf/NotoSansTangsa-Bold.ttf",
  12714. "fonts/NotoSansTangsa/unhinted/ttf/NotoSansTangsa-SemiBold.ttf",
  12715. "fonts/NotoSansTangsa/unhinted/variable/NotoSansTangsa[wght].ttf",
  12716. "fonts/NotoSansTangsa/unhinted/slim-variable-ttf/NotoSansTangsa[wght].ttf",
  12717. "fonts/NotoSansTangsa/unhinted/otf/NotoSansTangsa-Medium.otf",
  12718. "fonts/NotoSansTangsa/unhinted/otf/NotoSansTangsa-Regular.otf",
  12719. "fonts/NotoSansTangsa/unhinted/otf/NotoSansTangsa-Bold.otf",
  12720. "fonts/NotoSansTangsa/unhinted/otf/NotoSansTangsa-SemiBold.otf",
  12721. "fonts/NotoSansTangsa/full/ttf/NotoSansTangsa-Regular.ttf",
  12722. "fonts/NotoSansTangsa/full/ttf/NotoSansTangsa-Medium.ttf",
  12723. "fonts/NotoSansTangsa/full/ttf/NotoSansTangsa-Bold.ttf",
  12724. "fonts/NotoSansTangsa/full/ttf/NotoSansTangsa-SemiBold.ttf",
  12725. "fonts/NotoSansTangsa/full/variable/NotoSansTangsa[wght].ttf",
  12726. "fonts/NotoSansTangsa/full/slim-variable-ttf/NotoSansTangsa[wght].ttf",
  12727. "fonts/NotoSansTangsa/full/otf/NotoSansTangsa-Medium.otf",
  12728. "fonts/NotoSansTangsa/full/otf/NotoSansTangsa-Regular.otf",
  12729. "fonts/NotoSansTangsa/full/otf/NotoSansTangsa-Bold.otf",
  12730. "fonts/NotoSansTangsa/full/otf/NotoSansTangsa-SemiBold.otf",
  12731. "fonts/NotoSansTangsa/hinted/ttf/NotoSansTangsa-Regular.ttf",
  12732. "fonts/NotoSansTangsa/hinted/ttf/NotoSansTangsa-Medium.ttf",
  12733. "fonts/NotoSansTangsa/hinted/ttf/NotoSansTangsa-Bold.ttf",
  12734. "fonts/NotoSansTangsa/hinted/ttf/NotoSansTangsa-SemiBold.ttf",
  12735. "fonts/NotoSansTangsa/googlefonts/ttf/NotoSansTangsa-Regular.ttf",
  12736. "fonts/NotoSansTangsa/googlefonts/ttf/NotoSansTangsa-Medium.ttf",
  12737. "fonts/NotoSansTangsa/googlefonts/ttf/NotoSansTangsa-Bold.ttf",
  12738. "fonts/NotoSansTangsa/googlefonts/ttf/NotoSansTangsa-SemiBold.ttf",
  12739. "fonts/NotoSansTangsa/googlefonts/variable/NotoSansTangsa[wght].ttf"
  12740. ],
  12741. "latest_release": {
  12742. "notes": "Noto Sans Tangsa v1.506\n\nThis release improves the shape of the final NG after community feedback (#9, thanks to David Williams).\n",
  12743. "published": "2023-09-26T12:29:23",
  12744. "url": "https://github.com/notofonts/tangsa/releases/tag/NotoSansTangsa-v1.506",
  12745. "version": "v1.506"
  12746. }
  12747. }
  12748. },
  12749. "known_releases": [
  12750. "NotoSansTangsa-v1.504",
  12751. "NotoSansTangsa-v1.505",
  12752. "NotoSansTangsa-v1.506"
  12753. ]
  12754. },
  12755. "tangut": {
  12756. "families": {
  12757. "Noto Serif Tangut": {
  12758. "files": [
  12759. "fonts/NotoSerifTangut/full/ttf/NotoSerifTangut-Regular.ttf",
  12760. "fonts/NotoSerifTangut/full/otf/NotoSerifTangut-Regular.otf",
  12761. "fonts/NotoSerifTangut/unhinted/ttf/NotoSerifTangut-Regular.ttf",
  12762. "fonts/NotoSerifTangut/unhinted/otf/NotoSerifTangut-Regular.otf",
  12763. "fonts/NotoSerifTangut/googlefonts/ttf/NotoSerifTangut-Regular.ttf",
  12764. "fonts/NotoSerifTangut/hinted/ttf/NotoSerifTangut-Regular.ttf"
  12765. ],
  12766. "latest_release": {
  12767. "notes": "Noto Serif Tangut v2.170\n\nThis release removes some unnecessary unencoded glyphs (#2) and updates five glyphs to corrected forms (#5), thanks to @PaulHanslow.\n",
  12768. "published": "2025-07-18T07:31:00+00:00",
  12769. "url": "https://github.com/notofonts/tangut/releases/tag/NotoSerifTangut-v2.170",
  12770. "version": "v2.170"
  12771. }
  12772. }
  12773. },
  12774. "known_releases": [
  12775. "NotoSerifTangut-v2.169",
  12776. "NotoSerifTangut-v2.170"
  12777. ]
  12778. },
  12779. "telugu": {
  12780. "families": {
  12781. "Noto Sans Telugu": {
  12782. "files": [
  12783. "fonts/NotoSansTelugu/googlefonts/variable/NotoSansTelugu[wdth,wght].ttf",
  12784. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-Medium.ttf",
  12785. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-ExtraBold.ttf",
  12786. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-Thin.ttf",
  12787. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-Thin.ttf",
  12788. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-Light.ttf",
  12789. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-SemiBold.ttf",
  12790. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-SemiBold.ttf",
  12791. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-ExtraLight.ttf",
  12792. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-ExtraBold.ttf",
  12793. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-Light.ttf",
  12794. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-Black.ttf",
  12795. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-Bold.ttf",
  12796. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-Regular.ttf",
  12797. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-Medium.ttf",
  12798. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-Black.ttf",
  12799. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-Regular.ttf",
  12800. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTelugu-Bold.ttf",
  12801. "fonts/NotoSansTelugu/googlefonts/ttf/NotoSansTeluguUI-ExtraLight.ttf",
  12802. "fonts/NotoSansTelugu/full/variable/NotoSansTelugu[wdth,wght].ttf",
  12803. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensedExtraBold.otf",
  12804. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensedExtraBold.otf",
  12805. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-CondensedLight.otf",
  12806. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensedBlack.otf",
  12807. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensedThin.otf",
  12808. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-CondensedBold.otf",
  12809. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensedBlack.otf",
  12810. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensedSemiBold.otf",
  12811. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensedExtraLight.otf",
  12812. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensedBlack.otf",
  12813. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-Thin.otf",
  12814. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-Black.otf",
  12815. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-Bold.otf",
  12816. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensed.otf",
  12817. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensedMedium.otf",
  12818. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensedExtraBold.otf",
  12819. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensedThin.otf",
  12820. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-Condensed.otf",
  12821. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-CondensedBlack.otf",
  12822. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensedLight.otf",
  12823. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensedSemiBold.otf",
  12824. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-Medium.otf",
  12825. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensedSemiBold.otf",
  12826. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensed.otf",
  12827. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensed.otf",
  12828. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensedExtraLight.otf",
  12829. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensedBlack.otf",
  12830. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensedLight.otf",
  12831. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-CondensedThin.otf",
  12832. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiBold.otf",
  12833. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensedExtraBold.otf",
  12834. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-Light.otf",
  12835. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraLight.otf",
  12836. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-CondensedExtraLight.otf",
  12837. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-Regular.otf",
  12838. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensedThin.otf",
  12839. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-CondensedSemiBold.otf",
  12840. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-Condensed.otf",
  12841. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraBold.otf",
  12842. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensedBold.otf",
  12843. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-Medium.otf",
  12844. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensedLight.otf",
  12845. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiBold.otf",
  12846. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensedMedium.otf",
  12847. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-CondensedBold.otf",
  12848. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensedSemiBold.otf",
  12849. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensed.otf",
  12850. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-CondensedThin.otf",
  12851. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensedExtraLight.otf",
  12852. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensedMedium.otf",
  12853. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-CondensedSemiBold.otf",
  12854. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-CondensedMedium.otf",
  12855. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-CondensedBlack.otf",
  12856. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraBold.otf",
  12857. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-CondensedExtraBold.otf",
  12858. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensedLight.otf",
  12859. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-CondensedMedium.otf",
  12860. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensedMedium.otf",
  12861. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-Light.otf",
  12862. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraLight.otf",
  12863. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-CondensedExtraLight.otf",
  12864. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-CondensedExtraBold.otf",
  12865. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensedExtraLight.otf",
  12866. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-CondensedLight.otf",
  12867. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-Bold.otf",
  12868. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-Regular.otf",
  12869. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-Black.otf",
  12870. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-SemiCondensedBold.otf",
  12871. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-ExtraCondensedBold.otf",
  12872. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-SemiCondensedThin.otf",
  12873. "fonts/NotoSansTelugu/full/otf/NotoSansTeluguUI-Thin.otf",
  12874. "fonts/NotoSansTelugu/full/otf/NotoSansTelugu-ExtraCondensedBold.otf",
  12875. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedLight.ttf",
  12876. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedExtraBold.ttf",
  12877. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Medium.ttf",
  12878. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraBold.ttf",
  12879. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedMedium.ttf",
  12880. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedExtraLight.ttf",
  12881. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedSemiBold.ttf",
  12882. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedLight.ttf",
  12883. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedBold.ttf",
  12884. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Thin.ttf",
  12885. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensed.ttf",
  12886. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensed.ttf",
  12887. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Thin.ttf",
  12888. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedExtraBold.ttf",
  12889. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedThin.ttf",
  12890. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Light.ttf",
  12891. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedMedium.ttf",
  12892. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedBlack.ttf",
  12893. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedMedium.ttf",
  12894. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedBold.ttf",
  12895. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedLight.ttf",
  12896. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiBold.ttf",
  12897. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiBold.ttf",
  12898. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedLight.ttf",
  12899. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedMedium.ttf",
  12900. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedBlack.ttf",
  12901. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedExtraBold.ttf",
  12902. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedBlack.ttf",
  12903. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedSemiBold.ttf",
  12904. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedSemiBold.ttf",
  12905. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedBold.ttf",
  12906. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Condensed.ttf",
  12907. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraLight.ttf",
  12908. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedBold.ttf",
  12909. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraBold.ttf",
  12910. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedThin.ttf",
  12911. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedExtraBold.ttf",
  12912. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Light.ttf",
  12913. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedSemiBold.ttf",
  12914. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Black.ttf",
  12915. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedLight.ttf",
  12916. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Bold.ttf",
  12917. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Condensed.ttf",
  12918. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Regular.ttf",
  12919. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedExtraLight.ttf",
  12920. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedThin.ttf",
  12921. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-Medium.ttf",
  12922. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedThin.ttf",
  12923. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensedExtraLight.ttf",
  12924. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedExtraBold.ttf",
  12925. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Black.ttf",
  12926. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedExtraLight.ttf",
  12927. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Regular.ttf",
  12928. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedMedium.ttf",
  12929. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedBlack.ttf",
  12930. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-Bold.ttf",
  12931. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraCondensed.ttf",
  12932. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensed.ttf",
  12933. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-SemiCondensedSemiBold.ttf",
  12934. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedExtraLight.ttf",
  12935. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-ExtraLight.ttf",
  12936. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedMedium.ttf",
  12937. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedBlack.ttf",
  12938. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedThin.ttf",
  12939. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedBlack.ttf",
  12940. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedSemiBold.ttf",
  12941. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-SemiCondensedExtraLight.ttf",
  12942. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedExtraBold.ttf",
  12943. "fonts/NotoSansTelugu/full/ttf/NotoSansTeluguUI-CondensedBold.ttf",
  12944. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-ExtraCondensedThin.ttf",
  12945. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedLight.ttf",
  12946. "fonts/NotoSansTelugu/full/ttf/NotoSansTelugu-CondensedBold.ttf",
  12947. "fonts/NotoSansTelugu/full/slim-variable-ttf/NotoSansTelugu[wght].ttf",
  12948. "fonts/NotoSansTelugu/unhinted/variable/NotoSansTelugu[wdth,wght].ttf",
  12949. "fonts/NotoSansTelugu/unhinted/variable/NotoSansTelugu-UI-VF.ttf",
  12950. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensedExtraBold.otf",
  12951. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensedExtraBold.otf",
  12952. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-CondensedLight.otf",
  12953. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensedBlack.otf",
  12954. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensedThin.otf",
  12955. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-CondensedBold.otf",
  12956. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensedBlack.otf",
  12957. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensedSemiBold.otf",
  12958. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensedExtraLight.otf",
  12959. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensedBlack.otf",
  12960. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-Thin.otf",
  12961. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-Black.otf",
  12962. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-Bold.otf",
  12963. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensed.otf",
  12964. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensedMedium.otf",
  12965. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensedExtraBold.otf",
  12966. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensedThin.otf",
  12967. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-Condensed.otf",
  12968. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-CondensedBlack.otf",
  12969. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensedLight.otf",
  12970. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensedSemiBold.otf",
  12971. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-Medium.otf",
  12972. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensedSemiBold.otf",
  12973. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensed.otf",
  12974. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensed.otf",
  12975. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensedExtraLight.otf",
  12976. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensedBlack.otf",
  12977. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensedLight.otf",
  12978. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-CondensedThin.otf",
  12979. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiBold.otf",
  12980. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensedExtraBold.otf",
  12981. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-Light.otf",
  12982. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraLight.otf",
  12983. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-CondensedExtraLight.otf",
  12984. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-Regular.otf",
  12985. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensedThin.otf",
  12986. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-CondensedSemiBold.otf",
  12987. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-Condensed.otf",
  12988. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraBold.otf",
  12989. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensedBold.otf",
  12990. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-Medium.otf",
  12991. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensedLight.otf",
  12992. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiBold.otf",
  12993. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensedMedium.otf",
  12994. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-CondensedBold.otf",
  12995. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensedSemiBold.otf",
  12996. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensed.otf",
  12997. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-CondensedThin.otf",
  12998. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensedExtraLight.otf",
  12999. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensedMedium.otf",
  13000. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-CondensedSemiBold.otf",
  13001. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-CondensedMedium.otf",
  13002. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-CondensedBlack.otf",
  13003. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraBold.otf",
  13004. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-CondensedExtraBold.otf",
  13005. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensedLight.otf",
  13006. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-CondensedMedium.otf",
  13007. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensedMedium.otf",
  13008. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-Light.otf",
  13009. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraLight.otf",
  13010. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-CondensedExtraLight.otf",
  13011. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-CondensedExtraBold.otf",
  13012. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensedExtraLight.otf",
  13013. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-CondensedLight.otf",
  13014. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-Bold.otf",
  13015. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-Regular.otf",
  13016. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-Black.otf",
  13017. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-SemiCondensedBold.otf",
  13018. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-ExtraCondensedBold.otf",
  13019. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-SemiCondensedThin.otf",
  13020. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTeluguUI-Thin.otf",
  13021. "fonts/NotoSansTelugu/unhinted/otf/NotoSansTelugu-ExtraCondensedBold.otf",
  13022. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensedLight.ttf",
  13023. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensedExtraBold.ttf",
  13024. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-Medium.ttf",
  13025. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraBold.ttf",
  13026. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensedMedium.ttf",
  13027. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensedExtraLight.ttf",
  13028. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-CondensedSemiBold.ttf",
  13029. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-CondensedLight.ttf",
  13030. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensedBold.ttf",
  13031. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-Thin.ttf",
  13032. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensed.ttf",
  13033. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensed.ttf",
  13034. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-Thin.ttf",
  13035. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensedExtraBold.ttf",
  13036. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensedThin.ttf",
  13037. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-Light.ttf",
  13038. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-CondensedMedium.ttf",
  13039. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensedBlack.ttf",
  13040. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensedMedium.ttf",
  13041. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensedBold.ttf",
  13042. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensedLight.ttf",
  13043. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiBold.ttf",
  13044. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiBold.ttf",
  13045. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensedLight.ttf",
  13046. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-CondensedMedium.ttf",
  13047. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensedBlack.ttf",
  13048. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-CondensedExtraBold.ttf",
  13049. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-CondensedBlack.ttf",
  13050. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensedSemiBold.ttf",
  13051. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-CondensedSemiBold.ttf",
  13052. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensedBold.ttf",
  13053. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-Condensed.ttf",
  13054. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraLight.ttf",
  13055. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensedBold.ttf",
  13056. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraBold.ttf",
  13057. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-CondensedThin.ttf",
  13058. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensedExtraBold.ttf",
  13059. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-Light.ttf",
  13060. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensedSemiBold.ttf",
  13061. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-Black.ttf",
  13062. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensedLight.ttf",
  13063. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-Bold.ttf",
  13064. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-Condensed.ttf",
  13065. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-Regular.ttf",
  13066. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensedExtraLight.ttf",
  13067. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-CondensedThin.ttf",
  13068. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-Medium.ttf",
  13069. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensedThin.ttf",
  13070. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensedExtraLight.ttf",
  13071. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-CondensedExtraBold.ttf",
  13072. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-Black.ttf",
  13073. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-CondensedExtraLight.ttf",
  13074. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-Regular.ttf",
  13075. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensedMedium.ttf",
  13076. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensedBlack.ttf",
  13077. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-Bold.ttf",
  13078. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraCondensed.ttf",
  13079. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensed.ttf",
  13080. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-SemiCondensedSemiBold.ttf",
  13081. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-CondensedExtraLight.ttf",
  13082. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-ExtraLight.ttf",
  13083. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensedMedium.ttf",
  13084. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensedBlack.ttf",
  13085. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensedThin.ttf",
  13086. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-CondensedBlack.ttf",
  13087. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensedSemiBold.ttf",
  13088. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-SemiCondensedExtraLight.ttf",
  13089. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensedExtraBold.ttf",
  13090. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTeluguUI-CondensedBold.ttf",
  13091. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-ExtraCondensedThin.ttf",
  13092. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-CondensedLight.ttf",
  13093. "fonts/NotoSansTelugu/unhinted/ttf/NotoSansTelugu-CondensedBold.ttf",
  13094. "fonts/NotoSansTelugu/unhinted/slim-variable-ttf/NotoSansTelugu[wght].ttf",
  13095. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensedLight.ttf",
  13096. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensedExtraBold.ttf",
  13097. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-Medium.ttf",
  13098. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraBold.ttf",
  13099. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensedMedium.ttf",
  13100. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensedExtraLight.ttf",
  13101. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-CondensedSemiBold.ttf",
  13102. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-CondensedLight.ttf",
  13103. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensedBold.ttf",
  13104. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-Thin.ttf",
  13105. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensed.ttf",
  13106. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensed.ttf",
  13107. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-Thin.ttf",
  13108. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensedExtraBold.ttf",
  13109. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensedThin.ttf",
  13110. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-Light.ttf",
  13111. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-CondensedMedium.ttf",
  13112. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensedBlack.ttf",
  13113. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensedMedium.ttf",
  13114. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensedBold.ttf",
  13115. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensedLight.ttf",
  13116. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiBold.ttf",
  13117. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiBold.ttf",
  13118. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensedLight.ttf",
  13119. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-CondensedMedium.ttf",
  13120. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensedBlack.ttf",
  13121. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-CondensedExtraBold.ttf",
  13122. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-CondensedBlack.ttf",
  13123. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensedSemiBold.ttf",
  13124. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-CondensedSemiBold.ttf",
  13125. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensedBold.ttf",
  13126. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-Condensed.ttf",
  13127. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraLight.ttf",
  13128. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensedBold.ttf",
  13129. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraBold.ttf",
  13130. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-CondensedThin.ttf",
  13131. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensedExtraBold.ttf",
  13132. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-Light.ttf",
  13133. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensedSemiBold.ttf",
  13134. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-Black.ttf",
  13135. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensedLight.ttf",
  13136. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-Bold.ttf",
  13137. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-Condensed.ttf",
  13138. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-Regular.ttf",
  13139. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensedExtraLight.ttf",
  13140. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-CondensedThin.ttf",
  13141. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-Medium.ttf",
  13142. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensedThin.ttf",
  13143. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensedExtraLight.ttf",
  13144. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-CondensedExtraBold.ttf",
  13145. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-Black.ttf",
  13146. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-CondensedExtraLight.ttf",
  13147. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-Regular.ttf",
  13148. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensedMedium.ttf",
  13149. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensedBlack.ttf",
  13150. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-Bold.ttf",
  13151. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraCondensed.ttf",
  13152. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensed.ttf",
  13153. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-SemiCondensedSemiBold.ttf",
  13154. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-CondensedExtraLight.ttf",
  13155. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-ExtraLight.ttf",
  13156. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensedMedium.ttf",
  13157. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensedBlack.ttf",
  13158. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensedThin.ttf",
  13159. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-CondensedBlack.ttf",
  13160. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensedSemiBold.ttf",
  13161. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-SemiCondensedExtraLight.ttf",
  13162. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensedExtraBold.ttf",
  13163. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTeluguUI-CondensedBold.ttf",
  13164. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-ExtraCondensedThin.ttf",
  13165. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-CondensedLight.ttf",
  13166. "fonts/NotoSansTelugu/hinted/ttf/NotoSansTelugu-CondensedBold.ttf"
  13167. ],
  13168. "latest_release": {
  13169. "notes": "Noto Sans Telugu v2.005\n\nThis release:\n\n* Fixes a number of fontbakery fails\n* Encodes the new glyphs U+0C5D NAKAARA POLLU and U+0C3C NUKTA\n",
  13170. "published": "2023-09-28T10:09:27",
  13171. "url": "https://github.com/notofonts/telugu/releases/tag/NotoSansTelugu-v2.005",
  13172. "version": "v2.005"
  13173. }
  13174. },
  13175. "Noto Serif Telugu": {
  13176. "files": [
  13177. "fonts/NotoSerifTelugu/googlefonts/variable/NotoSerifTelugu[wght].ttf",
  13178. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-SemiBold.ttf",
  13179. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-Thin.ttf",
  13180. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-Medium.ttf",
  13181. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-Black.ttf",
  13182. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-ExtraLight.ttf",
  13183. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-Bold.ttf",
  13184. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-ExtraBold.ttf",
  13185. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-Regular.ttf",
  13186. "fonts/NotoSerifTelugu/googlefonts/ttf/NotoSerifTelugu-Light.ttf",
  13187. "fonts/NotoSerifTelugu/full/variable/NotoSerifTelugu[wght].ttf",
  13188. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-SemiBold.otf",
  13189. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-Black.otf",
  13190. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-Regular.otf",
  13191. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-Thin.otf",
  13192. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-Medium.otf",
  13193. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-ExtraBold.otf",
  13194. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-ExtraLight.otf",
  13195. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-Bold.otf",
  13196. "fonts/NotoSerifTelugu/full/otf/NotoSerifTelugu-Light.otf",
  13197. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-SemiBold.ttf",
  13198. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Thin.ttf",
  13199. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Medium.ttf",
  13200. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Black.ttf",
  13201. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-ExtraLight.ttf",
  13202. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Bold.ttf",
  13203. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-ExtraBold.ttf",
  13204. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Regular.ttf",
  13205. "fonts/NotoSerifTelugu/full/ttf/NotoSerifTelugu-Light.ttf",
  13206. "fonts/NotoSerifTelugu/full/slim-variable-ttf/NotoSerifTelugu[wght].ttf",
  13207. "fonts/NotoSerifTelugu/unhinted/variable/NotoSerifTelugu[wght].ttf",
  13208. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-SemiBold.otf",
  13209. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-Black.otf",
  13210. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-Regular.otf",
  13211. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-Thin.otf",
  13212. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-Medium.otf",
  13213. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-ExtraBold.otf",
  13214. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-ExtraLight.otf",
  13215. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-Bold.otf",
  13216. "fonts/NotoSerifTelugu/unhinted/otf/NotoSerifTelugu-Light.otf",
  13217. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-SemiBold.ttf",
  13218. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-Thin.ttf",
  13219. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-Medium.ttf",
  13220. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-Black.ttf",
  13221. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-ExtraLight.ttf",
  13222. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-Bold.ttf",
  13223. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-ExtraBold.ttf",
  13224. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-Regular.ttf",
  13225. "fonts/NotoSerifTelugu/unhinted/ttf/NotoSerifTelugu-Light.ttf",
  13226. "fonts/NotoSerifTelugu/unhinted/slim-variable-ttf/NotoSerifTelugu[wght].ttf",
  13227. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-SemiBold.ttf",
  13228. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-Thin.ttf",
  13229. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-Medium.ttf",
  13230. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-Black.ttf",
  13231. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-ExtraLight.ttf",
  13232. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-Bold.ttf",
  13233. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-ExtraBold.ttf",
  13234. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-Regular.ttf",
  13235. "fonts/NotoSerifTelugu/hinted/ttf/NotoSerifTelugu-Light.ttf"
  13236. ],
  13237. "latest_release": {
  13238. "notes": "Noto Serif Telugu v2.005\n\nThis release:\n\n* Fixes a number of fontbakery fails\n* Encodes the new glyphs U+0C5D NAKAARA POLLU and U+0C3C NUKTA\n",
  13239. "published": "2023-09-28T10:22:27",
  13240. "url": "https://github.com/notofonts/telugu/releases/tag/NotoSerifTelugu-v2.005",
  13241. "version": "v2.005"
  13242. }
  13243. }
  13244. },
  13245. "known_releases": [
  13246. "NotoSerifTelugu-v2.003",
  13247. "NotoSansTelugu-v2.003",
  13248. "NotoSerifTelugu-v2.004",
  13249. "NotoSansTelugu-v2.004",
  13250. "NotoSansTelugu-v2.005",
  13251. "NotoSerifTelugu-v2.005"
  13252. ]
  13253. },
  13254. "test": {
  13255. "families": {
  13256. "Noto Sans Test": {
  13257. "files": [
  13258. "fonts/NotoSansTest/full/otf/NotoSansTest-Regular.otf",
  13259. "fonts/NotoSansTest/full/ttf/NotoSansTest-Regular.ttf",
  13260. "fonts/NotoSansTest/googlefonts/ttf/NotoSansTest-Regular.ttf",
  13261. "fonts/NotoSansTest/unhinted/otf/NotoSansTest-Regular.otf",
  13262. "fonts/NotoSansTest/unhinted/ttf/NotoSansTest-Regular.ttf",
  13263. "fonts/NotoSansTest/hinted/ttf/NotoSansTest-Regular.ttf"
  13264. ],
  13265. "latest_release": {
  13266. "notes": "Noto Sans Test v1.002\n\nThere are no changes in this release.\n",
  13267. "published": "2024-04-15T10:03:54+00:00",
  13268. "url": "https://github.com/notofonts/test/releases/tag/NotoSansTest-v1.002",
  13269. "version": "v1.002"
  13270. }
  13271. },
  13272. "Noto Serif Test": {
  13273. "files": [
  13274. "fonts/NotoSerifTest/unhinted/slim-variable-ttf/NotoSerifTest[wght].ttf",
  13275. "fonts/NotoSerifTest/unhinted/ttf/NotoSerifTest-Regular.ttf",
  13276. "fonts/NotoSerifTest/unhinted/ttf/NotoSerifTest-Bold.ttf",
  13277. "fonts/NotoSerifTest/unhinted/variable-ttf/NotoSerifTest[wght].ttf",
  13278. "fonts/NotoSerifTest/unhinted/otf/NotoSerifTest-Regular.otf",
  13279. "fonts/NotoSerifTest/unhinted/otf/NotoSerifTest-Bold.otf",
  13280. "fonts/NotoSerifTest/hinted/ttf/NotoSerifTest-Regular.ttf",
  13281. "fonts/NotoSerifTest/hinted/ttf/NotoSerifTest-Bold.ttf",
  13282. "fonts/NotoSerifTest/googlefonts/slim-variable-ttf/NotoSerifTest[wght].ttf",
  13283. "fonts/NotoSerifTest/googlefonts/ttf/NotoSerifTest-Regular.ttf",
  13284. "fonts/NotoSerifTest/googlefonts/ttf/NotoSerifTest-Bold.ttf",
  13285. "fonts/NotoSerifTest/googlefonts/variable-ttf/NotoSerifTest[wght].ttf",
  13286. "fonts/NotoSerifTest/full/slim-variable-ttf/NotoSerifTest[wght].ttf",
  13287. "fonts/NotoSerifTest/full/ttf/NotoSerifTest-Regular.ttf",
  13288. "fonts/NotoSerifTest/full/ttf/NotoSerifTest-Bold.ttf",
  13289. "fonts/NotoSerifTest/full/variable-ttf/NotoSerifTest[wght].ttf",
  13290. "fonts/NotoSerifTest/full/otf/NotoSerifTest-Regular.otf",
  13291. "fonts/NotoSerifTest/full/otf/NotoSerifTest-Bold.otf"
  13292. ],
  13293. "latest_release": {
  13294. "notes": "Ported from noto-source",
  13295. "published": "2022-06-20T15:09:06",
  13296. "url": "https://github.com/notofonts/test/releases/tag/NotoSerifTest-v1.000",
  13297. "version": "v1.000"
  13298. }
  13299. }
  13300. },
  13301. "known_releases": [
  13302. "NotoSerifTest-v1.000",
  13303. "NotoSansTest-v1.000",
  13304. "NotoSansTest-v1.002"
  13305. ]
  13306. },
  13307. "thaana": {
  13308. "families": {
  13309. "Noto Sans Thaana": {
  13310. "files": [
  13311. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-Regular.ttf",
  13312. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-SemiBold.ttf",
  13313. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-Bold.ttf",
  13314. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-Thin.ttf",
  13315. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-Black.ttf",
  13316. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-Light.ttf",
  13317. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-ExtraLight.ttf",
  13318. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-ExtraBold.ttf",
  13319. "fonts/NotoSansThaana/unhinted/ttf/NotoSansThaana-Medium.ttf",
  13320. "fonts/NotoSansThaana/unhinted/variable/NotoSansThaana[wght].ttf",
  13321. "fonts/NotoSansThaana/unhinted/slim-variable-ttf/NotoSansThaana[wght].ttf",
  13322. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-Medium.otf",
  13323. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-ExtraLight.otf",
  13324. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-Light.otf",
  13325. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-ExtraBold.otf",
  13326. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-Black.otf",
  13327. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-Bold.otf",
  13328. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-SemiBold.otf",
  13329. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-Regular.otf",
  13330. "fonts/NotoSansThaana/unhinted/otf/NotoSansThaana-Thin.otf",
  13331. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-Regular.ttf",
  13332. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-SemiBold.ttf",
  13333. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-Bold.ttf",
  13334. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-Thin.ttf",
  13335. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-Black.ttf",
  13336. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-Light.ttf",
  13337. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-ExtraLight.ttf",
  13338. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-ExtraBold.ttf",
  13339. "fonts/NotoSansThaana/full/ttf/NotoSansThaana-Medium.ttf",
  13340. "fonts/NotoSansThaana/full/variable/NotoSansThaana[wght].ttf",
  13341. "fonts/NotoSansThaana/full/slim-variable-ttf/NotoSansThaana[wght].ttf",
  13342. "fonts/NotoSansThaana/full/otf/NotoSansThaana-Medium.otf",
  13343. "fonts/NotoSansThaana/full/otf/NotoSansThaana-ExtraLight.otf",
  13344. "fonts/NotoSansThaana/full/otf/NotoSansThaana-Light.otf",
  13345. "fonts/NotoSansThaana/full/otf/NotoSansThaana-ExtraBold.otf",
  13346. "fonts/NotoSansThaana/full/otf/NotoSansThaana-Black.otf",
  13347. "fonts/NotoSansThaana/full/otf/NotoSansThaana-Bold.otf",
  13348. "fonts/NotoSansThaana/full/otf/NotoSansThaana-SemiBold.otf",
  13349. "fonts/NotoSansThaana/full/otf/NotoSansThaana-Regular.otf",
  13350. "fonts/NotoSansThaana/full/otf/NotoSansThaana-Thin.otf",
  13351. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-Regular.ttf",
  13352. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-SemiBold.ttf",
  13353. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-Bold.ttf",
  13354. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-Thin.ttf",
  13355. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-Black.ttf",
  13356. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-Light.ttf",
  13357. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-ExtraLight.ttf",
  13358. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-ExtraBold.ttf",
  13359. "fonts/NotoSansThaana/hinted/ttf/NotoSansThaana-Medium.ttf",
  13360. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-Regular.ttf",
  13361. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-SemiBold.ttf",
  13362. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-Bold.ttf",
  13363. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-Thin.ttf",
  13364. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-Black.ttf",
  13365. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-Light.ttf",
  13366. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-ExtraLight.ttf",
  13367. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-ExtraBold.ttf",
  13368. "fonts/NotoSansThaana/googlefonts/ttf/NotoSansThaana-Medium.ttf",
  13369. "fonts/NotoSansThaana/googlefonts/variable/NotoSansThaana[wght].ttf"
  13370. ],
  13371. "latest_release": {
  13372. "notes": "Noto Sans Thanna v3.001\n\nThis release:\n\n* Fixes an interpolation issue in the javiyani glyph\n* Re-encodes the ALLAH glyphs\n* Uses Latin comma and semicolon in full builds\n",
  13373. "published": "2023-09-27T13:34:27",
  13374. "url": "https://github.com/notofonts/thaana/releases/tag/NotoSansThaana-v3.001",
  13375. "version": "v3.001"
  13376. }
  13377. }
  13378. },
  13379. "known_releases": [
  13380. "NotoSansThaana-v2.001",
  13381. "NotoSansThaana-v3.000",
  13382. "NotoSansThaana-v3.001"
  13383. ]
  13384. },
  13385. "thai": {
  13386. "families": {
  13387. "Noto Sans Thai": {
  13388. "files": [
  13389. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-CondensedSemiBold.ttf",
  13390. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-CondensedExtraBold.ttf",
  13391. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensed.ttf",
  13392. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensedMedium.ttf",
  13393. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensedMedium.ttf",
  13394. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensedExtraLight.ttf",
  13395. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensedSemiBold.ttf",
  13396. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-Thin.ttf",
  13397. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraBold.ttf",
  13398. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensedExtraBold.ttf",
  13399. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensedBold.ttf",
  13400. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-Bold.ttf",
  13401. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-CondensedBlack.ttf",
  13402. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-CondensedThin.ttf",
  13403. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensedSemiBold.ttf",
  13404. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-Black.ttf",
  13405. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-Condensed.ttf",
  13406. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-CondensedMedium.ttf",
  13407. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensedLight.ttf",
  13408. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-Light.ttf",
  13409. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensedThin.ttf",
  13410. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-CondensedExtraLight.ttf",
  13411. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiBold.ttf",
  13412. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-CondensedLight.ttf",
  13413. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensedBold.ttf",
  13414. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-Regular.ttf",
  13415. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensedExtraLight.ttf",
  13416. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensedExtraBold.ttf",
  13417. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensedThin.ttf",
  13418. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensedLight.ttf",
  13419. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-CondensedBold.ttf",
  13420. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraCondensedBlack.ttf",
  13421. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensedBlack.ttf",
  13422. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-ExtraLight.ttf",
  13423. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-Medium.ttf",
  13424. "fonts/NotoSansThai/unhinted/ttf/NotoSansThai-SemiCondensed.ttf",
  13425. "fonts/NotoSansThai/unhinted/variable/NotoSansThai[wdth,wght].ttf",
  13426. "fonts/NotoSansThai/unhinted/slim-variable-ttf/NotoSansThai[wght].ttf",
  13427. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensedThin.otf",
  13428. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-CondensedThin.otf",
  13429. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-Bold.otf",
  13430. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensedExtraBold.otf",
  13431. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensedMedium.otf",
  13432. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensedLight.otf",
  13433. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensedBlack.otf",
  13434. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensedExtraLight.otf",
  13435. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensedLight.otf",
  13436. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensed.otf",
  13437. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensedBold.otf",
  13438. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensed.otf",
  13439. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensedBold.otf",
  13440. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-CondensedSemiBold.otf",
  13441. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraLight.otf",
  13442. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-Light.otf",
  13443. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensedBlack.otf",
  13444. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-Thin.otf",
  13445. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-CondensedExtraBold.otf",
  13446. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-CondensedBlack.otf",
  13447. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensedSemiBold.otf",
  13448. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraBold.otf",
  13449. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-CondensedBold.otf",
  13450. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensedSemiBold.otf",
  13451. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-Regular.otf",
  13452. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiCondensedExtraBold.otf",
  13453. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-Condensed.otf",
  13454. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-CondensedExtraLight.otf",
  13455. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensedThin.otf",
  13456. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensedExtraLight.otf",
  13457. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-ExtraCondensedMedium.otf",
  13458. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-CondensedLight.otf",
  13459. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-CondensedMedium.otf",
  13460. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-Medium.otf",
  13461. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-Black.otf",
  13462. "fonts/NotoSansThai/unhinted/otf/NotoSansThai-SemiBold.otf",
  13463. "fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedSemiBold.ttf",
  13464. "fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedExtraBold.ttf",
  13465. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensed.ttf",
  13466. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedMedium.ttf",
  13467. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedMedium.ttf",
  13468. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedExtraLight.ttf",
  13469. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedSemiBold.ttf",
  13470. "fonts/NotoSansThai/full/ttf/NotoSansThai-Thin.ttf",
  13471. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraBold.ttf",
  13472. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedExtraBold.ttf",
  13473. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedBold.ttf",
  13474. "fonts/NotoSansThai/full/ttf/NotoSansThai-Bold.ttf",
  13475. "fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedBlack.ttf",
  13476. "fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedThin.ttf",
  13477. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedSemiBold.ttf",
  13478. "fonts/NotoSansThai/full/ttf/NotoSansThai-Black.ttf",
  13479. "fonts/NotoSansThai/full/ttf/NotoSansThai-Condensed.ttf",
  13480. "fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedMedium.ttf",
  13481. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedLight.ttf",
  13482. "fonts/NotoSansThai/full/ttf/NotoSansThai-Light.ttf",
  13483. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedThin.ttf",
  13484. "fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedExtraLight.ttf",
  13485. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiBold.ttf",
  13486. "fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedLight.ttf",
  13487. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedBold.ttf",
  13488. "fonts/NotoSansThai/full/ttf/NotoSansThai-Regular.ttf",
  13489. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedExtraLight.ttf",
  13490. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedExtraBold.ttf",
  13491. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedThin.ttf",
  13492. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedLight.ttf",
  13493. "fonts/NotoSansThai/full/ttf/NotoSansThai-CondensedBold.ttf",
  13494. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraCondensedBlack.ttf",
  13495. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensedBlack.ttf",
  13496. "fonts/NotoSansThai/full/ttf/NotoSansThai-ExtraLight.ttf",
  13497. "fonts/NotoSansThai/full/ttf/NotoSansThai-Medium.ttf",
  13498. "fonts/NotoSansThai/full/ttf/NotoSansThai-SemiCondensed.ttf",
  13499. "fonts/NotoSansThai/full/variable/NotoSansThai[wdth,wght].ttf",
  13500. "fonts/NotoSansThai/full/slim-variable-ttf/NotoSansThai[wght].ttf",
  13501. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensedThin.otf",
  13502. "fonts/NotoSansThai/full/otf/NotoSansThai-CondensedThin.otf",
  13503. "fonts/NotoSansThai/full/otf/NotoSansThai-Bold.otf",
  13504. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensedExtraBold.otf",
  13505. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensedMedium.otf",
  13506. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensedLight.otf",
  13507. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensedBlack.otf",
  13508. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensedExtraLight.otf",
  13509. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensedLight.otf",
  13510. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensed.otf",
  13511. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensedBold.otf",
  13512. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensed.otf",
  13513. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensedBold.otf",
  13514. "fonts/NotoSansThai/full/otf/NotoSansThai-CondensedSemiBold.otf",
  13515. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraLight.otf",
  13516. "fonts/NotoSansThai/full/otf/NotoSansThai-Light.otf",
  13517. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensedBlack.otf",
  13518. "fonts/NotoSansThai/full/otf/NotoSansThai-Thin.otf",
  13519. "fonts/NotoSansThai/full/otf/NotoSansThai-CondensedExtraBold.otf",
  13520. "fonts/NotoSansThai/full/otf/NotoSansThai-CondensedBlack.otf",
  13521. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensedSemiBold.otf",
  13522. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraBold.otf",
  13523. "fonts/NotoSansThai/full/otf/NotoSansThai-CondensedBold.otf",
  13524. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensedSemiBold.otf",
  13525. "fonts/NotoSansThai/full/otf/NotoSansThai-Regular.otf",
  13526. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiCondensedExtraBold.otf",
  13527. "fonts/NotoSansThai/full/otf/NotoSansThai-Condensed.otf",
  13528. "fonts/NotoSansThai/full/otf/NotoSansThai-CondensedExtraLight.otf",
  13529. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensedThin.otf",
  13530. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensedExtraLight.otf",
  13531. "fonts/NotoSansThai/full/otf/NotoSansThai-ExtraCondensedMedium.otf",
  13532. "fonts/NotoSansThai/full/otf/NotoSansThai-CondensedLight.otf",
  13533. "fonts/NotoSansThai/full/otf/NotoSansThai-CondensedMedium.otf",
  13534. "fonts/NotoSansThai/full/otf/NotoSansThai-Medium.otf",
  13535. "fonts/NotoSansThai/full/otf/NotoSansThai-Black.otf",
  13536. "fonts/NotoSansThai/full/otf/NotoSansThai-SemiBold.otf",
  13537. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-CondensedSemiBold.ttf",
  13538. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-CondensedExtraBold.ttf",
  13539. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensed.ttf",
  13540. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensedMedium.ttf",
  13541. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensedMedium.ttf",
  13542. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensedExtraLight.ttf",
  13543. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensedSemiBold.ttf",
  13544. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-Thin.ttf",
  13545. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraBold.ttf",
  13546. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensedExtraBold.ttf",
  13547. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensedBold.ttf",
  13548. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-Bold.ttf",
  13549. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-CondensedBlack.ttf",
  13550. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-CondensedThin.ttf",
  13551. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensedSemiBold.ttf",
  13552. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-Black.ttf",
  13553. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-Condensed.ttf",
  13554. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-CondensedMedium.ttf",
  13555. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensedLight.ttf",
  13556. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-Light.ttf",
  13557. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensedThin.ttf",
  13558. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-CondensedExtraLight.ttf",
  13559. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiBold.ttf",
  13560. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-CondensedLight.ttf",
  13561. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensedBold.ttf",
  13562. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-Regular.ttf",
  13563. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensedExtraLight.ttf",
  13564. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensedExtraBold.ttf",
  13565. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensedThin.ttf",
  13566. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensedLight.ttf",
  13567. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-CondensedBold.ttf",
  13568. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraCondensedBlack.ttf",
  13569. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensedBlack.ttf",
  13570. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-ExtraLight.ttf",
  13571. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-Medium.ttf",
  13572. "fonts/NotoSansThai/hinted/ttf/NotoSansThai-SemiCondensed.ttf",
  13573. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-Thin.ttf",
  13574. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-ExtraBold.ttf",
  13575. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-Bold.ttf",
  13576. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-Black.ttf",
  13577. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-Light.ttf",
  13578. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-SemiBold.ttf",
  13579. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-Regular.ttf",
  13580. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-ExtraLight.ttf",
  13581. "fonts/NotoSansThai/googlefonts/ttf/NotoSansThai-Medium.ttf",
  13582. "fonts/NotoSansThai/googlefonts/variable/NotoSansThai[wdth,wght].ttf"
  13583. ],
  13584. "latest_release": {
  13585. "notes": "Noto Sans Thai v2.002\n\nThis release:\n\n* Fixes the reordering of nikahit after an above mark (#3)\n* Uses the alternate form of loChula when there are both above and below marks (#7)\n* Improves the display of COMBINING MACRON BELOW with various bases (#6)\n* Correctly orders COMBINING MACRON BELOW with another mark below (#5)\n* Adds a stylistic set for tailless tho and yo (#9)\n",
  13586. "published": "2023-09-26T13:50:18",
  13587. "url": "https://github.com/notofonts/thai/releases/tag/NotoSansThai-v2.002",
  13588. "version": "v2.002"
  13589. }
  13590. },
  13591. "Noto Sans Thai Looped": {
  13592. "files": [
  13593. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensedBlack.ttf",
  13594. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-CondensedExtraBold.ttf",
  13595. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-CondensedBlack.ttf",
  13596. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-Black.ttf",
  13597. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraLight.ttf",
  13598. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-Thin.ttf",
  13599. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensed.ttf",
  13600. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-Condensed.ttf",
  13601. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensedThin.ttf",
  13602. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensedBold.ttf",
  13603. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensedLight.ttf",
  13604. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraBold.ttf",
  13605. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensedLight.ttf",
  13606. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiBold.ttf",
  13607. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-CondensedBold.ttf",
  13608. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensedSemiBold.ttf",
  13609. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-CondensedExtraLight.ttf",
  13610. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensedBlack.ttf",
  13611. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensedExtraLight.ttf",
  13612. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-CondensedThin.ttf",
  13613. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-CondensedLight.ttf",
  13614. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensedSemiBold.ttf",
  13615. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-CondensedMedium.ttf",
  13616. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensedExtraBold.ttf",
  13617. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensed.ttf",
  13618. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensedExtraBold.ttf",
  13619. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensedExtraLight.ttf",
  13620. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-Regular.ttf",
  13621. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-Bold.ttf",
  13622. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensedBold.ttf",
  13623. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-Medium.ttf",
  13624. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-SemiCondensedMedium.ttf",
  13625. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-Light.ttf",
  13626. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensedThin.ttf",
  13627. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-CondensedSemiBold.ttf",
  13628. "fonts/NotoSansThaiLooped/unhinted/ttf/NotoSansThaiLooped-ExtraCondensedMedium.ttf",
  13629. "fonts/NotoSansThaiLooped/unhinted/slim-variable-ttf/NotoSansThaiLooped[wght].ttf",
  13630. "fonts/NotoSansThaiLooped/unhinted/variable-ttf/NotoSansThaiLooped[wdth,wght].ttf",
  13631. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensedMedium.otf",
  13632. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-CondensedBlack.otf",
  13633. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-Bold.otf",
  13634. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensedExtraLight.otf",
  13635. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-Condensed.otf",
  13636. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-CondensedSemiBold.otf",
  13637. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-Light.otf",
  13638. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensedExtraLight.otf",
  13639. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-CondensedBold.otf",
  13640. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-Regular.otf",
  13641. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensedBlack.otf",
  13642. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraBold.otf",
  13643. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-CondensedExtraBold.otf",
  13644. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraLight.otf",
  13645. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensedMedium.otf",
  13646. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensedBold.otf",
  13647. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiBold.otf",
  13648. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensed.otf",
  13649. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-Medium.otf",
  13650. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-Thin.otf",
  13651. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensedSemiBold.otf",
  13652. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-CondensedExtraLight.otf",
  13653. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensedThin.otf",
  13654. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-Black.otf",
  13655. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensed.otf",
  13656. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensedLight.otf",
  13657. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensedExtraBold.otf",
  13658. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-CondensedMedium.otf",
  13659. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-CondensedLight.otf",
  13660. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensedBlack.otf",
  13661. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensedLight.otf",
  13662. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-SemiCondensedSemiBold.otf",
  13663. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-CondensedThin.otf",
  13664. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensedExtraBold.otf",
  13665. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensedBold.otf",
  13666. "fonts/NotoSansThaiLooped/unhinted/otf/NotoSansThaiLooped-ExtraCondensedThin.otf",
  13667. "fonts/NotoSansThaiLooped/googlefonts/variable-ttf/NotoSansThaiLooped[wdth,wght].ttf",
  13668. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensedBlack.ttf",
  13669. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-CondensedExtraBold.ttf",
  13670. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-CondensedBlack.ttf",
  13671. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-Black.ttf",
  13672. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraLight.ttf",
  13673. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-Thin.ttf",
  13674. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensed.ttf",
  13675. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-Condensed.ttf",
  13676. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensedThin.ttf",
  13677. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensedBold.ttf",
  13678. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensedLight.ttf",
  13679. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraBold.ttf",
  13680. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensedLight.ttf",
  13681. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiBold.ttf",
  13682. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-CondensedBold.ttf",
  13683. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensedSemiBold.ttf",
  13684. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-CondensedExtraLight.ttf",
  13685. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensedBlack.ttf",
  13686. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensedExtraLight.ttf",
  13687. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-CondensedThin.ttf",
  13688. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-CondensedLight.ttf",
  13689. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensedSemiBold.ttf",
  13690. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-CondensedMedium.ttf",
  13691. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensedExtraBold.ttf",
  13692. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensed.ttf",
  13693. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensedExtraBold.ttf",
  13694. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensedExtraLight.ttf",
  13695. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-Regular.ttf",
  13696. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-Bold.ttf",
  13697. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensedBold.ttf",
  13698. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-Medium.ttf",
  13699. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-SemiCondensedMedium.ttf",
  13700. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-Light.ttf",
  13701. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensedThin.ttf",
  13702. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-CondensedSemiBold.ttf",
  13703. "fonts/NotoSansThaiLooped/full/ttf/NotoSansThaiLooped-ExtraCondensedMedium.ttf",
  13704. "fonts/NotoSansThaiLooped/full/slim-variable-ttf/NotoSansThaiLooped[wght].ttf",
  13705. "fonts/NotoSansThaiLooped/full/variable-ttf/NotoSansThaiLooped[wdth,wght].ttf",
  13706. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensedMedium.otf",
  13707. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-CondensedBlack.otf",
  13708. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-Bold.otf",
  13709. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensedExtraLight.otf",
  13710. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-Condensed.otf",
  13711. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-CondensedSemiBold.otf",
  13712. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-Light.otf",
  13713. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensedExtraLight.otf",
  13714. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-CondensedBold.otf",
  13715. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-Regular.otf",
  13716. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensedBlack.otf",
  13717. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraBold.otf",
  13718. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-CondensedExtraBold.otf",
  13719. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraLight.otf",
  13720. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensedMedium.otf",
  13721. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensedBold.otf",
  13722. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiBold.otf",
  13723. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensed.otf",
  13724. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-Medium.otf",
  13725. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-Thin.otf",
  13726. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensedSemiBold.otf",
  13727. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-CondensedExtraLight.otf",
  13728. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensedThin.otf",
  13729. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-Black.otf",
  13730. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensed.otf",
  13731. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensedLight.otf",
  13732. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensedExtraBold.otf",
  13733. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-CondensedMedium.otf",
  13734. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-CondensedLight.otf",
  13735. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensedBlack.otf",
  13736. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensedLight.otf",
  13737. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-SemiCondensedSemiBold.otf",
  13738. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-CondensedThin.otf",
  13739. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensedExtraBold.otf",
  13740. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensedBold.otf",
  13741. "fonts/NotoSansThaiLooped/full/otf/NotoSansThaiLooped-ExtraCondensedThin.otf",
  13742. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensedBlack.ttf",
  13743. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-CondensedExtraBold.ttf",
  13744. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-CondensedBlack.ttf",
  13745. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-Black.ttf",
  13746. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraLight.ttf",
  13747. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-Thin.ttf",
  13748. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensed.ttf",
  13749. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-Condensed.ttf",
  13750. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensedThin.ttf",
  13751. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensedBold.ttf",
  13752. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensedLight.ttf",
  13753. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraBold.ttf",
  13754. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensedLight.ttf",
  13755. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiBold.ttf",
  13756. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-CondensedBold.ttf",
  13757. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensedSemiBold.ttf",
  13758. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-CondensedExtraLight.ttf",
  13759. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensedBlack.ttf",
  13760. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensedExtraLight.ttf",
  13761. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-CondensedThin.ttf",
  13762. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-CondensedLight.ttf",
  13763. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensedSemiBold.ttf",
  13764. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-CondensedMedium.ttf",
  13765. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensedExtraBold.ttf",
  13766. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensed.ttf",
  13767. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensedExtraBold.ttf",
  13768. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensedExtraLight.ttf",
  13769. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-Regular.ttf",
  13770. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-Bold.ttf",
  13771. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensedBold.ttf",
  13772. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-Medium.ttf",
  13773. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-SemiCondensedMedium.ttf",
  13774. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-Light.ttf",
  13775. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensedThin.ttf",
  13776. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-CondensedSemiBold.ttf",
  13777. "fonts/NotoSansThaiLooped/hinted/ttf/NotoSansThaiLooped-ExtraCondensedMedium.ttf"
  13778. ],
  13779. "latest_release": {
  13780. "notes": "Noto Sans Thai Looped v2.000\n\nThis is an updated design by Cadson Demak.\n",
  13781. "published": "2025-02-19T11:25:14+00:00",
  13782. "url": "https://github.com/notofonts/thai/releases/tag/NotoSansThaiLooped-v2.000",
  13783. "version": "v2.000"
  13784. }
  13785. },
  13786. "Noto Serif Thai": {
  13787. "files": [
  13788. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensedBlack.ttf",
  13789. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-Black.ttf",
  13790. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-CondensedBlack.ttf",
  13791. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensed.ttf",
  13792. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensedExtraBold.ttf",
  13793. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensedExtraLight.ttf",
  13794. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensedBlack.ttf",
  13795. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-Condensed.ttf",
  13796. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-CondensedThin.ttf",
  13797. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraLight.ttf",
  13798. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiBold.ttf",
  13799. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensedSemiBold.ttf",
  13800. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensedLight.ttf",
  13801. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-Thin.ttf",
  13802. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-CondensedExtraBold.ttf",
  13803. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-Regular.ttf",
  13804. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensed.ttf",
  13805. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-Medium.ttf",
  13806. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-Light.ttf",
  13807. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-CondensedBold.ttf",
  13808. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensedThin.ttf",
  13809. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensedMedium.ttf",
  13810. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraBold.ttf",
  13811. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensedExtraLight.ttf",
  13812. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensedThin.ttf",
  13813. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensedSemiBold.ttf",
  13814. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensedLight.ttf",
  13815. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensedExtraBold.ttf",
  13816. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensedMedium.ttf",
  13817. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-CondensedExtraLight.ttf",
  13818. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-SemiCondensedBold.ttf",
  13819. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-Bold.ttf",
  13820. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-ExtraCondensedBold.ttf",
  13821. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-CondensedSemiBold.ttf",
  13822. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-CondensedLight.ttf",
  13823. "fonts/NotoSerifThai/unhinted/ttf/NotoSerifThai-CondensedMedium.ttf",
  13824. "fonts/NotoSerifThai/unhinted/variable/NotoSerifThai[wdth,wght].ttf",
  13825. "fonts/NotoSerifThai/unhinted/slim-variable-ttf/NotoSerifThai[wght].ttf",
  13826. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-CondensedBold.otf",
  13827. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensed.otf",
  13828. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensedSemiBold.otf",
  13829. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-CondensedMedium.otf",
  13830. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensedMedium.otf",
  13831. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-Medium.otf",
  13832. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-CondensedExtraLight.otf",
  13833. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensedExtraBold.otf",
  13834. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraLight.otf",
  13835. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensedLight.otf",
  13836. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-Thin.otf",
  13837. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensedExtraLight.otf",
  13838. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensedExtraLight.otf",
  13839. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensedBlack.otf",
  13840. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-CondensedExtraBold.otf",
  13841. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensedBold.otf",
  13842. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-Black.otf",
  13843. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensedSemiBold.otf",
  13844. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensedThin.otf",
  13845. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensedMedium.otf",
  13846. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-Light.otf",
  13847. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraBold.otf",
  13848. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-Bold.otf",
  13849. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiBold.otf",
  13850. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensedExtraBold.otf",
  13851. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensedLight.otf",
  13852. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-ExtraCondensed.otf",
  13853. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensedThin.otf",
  13854. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensedBold.otf",
  13855. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-CondensedThin.otf",
  13856. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-Regular.otf",
  13857. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-SemiCondensedBlack.otf",
  13858. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-CondensedBlack.otf",
  13859. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-CondensedSemiBold.otf",
  13860. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-Condensed.otf",
  13861. "fonts/NotoSerifThai/unhinted/otf/NotoSerifThai-CondensedLight.otf",
  13862. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedBlack.ttf",
  13863. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-Black.ttf",
  13864. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedBlack.ttf",
  13865. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensed.ttf",
  13866. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedExtraBold.ttf",
  13867. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedExtraLight.ttf",
  13868. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedBlack.ttf",
  13869. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-Condensed.ttf",
  13870. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedThin.ttf",
  13871. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraLight.ttf",
  13872. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiBold.ttf",
  13873. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedSemiBold.ttf",
  13874. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedLight.ttf",
  13875. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-Thin.ttf",
  13876. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedExtraBold.ttf",
  13877. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-Regular.ttf",
  13878. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensed.ttf",
  13879. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-Medium.ttf",
  13880. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-Light.ttf",
  13881. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedBold.ttf",
  13882. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedThin.ttf",
  13883. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedMedium.ttf",
  13884. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraBold.ttf",
  13885. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedExtraLight.ttf",
  13886. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedThin.ttf",
  13887. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedSemiBold.ttf",
  13888. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedLight.ttf",
  13889. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedExtraBold.ttf",
  13890. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedMedium.ttf",
  13891. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedExtraLight.ttf",
  13892. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-SemiCondensedBold.ttf",
  13893. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-Bold.ttf",
  13894. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-ExtraCondensedBold.ttf",
  13895. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedSemiBold.ttf",
  13896. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedLight.ttf",
  13897. "fonts/NotoSerifThai/full/ttf/NotoSerifThai-CondensedMedium.ttf",
  13898. "fonts/NotoSerifThai/full/variable/NotoSerifThai[wdth,wght].ttf",
  13899. "fonts/NotoSerifThai/full/slim-variable-ttf/NotoSerifThai[wght].ttf",
  13900. "fonts/NotoSerifThai/full/otf/NotoSerifThai-CondensedBold.otf",
  13901. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensed.otf",
  13902. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensedSemiBold.otf",
  13903. "fonts/NotoSerifThai/full/otf/NotoSerifThai-CondensedMedium.otf",
  13904. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensedMedium.otf",
  13905. "fonts/NotoSerifThai/full/otf/NotoSerifThai-Medium.otf",
  13906. "fonts/NotoSerifThai/full/otf/NotoSerifThai-CondensedExtraLight.otf",
  13907. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensedExtraBold.otf",
  13908. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraLight.otf",
  13909. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensedLight.otf",
  13910. "fonts/NotoSerifThai/full/otf/NotoSerifThai-Thin.otf",
  13911. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensedExtraLight.otf",
  13912. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensedExtraLight.otf",
  13913. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensedBlack.otf",
  13914. "fonts/NotoSerifThai/full/otf/NotoSerifThai-CondensedExtraBold.otf",
  13915. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensedBold.otf",
  13916. "fonts/NotoSerifThai/full/otf/NotoSerifThai-Black.otf",
  13917. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensedSemiBold.otf",
  13918. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensedThin.otf",
  13919. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensedMedium.otf",
  13920. "fonts/NotoSerifThai/full/otf/NotoSerifThai-Light.otf",
  13921. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraBold.otf",
  13922. "fonts/NotoSerifThai/full/otf/NotoSerifThai-Bold.otf",
  13923. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiBold.otf",
  13924. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensedExtraBold.otf",
  13925. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensedLight.otf",
  13926. "fonts/NotoSerifThai/full/otf/NotoSerifThai-ExtraCondensed.otf",
  13927. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensedThin.otf",
  13928. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensedBold.otf",
  13929. "fonts/NotoSerifThai/full/otf/NotoSerifThai-CondensedThin.otf",
  13930. "fonts/NotoSerifThai/full/otf/NotoSerifThai-Regular.otf",
  13931. "fonts/NotoSerifThai/full/otf/NotoSerifThai-SemiCondensedBlack.otf",
  13932. "fonts/NotoSerifThai/full/otf/NotoSerifThai-CondensedBlack.otf",
  13933. "fonts/NotoSerifThai/full/otf/NotoSerifThai-CondensedSemiBold.otf",
  13934. "fonts/NotoSerifThai/full/otf/NotoSerifThai-Condensed.otf",
  13935. "fonts/NotoSerifThai/full/otf/NotoSerifThai-CondensedLight.otf",
  13936. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensedBlack.ttf",
  13937. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-Black.ttf",
  13938. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-CondensedBlack.ttf",
  13939. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensed.ttf",
  13940. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensedExtraBold.ttf",
  13941. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensedExtraLight.ttf",
  13942. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensedBlack.ttf",
  13943. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-Condensed.ttf",
  13944. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-CondensedThin.ttf",
  13945. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraLight.ttf",
  13946. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiBold.ttf",
  13947. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensedSemiBold.ttf",
  13948. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensedLight.ttf",
  13949. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-Thin.ttf",
  13950. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-CondensedExtraBold.ttf",
  13951. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-Regular.ttf",
  13952. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensed.ttf",
  13953. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-Medium.ttf",
  13954. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-Light.ttf",
  13955. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-CondensedBold.ttf",
  13956. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensedThin.ttf",
  13957. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensedMedium.ttf",
  13958. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraBold.ttf",
  13959. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensedExtraLight.ttf",
  13960. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensedThin.ttf",
  13961. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensedSemiBold.ttf",
  13962. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensedLight.ttf",
  13963. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensedExtraBold.ttf",
  13964. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensedMedium.ttf",
  13965. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-CondensedExtraLight.ttf",
  13966. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-SemiCondensedBold.ttf",
  13967. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-Bold.ttf",
  13968. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-ExtraCondensedBold.ttf",
  13969. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-CondensedSemiBold.ttf",
  13970. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-CondensedLight.ttf",
  13971. "fonts/NotoSerifThai/hinted/ttf/NotoSerifThai-CondensedMedium.ttf",
  13972. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-Black.ttf",
  13973. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-ExtraLight.ttf",
  13974. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-SemiBold.ttf",
  13975. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-Thin.ttf",
  13976. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-Regular.ttf",
  13977. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-Medium.ttf",
  13978. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-Light.ttf",
  13979. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-ExtraBold.ttf",
  13980. "fonts/NotoSerifThai/googlefonts/ttf/NotoSerifThai-Bold.ttf",
  13981. "fonts/NotoSerifThai/googlefonts/variable/NotoSerifThai[wdth,wght].ttf"
  13982. ],
  13983. "latest_release": {
  13984. "notes": "Noto Serif Thai v2.002\n\nThis release:\n\n* Fixes the reordering of nikahit after an above mark (#3)\n* Uses the alternate form of loChula when there are both above and below marks (#7)\n* Improves the display of COMBINING MACRON BELOW with various bases (#6)\n* Correctly orders COMBINING MACRON BELOW with another mark below (#5)\n* Adds a stylistic set for tailless tho and yo (#9)\n",
  13985. "published": "2023-09-26T13:44:40",
  13986. "url": "https://github.com/notofonts/thai/releases/tag/NotoSerifThai-v2.002",
  13987. "version": "v2.002"
  13988. }
  13989. }
  13990. },
  13991. "known_releases": [
  13992. "NotoSerifThai-v2.001",
  13993. "NotoSansThai-v2.001",
  13994. "NotoSansThaiLooped-v1.001",
  13995. "NotoSerifThai-v2.002",
  13996. "NotoSansThai-v2.002",
  13997. "NotoSansThaiLooped-v2.000"
  13998. ]
  13999. },
  14000. "tibetan": {
  14001. "families": {
  14002. "Noto Serif Tibetan": {
  14003. "files": [
  14004. "fonts/NotoSerifTibetan/full/slim-variable-ttf/NotoSerifTibetan[wght].ttf",
  14005. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Regular.ttf",
  14006. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Light.ttf",
  14007. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-ExtraBold.ttf",
  14008. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Thin.ttf",
  14009. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Bold.ttf",
  14010. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Medium.ttf",
  14011. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-SemiBold.ttf",
  14012. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-Black.ttf",
  14013. "fonts/NotoSerifTibetan/full/ttf/NotoSerifTibetan-ExtraLight.ttf",
  14014. "fonts/NotoSerifTibetan/full/variable-ttf/NotoSerifTibetan[wght].ttf",
  14015. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-Bold.otf",
  14016. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-ExtraLight.otf",
  14017. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-Light.otf",
  14018. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-Black.otf",
  14019. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-Thin.otf",
  14020. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-Regular.otf",
  14021. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-SemiBold.otf",
  14022. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-Medium.otf",
  14023. "fonts/NotoSerifTibetan/full/otf/NotoSerifTibetan-ExtraBold.otf",
  14024. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-Regular.ttf",
  14025. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-Light.ttf",
  14026. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-ExtraBold.ttf",
  14027. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-Thin.ttf",
  14028. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-Bold.ttf",
  14029. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-Medium.ttf",
  14030. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-SemiBold.ttf",
  14031. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-Black.ttf",
  14032. "fonts/NotoSerifTibetan/googlefonts/ttf/NotoSerifTibetan-ExtraLight.ttf",
  14033. "fonts/NotoSerifTibetan/googlefonts/variable-ttf/NotoSerifTibetan[wght].ttf",
  14034. "fonts/NotoSerifTibetan/unhinted/slim-variable-ttf/NotoSerifTibetan[wght].ttf",
  14035. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-Regular.ttf",
  14036. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-Light.ttf",
  14037. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-ExtraBold.ttf",
  14038. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-Thin.ttf",
  14039. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-Bold.ttf",
  14040. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-Medium.ttf",
  14041. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-SemiBold.ttf",
  14042. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-Black.ttf",
  14043. "fonts/NotoSerifTibetan/unhinted/ttf/NotoSerifTibetan-ExtraLight.ttf",
  14044. "fonts/NotoSerifTibetan/unhinted/variable-ttf/NotoSerifTibetan[wght].ttf",
  14045. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-Bold.otf",
  14046. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-ExtraLight.otf",
  14047. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-Light.otf",
  14048. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-Black.otf",
  14049. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-Thin.otf",
  14050. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-Regular.otf",
  14051. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-SemiBold.otf",
  14052. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-Medium.otf",
  14053. "fonts/NotoSerifTibetan/unhinted/otf/NotoSerifTibetan-ExtraBold.otf",
  14054. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-Regular.ttf",
  14055. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-Light.ttf",
  14056. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-ExtraBold.ttf",
  14057. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-Thin.ttf",
  14058. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-Bold.ttf",
  14059. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-Medium.ttf",
  14060. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-SemiBold.ttf",
  14061. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-Black.ttf",
  14062. "fonts/NotoSerifTibetan/hinted/ttf/NotoSerifTibetan-ExtraLight.ttf"
  14063. ],
  14064. "latest_release": {
  14065. "notes": "Noto Serif Tibetan v2.103\n\nThis release:\n* fixes a number of fontbakery fails\n* removes an erroneous aa matra from the stack \"tthya\" (#4)\n",
  14066. "published": "2022-09-16T13:58:09",
  14067. "url": "https://github.com/notofonts/tibetan/releases/tag/NotoSerifTibetan-v2.103",
  14068. "version": "v2.103"
  14069. }
  14070. }
  14071. },
  14072. "known_releases": [
  14073. "NotoSerifTibetan-v2.103"
  14074. ]
  14075. },
  14076. "tifinagh": {
  14077. "families": {
  14078. "Noto Sans Tifinagh": {
  14079. "files": [
  14080. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghGhat-Regular.ttf",
  14081. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAdrar-Regular.ttf",
  14082. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinagh-Regular.ttf",
  14083. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAzawagh-Regular.ttf",
  14084. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghTawellemmet-Regular.ttf",
  14085. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAgrawImazighen-Regular.ttf",
  14086. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAir-Regular.ttf",
  14087. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAhaggar-Regular.ttf",
  14088. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghSIL-Regular.ttf",
  14089. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghRhissaIxa-Regular.ttf",
  14090. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghHawad-Regular.ttf",
  14091. "fonts/NotoSansTifinagh/full/ttf/NotoSansTifinaghAPT-Regular.ttf",
  14092. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghGhat-Regular.otf",
  14093. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghAdrar-Regular.otf",
  14094. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinagh-Regular.otf",
  14095. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghAhaggar-Regular.otf",
  14096. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghAzawagh-Regular.otf",
  14097. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghRhissaIxa-Regular.otf",
  14098. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghAPT-Regular.otf",
  14099. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghAir-Regular.otf",
  14100. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghAgrawImazighen-Regular.otf",
  14101. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghTawellemmet-Regular.otf",
  14102. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghHawad-Regular.otf",
  14103. "fonts/NotoSansTifinagh/full/otf/NotoSansTifinaghSIL-Regular.otf",
  14104. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghGhat-Regular.ttf",
  14105. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghAdrar-Regular.ttf",
  14106. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinagh-Regular.ttf",
  14107. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghAzawagh-Regular.ttf",
  14108. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghTawellemmet-Regular.ttf",
  14109. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghAgrawImazighen-Regular.ttf",
  14110. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghAir-Regular.ttf",
  14111. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghAhaggar-Regular.ttf",
  14112. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghSIL-Regular.ttf",
  14113. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghRhissaIxa-Regular.ttf",
  14114. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghHawad-Regular.ttf",
  14115. "fonts/NotoSansTifinagh/hinted/ttf/NotoSansTifinaghAPT-Regular.ttf",
  14116. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghGhat-Regular.otf",
  14117. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghAdrar-Regular.otf",
  14118. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinagh-Regular.otf",
  14119. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghAhaggar-Regular.otf",
  14120. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghAzawagh-Regular.otf",
  14121. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghRhissaIxa-Regular.otf",
  14122. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghAPT-Regular.otf",
  14123. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghAir-Regular.otf",
  14124. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghAgrawImazighen-Regular.otf",
  14125. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghTawellemmet-Regular.otf",
  14126. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghHawad-Regular.otf",
  14127. "fonts/NotoSansTifinagh/unhinted/slim-otf/NotoSansTifinaghSIL-Regular.otf",
  14128. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghGhat-Regular.ttf",
  14129. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghAdrar-Regular.ttf",
  14130. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinagh-Regular.ttf",
  14131. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghAzawagh-Regular.ttf",
  14132. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghTawellemmet-Regular.ttf",
  14133. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghAgrawImazighen-Regular.ttf",
  14134. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghAir-Regular.ttf",
  14135. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghAhaggar-Regular.ttf",
  14136. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghSIL-Regular.ttf",
  14137. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghRhissaIxa-Regular.ttf",
  14138. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghHawad-Regular.ttf",
  14139. "fonts/NotoSansTifinagh/unhinted/ttf/NotoSansTifinaghAPT-Regular.ttf",
  14140. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghGhat-Regular.otf",
  14141. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghAdrar-Regular.otf",
  14142. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinagh-Regular.otf",
  14143. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghAhaggar-Regular.otf",
  14144. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghAzawagh-Regular.otf",
  14145. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghRhissaIxa-Regular.otf",
  14146. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghAPT-Regular.otf",
  14147. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghAir-Regular.otf",
  14148. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghAgrawImazighen-Regular.otf",
  14149. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghTawellemmet-Regular.otf",
  14150. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghHawad-Regular.otf",
  14151. "fonts/NotoSansTifinagh/unhinted/otf/NotoSansTifinaghSIL-Regular.otf",
  14152. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghGhat-Regular.ttf",
  14153. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghAdrar-Regular.ttf",
  14154. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinagh-Regular.ttf",
  14155. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghAzawagh-Regular.ttf",
  14156. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghTawellemmet-Regular.ttf",
  14157. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghAgrawImazighen-Regular.ttf",
  14158. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghAir-Regular.ttf",
  14159. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghAhaggar-Regular.ttf",
  14160. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghSIL-Regular.ttf",
  14161. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghRhissaIxa-Regular.ttf",
  14162. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghHawad-Regular.ttf",
  14163. "fonts/NotoSansTifinagh/googlefonts/ttf/NotoSansTifinaghAPT-Regular.ttf"
  14164. ],
  14165. "latest_release": {
  14166. "notes": "Noto Sans Tifinagh v2.006\n\nThis release:\n\n- Improves the combination of dot and macron (#4)\n- Anchors COMBINING HOOK ABOVE above letters (#16)\n- Makes ligatures work correctly in right-to-left contexts (#17)\n- Removes the unnecessary caron glyph (#6)\n",
  14167. "published": "2023-06-28T12:17:37",
  14168. "url": "https://github.com/notofonts/tifinagh/releases/tag/NotoSansTifinagh-v2.006",
  14169. "version": "v2.006"
  14170. }
  14171. }
  14172. },
  14173. "known_releases": [
  14174. "NotoSansTifinagh-v2.004",
  14175. "NotoSansTifinagh-v2.005",
  14176. "NotoSansTifinagh-v2.006"
  14177. ]
  14178. },
  14179. "tirhuta": {
  14180. "families": {
  14181. "Noto Sans Tirhuta": {
  14182. "files": [
  14183. "fonts/NotoSansTirhuta/full/ttf/NotoSansTirhuta-Regular.ttf",
  14184. "fonts/NotoSansTirhuta/full/otf/NotoSansTirhuta-Regular.otf",
  14185. "fonts/NotoSansTirhuta/googlefonts/ttf/NotoSansTirhuta-Regular.ttf",
  14186. "fonts/NotoSansTirhuta/unhinted/ttf/NotoSansTirhuta-Regular.ttf",
  14187. "fonts/NotoSansTirhuta/unhinted/otf/NotoSansTirhuta-Regular.otf",
  14188. "fonts/NotoSansTirhuta/hinted/ttf/NotoSansTirhuta-Regular.ttf"
  14189. ],
  14190. "latest_release": {
  14191. "notes": "Noto Sans Tirhuta v2.003\n\nThis release fixes a number of fontbakery fails.\n",
  14192. "published": "2022-09-19T16:05:08",
  14193. "url": "https://github.com/notofonts/tirhuta/releases/tag/NotoSansTirhuta-v2.003",
  14194. "version": "v2.003"
  14195. }
  14196. }
  14197. },
  14198. "known_releases": [
  14199. "NotoSansTirhuta-v2.003"
  14200. ]
  14201. },
  14202. "todhri": {
  14203. "families": {
  14204. "Noto Serif Todhri": {
  14205. "files": [
  14206. "fonts/NotoSerifTodhri/full/ttf/NotoSerifTodhri-Regular.ttf",
  14207. "fonts/NotoSerifTodhri/full/otf/NotoSerifTodhri-Regular.otf",
  14208. "fonts/NotoSerifTodhri/unhinted/ttf/NotoSerifTodhri-Regular.ttf",
  14209. "fonts/NotoSerifTodhri/unhinted/otf/NotoSerifTodhri-Regular.otf",
  14210. "fonts/NotoSerifTodhri/hinted/ttf/NotoSerifTodhri-Regular.ttf",
  14211. "fonts/NotoSerifTodhri/googlefonts/ttf/NotoSerifTodhri-Regular.ttf"
  14212. ],
  14213. "latest_release": {
  14214. "notes": "Noto Serif Todhri, v1.000 This is the first release of Noto Serif Todhri, a script added in Unicode 16.0. Thanks to @Mercury13 for contributing this font.\n",
  14215. "published": "2024-09-25T08:42:28+00:00",
  14216. "url": "https://github.com/notofonts/todhri/releases/tag/NotoSerifTodhri-v1.000",
  14217. "version": "v1.000"
  14218. }
  14219. }
  14220. },
  14221. "known_releases": [
  14222. "NotoSerifTodhri-v1.000"
  14223. ]
  14224. },
  14225. "toto": {
  14226. "families": {
  14227. "Noto Serif Toto": {
  14228. "files": [
  14229. "fonts/NotoSerifToto/googlefonts/variable-ttf/NotoSerifToto[wght].ttf",
  14230. "fonts/NotoSerifToto/full/otf/NotoSerifToto-Regular.otf",
  14231. "fonts/NotoSerifToto/full/otf/NotoSerifToto-SemiBold.otf",
  14232. "fonts/NotoSerifToto/full/otf/NotoSerifToto-Medium.otf",
  14233. "fonts/NotoSerifToto/full/otf/NotoSerifToto-Bold.otf",
  14234. "fonts/NotoSerifToto/full/ttf/NotoSerifToto-Bold.ttf",
  14235. "fonts/NotoSerifToto/full/ttf/NotoSerifToto-Regular.ttf",
  14236. "fonts/NotoSerifToto/full/ttf/NotoSerifToto-SemiBold.ttf",
  14237. "fonts/NotoSerifToto/full/ttf/NotoSerifToto-Medium.ttf",
  14238. "fonts/NotoSerifToto/full/slim-variable-ttf/NotoSerifToto[wght].ttf",
  14239. "fonts/NotoSerifToto/full/variable-ttf/NotoSerifToto[wght].ttf",
  14240. "fonts/NotoSerifToto/hinted/ttf/NotoSerifToto-Bold.ttf",
  14241. "fonts/NotoSerifToto/hinted/ttf/NotoSerifToto-Regular.ttf",
  14242. "fonts/NotoSerifToto/hinted/ttf/NotoSerifToto-SemiBold.ttf",
  14243. "fonts/NotoSerifToto/hinted/ttf/NotoSerifToto-Medium.ttf",
  14244. "fonts/NotoSerifToto/unhinted/otf/NotoSerifToto-Regular.otf",
  14245. "fonts/NotoSerifToto/unhinted/otf/NotoSerifToto-SemiBold.otf",
  14246. "fonts/NotoSerifToto/unhinted/otf/NotoSerifToto-Medium.otf",
  14247. "fonts/NotoSerifToto/unhinted/otf/NotoSerifToto-Bold.otf",
  14248. "fonts/NotoSerifToto/unhinted/ttf/NotoSerifToto-Bold.ttf",
  14249. "fonts/NotoSerifToto/unhinted/ttf/NotoSerifToto-Regular.ttf",
  14250. "fonts/NotoSerifToto/unhinted/ttf/NotoSerifToto-SemiBold.ttf",
  14251. "fonts/NotoSerifToto/unhinted/ttf/NotoSerifToto-Medium.ttf",
  14252. "fonts/NotoSerifToto/unhinted/slim-variable-ttf/NotoSerifToto[wght].ttf",
  14253. "fonts/NotoSerifToto/unhinted/variable-ttf/NotoSerifToto[wght].ttf"
  14254. ],
  14255. "latest_release": {
  14256. "notes": "Noto Serif Toto v2.002\n\nThis release:\n\n* Adds a meta table entry to show designed languages\n* Adds the missing languagesystem (#4)\n* Uses a breathy component in WA (#3)\n",
  14257. "published": "2024-06-13T09:47:11+00:00",
  14258. "url": "https://github.com/notofonts/toto/releases/tag/NotoSerifToto-v2.002",
  14259. "version": "v2.002"
  14260. }
  14261. }
  14262. },
  14263. "known_releases": [
  14264. "NotoSerifToto-v2.001",
  14265. "NotoSerifToto-v2.002"
  14266. ]
  14267. },
  14268. "ugaritic": {
  14269. "families": {
  14270. "Noto Sans Ugaritic": {
  14271. "files": [
  14272. "fonts/NotoSansUgaritic/hinted/ttf/NotoSansUgaritic-Regular.ttf",
  14273. "fonts/NotoSansUgaritic/googlefonts/ttf/NotoSansUgaritic-Regular.ttf",
  14274. "fonts/NotoSansUgaritic/unhinted/ttf/NotoSansUgaritic-Regular.ttf",
  14275. "fonts/NotoSansUgaritic/unhinted/otf/NotoSansUgaritic-Regular.otf",
  14276. "fonts/NotoSansUgaritic/full/ttf/NotoSansUgaritic-Regular.ttf",
  14277. "fonts/NotoSansUgaritic/full/otf/NotoSansUgaritic-Regular.otf"
  14278. ],
  14279. "latest_release": {
  14280. "notes": "Noto Sans Ugaritic v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  14281. "published": "2022-10-04T13:23:40",
  14282. "url": "https://github.com/notofonts/ugaritic/releases/tag/NotoSansUgaritic-v2.001",
  14283. "version": "v2.001"
  14284. }
  14285. }
  14286. },
  14287. "known_releases": [
  14288. "NotoSansUgaritic-v2.001"
  14289. ]
  14290. },
  14291. "vai": {
  14292. "families": {
  14293. "Noto Sans Vai": {
  14294. "files": [
  14295. "fonts/NotoSansVai/full/ttf/NotoSansVai-Regular.ttf",
  14296. "fonts/NotoSansVai/full/otf/NotoSansVai-Regular.otf",
  14297. "fonts/NotoSansVai/googlefonts/ttf/NotoSansVai-Regular.ttf",
  14298. "fonts/NotoSansVai/unhinted/ttf/NotoSansVai-Regular.ttf",
  14299. "fonts/NotoSansVai/unhinted/otf/NotoSansVai-Regular.otf",
  14300. "fonts/NotoSansVai/hinted/ttf/NotoSansVai-Regular.ttf"
  14301. ],
  14302. "latest_release": {
  14303. "notes": "Noto Sans Vai v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  14304. "published": "2022-09-05T15:23:18",
  14305. "url": "https://github.com/notofonts/vai/releases/tag/NotoSansVai-v2.001",
  14306. "version": "v2.001"
  14307. }
  14308. }
  14309. },
  14310. "known_releases": [
  14311. "NotoSansVai-v2.001"
  14312. ]
  14313. },
  14314. "vithkuqi": {
  14315. "families": {
  14316. "Noto Sans Vithkuqi": {
  14317. "files": [
  14318. "fonts/NotoSansVithkuqi/hinted/ttf/NotoSansVithkuqi-Regular.ttf",
  14319. "fonts/NotoSansVithkuqi/hinted/ttf/NotoSansVithkuqi-SemiBold.ttf",
  14320. "fonts/NotoSansVithkuqi/hinted/ttf/NotoSansVithkuqi-Medium.ttf",
  14321. "fonts/NotoSansVithkuqi/hinted/ttf/NotoSansVithkuqi-Bold.ttf",
  14322. "fonts/NotoSansVithkuqi/googlefonts/ttf/NotoSansVithkuqi-Regular.ttf",
  14323. "fonts/NotoSansVithkuqi/googlefonts/ttf/NotoSansVithkuqi-SemiBold.ttf",
  14324. "fonts/NotoSansVithkuqi/googlefonts/ttf/NotoSansVithkuqi-Medium.ttf",
  14325. "fonts/NotoSansVithkuqi/googlefonts/ttf/NotoSansVithkuqi-Bold.ttf",
  14326. "fonts/NotoSansVithkuqi/googlefonts/variable-ttf/NotoSansVithkuqi[wght].ttf",
  14327. "fonts/NotoSansVithkuqi/unhinted/slim-variable-ttf/NotoSansVithkuqi[wght].ttf",
  14328. "fonts/NotoSansVithkuqi/unhinted/ttf/NotoSansVithkuqi-Regular.ttf",
  14329. "fonts/NotoSansVithkuqi/unhinted/ttf/NotoSansVithkuqi-SemiBold.ttf",
  14330. "fonts/NotoSansVithkuqi/unhinted/ttf/NotoSansVithkuqi-Medium.ttf",
  14331. "fonts/NotoSansVithkuqi/unhinted/ttf/NotoSansVithkuqi-Bold.ttf",
  14332. "fonts/NotoSansVithkuqi/unhinted/otf/NotoSansVithkuqi-Regular.otf",
  14333. "fonts/NotoSansVithkuqi/unhinted/otf/NotoSansVithkuqi-Medium.otf",
  14334. "fonts/NotoSansVithkuqi/unhinted/otf/NotoSansVithkuqi-SemiBold.otf",
  14335. "fonts/NotoSansVithkuqi/unhinted/otf/NotoSansVithkuqi-Bold.otf",
  14336. "fonts/NotoSansVithkuqi/unhinted/variable-ttf/NotoSansVithkuqi[wght].ttf",
  14337. "fonts/NotoSansVithkuqi/full/slim-variable-ttf/NotoSansVithkuqi[wght].ttf",
  14338. "fonts/NotoSansVithkuqi/full/ttf/NotoSansVithkuqi-Regular.ttf",
  14339. "fonts/NotoSansVithkuqi/full/ttf/NotoSansVithkuqi-SemiBold.ttf",
  14340. "fonts/NotoSansVithkuqi/full/ttf/NotoSansVithkuqi-Medium.ttf",
  14341. "fonts/NotoSansVithkuqi/full/ttf/NotoSansVithkuqi-Bold.ttf",
  14342. "fonts/NotoSansVithkuqi/full/otf/NotoSansVithkuqi-Regular.otf",
  14343. "fonts/NotoSansVithkuqi/full/otf/NotoSansVithkuqi-Medium.otf",
  14344. "fonts/NotoSansVithkuqi/full/otf/NotoSansVithkuqi-SemiBold.otf",
  14345. "fonts/NotoSansVithkuqi/full/otf/NotoSansVithkuqi-Bold.otf",
  14346. "fonts/NotoSansVithkuqi/full/variable-ttf/NotoSansVithkuqi[wght].ttf"
  14347. ],
  14348. "latest_release": {
  14349. "notes": "Noto Sans Vithkuqi v1.001\n\nThis release fixes a number of fontbakery fails.\n",
  14350. "published": "2022-10-11T09:53:52",
  14351. "url": "https://github.com/notofonts/vithkuqi/releases/tag/NotoSansVithkuqi-v1.001",
  14352. "version": "v1.001"
  14353. }
  14354. },
  14355. "Noto Serif Vithkuqi": {
  14356. "files": [
  14357. "fonts/NotoSerifVithkuqi/hinted/ttf/NotoSerifVithkuqi-Medium.ttf",
  14358. "fonts/NotoSerifVithkuqi/hinted/ttf/NotoSerifVithkuqi-SemiBold.ttf",
  14359. "fonts/NotoSerifVithkuqi/hinted/ttf/NotoSerifVithkuqi-Bold.ttf",
  14360. "fonts/NotoSerifVithkuqi/hinted/ttf/NotoSerifVithkuqi-Regular.ttf",
  14361. "fonts/NotoSerifVithkuqi/googlefonts/ttf/NotoSerifVithkuqi-Medium.ttf",
  14362. "fonts/NotoSerifVithkuqi/googlefonts/ttf/NotoSerifVithkuqi-SemiBold.ttf",
  14363. "fonts/NotoSerifVithkuqi/googlefonts/ttf/NotoSerifVithkuqi-Bold.ttf",
  14364. "fonts/NotoSerifVithkuqi/googlefonts/ttf/NotoSerifVithkuqi-Regular.ttf",
  14365. "fonts/NotoSerifVithkuqi/googlefonts/variable-ttf/NotoSerifVithkuqi[wght].ttf",
  14366. "fonts/NotoSerifVithkuqi/unhinted/slim-variable-ttf/NotoSerifVithkuqi[wght].ttf",
  14367. "fonts/NotoSerifVithkuqi/unhinted/ttf/NotoSerifVithkuqi-Medium.ttf",
  14368. "fonts/NotoSerifVithkuqi/unhinted/ttf/NotoSerifVithkuqi-SemiBold.ttf",
  14369. "fonts/NotoSerifVithkuqi/unhinted/ttf/NotoSerifVithkuqi-Bold.ttf",
  14370. "fonts/NotoSerifVithkuqi/unhinted/ttf/NotoSerifVithkuqi-Regular.ttf",
  14371. "fonts/NotoSerifVithkuqi/unhinted/otf/NotoSerifVithkuqi-Medium.otf",
  14372. "fonts/NotoSerifVithkuqi/unhinted/otf/NotoSerifVithkuqi-SemiBold.otf",
  14373. "fonts/NotoSerifVithkuqi/unhinted/otf/NotoSerifVithkuqi-Regular.otf",
  14374. "fonts/NotoSerifVithkuqi/unhinted/otf/NotoSerifVithkuqi-Bold.otf",
  14375. "fonts/NotoSerifVithkuqi/unhinted/variable-ttf/NotoSerifVithkuqi[wght].ttf",
  14376. "fonts/NotoSerifVithkuqi/full/slim-variable-ttf/NotoSerifVithkuqi[wght].ttf",
  14377. "fonts/NotoSerifVithkuqi/full/ttf/NotoSerifVithkuqi-Medium.ttf",
  14378. "fonts/NotoSerifVithkuqi/full/ttf/NotoSerifVithkuqi-SemiBold.ttf",
  14379. "fonts/NotoSerifVithkuqi/full/ttf/NotoSerifVithkuqi-Bold.ttf",
  14380. "fonts/NotoSerifVithkuqi/full/ttf/NotoSerifVithkuqi-Regular.ttf",
  14381. "fonts/NotoSerifVithkuqi/full/otf/NotoSerifVithkuqi-Medium.otf",
  14382. "fonts/NotoSerifVithkuqi/full/otf/NotoSerifVithkuqi-SemiBold.otf",
  14383. "fonts/NotoSerifVithkuqi/full/otf/NotoSerifVithkuqi-Regular.otf",
  14384. "fonts/NotoSerifVithkuqi/full/otf/NotoSerifVithkuqi-Bold.otf",
  14385. "fonts/NotoSerifVithkuqi/full/variable-ttf/NotoSerifVithkuqi[wght].ttf"
  14386. ],
  14387. "latest_release": {
  14388. "notes": "Noto Serif Vithkuqi v1.005\n\nThis release fixes a number of fontbakery fails.\n",
  14389. "published": "2022-10-11T09:54:51",
  14390. "url": "https://github.com/notofonts/vithkuqi/releases/tag/NotoSerifVithkuqi-v1.005",
  14391. "version": "v1.005"
  14392. }
  14393. }
  14394. },
  14395. "known_releases": [
  14396. "NotoSansVithkuqi-v1.001",
  14397. "NotoSerifVithkuqi-v1.005"
  14398. ]
  14399. },
  14400. "wancho": {
  14401. "families": {
  14402. "Noto Sans Wancho": {
  14403. "files": [
  14404. "fonts/NotoSansWancho/full/ttf/NotoSansWancho-Regular.ttf",
  14405. "fonts/NotoSansWancho/full/otf/NotoSansWancho-Regular.otf",
  14406. "fonts/NotoSansWancho/googlefonts/ttf/NotoSansWancho-Regular.ttf",
  14407. "fonts/NotoSansWancho/unhinted/ttf/NotoSansWancho-Regular.ttf",
  14408. "fonts/NotoSansWancho/unhinted/otf/NotoSansWancho-Regular.otf",
  14409. "fonts/NotoSansWancho/hinted/ttf/NotoSansWancho-Regular.ttf"
  14410. ],
  14411. "latest_release": {
  14412. "notes": "Noto Sans Wancho v2.001\n\nThis release fixes a number of fontbakery fails.\n",
  14413. "published": "2022-09-05T16:01:30",
  14414. "url": "https://github.com/notofonts/wancho/releases/tag/NotoSansWancho-v2.001",
  14415. "version": "v2.001"
  14416. }
  14417. }
  14418. },
  14419. "known_releases": [
  14420. "NotoSansWancho-v2.001"
  14421. ]
  14422. },
  14423. "warang-citi": {
  14424. "families": {
  14425. "Noto Sans Warang Citi": {
  14426. "files": [
  14427. "fonts/NotoSansWarangCiti/full/ttf/NotoSansWarangCiti-Regular.ttf",
  14428. "fonts/NotoSansWarangCiti/full/otf/NotoSansWarangCiti-Regular.otf",
  14429. "fonts/NotoSansWarangCiti/googlefonts/ttf/NotoSansWarangCiti-Regular.ttf",
  14430. "fonts/NotoSansWarangCiti/unhinted/ttf/NotoSansWarangCiti-Regular.ttf",
  14431. "fonts/NotoSansWarangCiti/unhinted/otf/NotoSansWarangCiti-Regular.otf",
  14432. "fonts/NotoSansWarangCiti/hinted/ttf/NotoSansWarangCiti-Regular.ttf"
  14433. ],
  14434. "latest_release": {
  14435. "notes": "Noto Sans Warang Citi v3.002\n\nThis release fixes the handling of above-base subscript forms in the full build.\n",
  14436. "published": "2022-09-15T15:26:08",
  14437. "url": "https://github.com/notofonts/warang-citi/releases/tag/NotoSansWarangCiti-v3.002",
  14438. "version": "v3.002"
  14439. }
  14440. }
  14441. },
  14442. "known_releases": [
  14443. "NotoSansWarangCiti-v3.001",
  14444. "NotoSansWarangCiti-v3.002"
  14445. ]
  14446. },
  14447. "yezidi": {
  14448. "families": {
  14449. "Noto Serif Yezidi": {
  14450. "files": [
  14451. "fonts/NotoSerifYezidi/hinted/ttf/NotoSerifYezidi-SemiBold.ttf",
  14452. "fonts/NotoSerifYezidi/hinted/ttf/NotoSerifYezidi-Bold.ttf",
  14453. "fonts/NotoSerifYezidi/hinted/ttf/NotoSerifYezidi-Medium.ttf",
  14454. "fonts/NotoSerifYezidi/hinted/ttf/NotoSerifYezidi-Regular.ttf",
  14455. "fonts/NotoSerifYezidi/googlefonts/ttf/NotoSerifYezidi-SemiBold.ttf",
  14456. "fonts/NotoSerifYezidi/googlefonts/ttf/NotoSerifYezidi-Bold.ttf",
  14457. "fonts/NotoSerifYezidi/googlefonts/ttf/NotoSerifYezidi-Medium.ttf",
  14458. "fonts/NotoSerifYezidi/googlefonts/ttf/NotoSerifYezidi-Regular.ttf",
  14459. "fonts/NotoSerifYezidi/googlefonts/variable-ttf/NotoSerifYezidi[wght].ttf",
  14460. "fonts/NotoSerifYezidi/unhinted/slim-variable-ttf/NotoSerifYezidi[wght].ttf",
  14461. "fonts/NotoSerifYezidi/unhinted/ttf/NotoSerifYezidi-SemiBold.ttf",
  14462. "fonts/NotoSerifYezidi/unhinted/ttf/NotoSerifYezidi-Bold.ttf",
  14463. "fonts/NotoSerifYezidi/unhinted/ttf/NotoSerifYezidi-Medium.ttf",
  14464. "fonts/NotoSerifYezidi/unhinted/ttf/NotoSerifYezidi-Regular.ttf",
  14465. "fonts/NotoSerifYezidi/unhinted/otf/NotoSerifYezidi-Bold.otf",
  14466. "fonts/NotoSerifYezidi/unhinted/otf/NotoSerifYezidi-SemiBold.otf",
  14467. "fonts/NotoSerifYezidi/unhinted/otf/NotoSerifYezidi-Medium.otf",
  14468. "fonts/NotoSerifYezidi/unhinted/otf/NotoSerifYezidi-Regular.otf",
  14469. "fonts/NotoSerifYezidi/unhinted/variable-ttf/NotoSerifYezidi[wght].ttf",
  14470. "fonts/NotoSerifYezidi/full/slim-variable-ttf/NotoSerifYezidi[wght].ttf",
  14471. "fonts/NotoSerifYezidi/full/ttf/NotoSerifYezidi-SemiBold.ttf",
  14472. "fonts/NotoSerifYezidi/full/ttf/NotoSerifYezidi-Bold.ttf",
  14473. "fonts/NotoSerifYezidi/full/ttf/NotoSerifYezidi-Medium.ttf",
  14474. "fonts/NotoSerifYezidi/full/ttf/NotoSerifYezidi-Regular.ttf",
  14475. "fonts/NotoSerifYezidi/full/otf/NotoSerifYezidi-Bold.otf",
  14476. "fonts/NotoSerifYezidi/full/otf/NotoSerifYezidi-SemiBold.otf",
  14477. "fonts/NotoSerifYezidi/full/otf/NotoSerifYezidi-Medium.otf",
  14478. "fonts/NotoSerifYezidi/full/otf/NotoSerifYezidi-Regular.otf",
  14479. "fonts/NotoSerifYezidi/full/variable-ttf/NotoSerifYezidi[wght].ttf"
  14480. ],
  14481. "latest_release": {
  14482. "notes": "Noto Serif Yezidi v1.001\n\nThis release fixes a number of fontbakery fails.\n",
  14483. "published": "2022-09-24T14:00:40",
  14484. "url": "https://github.com/notofonts/yezidi/releases/tag/NotoSerifYezidi-v1.001",
  14485. "version": "v1.001"
  14486. }
  14487. }
  14488. },
  14489. "known_releases": [
  14490. "NotoSerifYezidi-v1.001"
  14491. ]
  14492. },
  14493. "yi": {
  14494. "families": {
  14495. "Noto Sans Yi": {
  14496. "files": [
  14497. "fonts/NotoSansYi/full/ttf/NotoSansYi-Regular.ttf",
  14498. "fonts/NotoSansYi/full/otf/NotoSansYi-Regular.otf",
  14499. "fonts/NotoSansYi/googlefonts/ttf/NotoSansYi-Regular.ttf",
  14500. "fonts/NotoSansYi/unhinted/ttf/NotoSansYi-Regular.ttf",
  14501. "fonts/NotoSansYi/unhinted/otf/NotoSansYi-Regular.otf",
  14502. "fonts/NotoSansYi/hinted/ttf/NotoSansYi-Regular.ttf"
  14503. ],
  14504. "latest_release": {
  14505. "notes": "NotoSansYi-v2.002\n\nThis release adds a number of punctuation characters: uniFF01, uniFF0C, uniFF1A, uniFF1B, and uniFF1F\n",
  14506. "published": "2022-09-16T08:04:46",
  14507. "url": "https://github.com/notofonts/yi/releases/tag/NotoSansYi-v2.002",
  14508. "version": "v2.002"
  14509. }
  14510. }
  14511. },
  14512. "known_releases": [
  14513. "NotoSansYi-v2.001",
  14514. "NotoSansYi-v2.002"
  14515. ]
  14516. },
  14517. "zanabazar-square": {
  14518. "families": {
  14519. "Noto Sans Zanabazar Square": {
  14520. "files": [
  14521. "fonts/NotoSansZanabazarSquare/full/ttf/NotoSansZanabazarSquare-Regular.ttf",
  14522. "fonts/NotoSansZanabazarSquare/full/otf/NotoSansZanabazarSquare-Regular.otf",
  14523. "fonts/NotoSansZanabazarSquare/googlefonts/ttf/NotoSansZanabazarSquare-Regular.ttf",
  14524. "fonts/NotoSansZanabazarSquare/unhinted/slim-otf/NotoSansZanabazarSquare-Regular.otf",
  14525. "fonts/NotoSansZanabazarSquare/unhinted/ttf/NotoSansZanabazarSquare-Regular.ttf",
  14526. "fonts/NotoSansZanabazarSquare/unhinted/otf/NotoSansZanabazarSquare-Regular.otf",
  14527. "fonts/NotoSansZanabazarSquare/hinted/ttf/NotoSansZanabazarSquare-Regular.ttf"
  14528. ],
  14529. "latest_release": {
  14530. "notes": "This release:\r\n\r\n* Fixes the display of clusters beginning with initial Ra (#8)\r\n* Ensures that the final consonant mark appears below final Ra/Ya (#9)",
  14531. "published": "2023-06-22T06:50:52",
  14532. "url": "https://github.com/notofonts/zanabazar-square/releases/tag/NotoSansZanabazarSquare-v2.006",
  14533. "version": "v2.006"
  14534. }
  14535. }
  14536. },
  14537. "known_releases": [
  14538. "NotoSansZanabazarSquare-v2.003",
  14539. "NotoSansZanabazarSquare-v2.004",
  14540. "NotoSansZanabazarSquare-v2.005",
  14541. "NotoSansZanabazarSquare-v2.006"
  14542. ]
  14543. },
  14544. "znamenny": {
  14545. "families": {
  14546. "Noto Znamenny Musical Notation": {
  14547. "files": [
  14548. "fonts/NotoZnamennyMusicalNotation/googlefonts/ttf/NotoZnamennyMusicalNotation-Regular.ttf",
  14549. "fonts/NotoZnamennyMusicalNotation/unhinted/otf/NotoZnamennyMusicalNotation-Regular.otf",
  14550. "fonts/NotoZnamennyMusicalNotation/unhinted/ttf/NotoZnamennyMusicalNotation-Regular.ttf",
  14551. "fonts/NotoZnamennyMusicalNotation/full/otf/NotoZnamennyMusicalNotation-Regular.otf",
  14552. "fonts/NotoZnamennyMusicalNotation/full/ttf/NotoZnamennyMusicalNotation-Regular.ttf",
  14553. "fonts/NotoZnamennyMusicalNotation/hinted/ttf/NotoZnamennyMusicalNotation-Regular.ttf"
  14554. ],
  14555. "latest_release": {
  14556. "notes": "Noto Znamenny Musical Notation\n\nThis is the first release of this font supporting Znamenny Chant notation.\n",
  14557. "published": "2023-12-11T10:34:37+00:00",
  14558. "url": "https://github.com/notofonts/znamenny/releases/tag/NotoZnamennyMusicalNotation-v1.003",
  14559. "version": "v1.003"
  14560. }
  14561. }
  14562. },
  14563. "known_releases": [
  14564. "NotoZnamennyMusicalNotation-v1.003"
  14565. ]
  14566. }
  14567. }