ld53s.deps.json 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v6.0/linux-x64",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v6.0": {},
  9. ".NETCoreApp,Version=v6.0/linux-x64": {
  10. "ld53s/1.0.0": {
  11. "dependencies": {
  12. "Godot.SourceGenerators": "4.0.2",
  13. "GodotSharp": "4.0.2",
  14. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "6.0.14"
  15. },
  16. "runtime": {
  17. "ld53s.dll": {}
  18. }
  19. },
  20. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.14": {
  21. "runtime": {
  22. "Microsoft.CSharp.dll": {
  23. "assemblyVersion": "6.0.0.0",
  24. "fileVersion": "6.0.1423.7309"
  25. },
  26. "Microsoft.VisualBasic.Core.dll": {
  27. "assemblyVersion": "11.0.0.0",
  28. "fileVersion": "11.100.1423.7309"
  29. },
  30. "Microsoft.VisualBasic.dll": {
  31. "assemblyVersion": "10.0.0.0",
  32. "fileVersion": "6.0.1423.7309"
  33. },
  34. "Microsoft.Win32.Primitives.dll": {
  35. "assemblyVersion": "6.0.0.0",
  36. "fileVersion": "6.0.1423.7309"
  37. },
  38. "Microsoft.Win32.Registry.dll": {
  39. "assemblyVersion": "6.0.0.0",
  40. "fileVersion": "6.0.1423.7309"
  41. },
  42. "System.AppContext.dll": {
  43. "assemblyVersion": "6.0.0.0",
  44. "fileVersion": "6.0.1423.7309"
  45. },
  46. "System.Buffers.dll": {
  47. "assemblyVersion": "6.0.0.0",
  48. "fileVersion": "6.0.1423.7309"
  49. },
  50. "System.Collections.Concurrent.dll": {
  51. "assemblyVersion": "6.0.0.0",
  52. "fileVersion": "6.0.1423.7309"
  53. },
  54. "System.Collections.Immutable.dll": {
  55. "assemblyVersion": "6.0.0.0",
  56. "fileVersion": "6.0.1423.7309"
  57. },
  58. "System.Collections.NonGeneric.dll": {
  59. "assemblyVersion": "6.0.0.0",
  60. "fileVersion": "6.0.1423.7309"
  61. },
  62. "System.Collections.Specialized.dll": {
  63. "assemblyVersion": "6.0.0.0",
  64. "fileVersion": "6.0.1423.7309"
  65. },
  66. "System.Collections.dll": {
  67. "assemblyVersion": "6.0.0.0",
  68. "fileVersion": "6.0.1423.7309"
  69. },
  70. "System.ComponentModel.Annotations.dll": {
  71. "assemblyVersion": "6.0.0.0",
  72. "fileVersion": "6.0.1423.7309"
  73. },
  74. "System.ComponentModel.DataAnnotations.dll": {
  75. "assemblyVersion": "4.0.0.0",
  76. "fileVersion": "6.0.1423.7309"
  77. },
  78. "System.ComponentModel.EventBasedAsync.dll": {
  79. "assemblyVersion": "6.0.0.0",
  80. "fileVersion": "6.0.1423.7309"
  81. },
  82. "System.ComponentModel.Primitives.dll": {
  83. "assemblyVersion": "6.0.0.0",
  84. "fileVersion": "6.0.1423.7309"
  85. },
  86. "System.ComponentModel.TypeConverter.dll": {
  87. "assemblyVersion": "6.0.0.0",
  88. "fileVersion": "6.0.1423.7309"
  89. },
  90. "System.ComponentModel.dll": {
  91. "assemblyVersion": "6.0.0.0",
  92. "fileVersion": "6.0.1423.7309"
  93. },
  94. "System.Configuration.dll": {
  95. "assemblyVersion": "4.0.0.0",
  96. "fileVersion": "6.0.1423.7309"
  97. },
  98. "System.Console.dll": {
  99. "assemblyVersion": "6.0.0.0",
  100. "fileVersion": "6.0.1423.7309"
  101. },
  102. "System.Core.dll": {
  103. "assemblyVersion": "4.0.0.0",
  104. "fileVersion": "6.0.1423.7309"
  105. },
  106. "System.Data.Common.dll": {
  107. "assemblyVersion": "6.0.0.0",
  108. "fileVersion": "6.0.1423.7309"
  109. },
  110. "System.Data.DataSetExtensions.dll": {
  111. "assemblyVersion": "4.0.0.0",
  112. "fileVersion": "6.0.1423.7309"
  113. },
  114. "System.Data.dll": {
  115. "assemblyVersion": "4.0.0.0",
  116. "fileVersion": "6.0.1423.7309"
  117. },
  118. "System.Diagnostics.Contracts.dll": {
  119. "assemblyVersion": "6.0.0.0",
  120. "fileVersion": "6.0.1423.7309"
  121. },
  122. "System.Diagnostics.Debug.dll": {
  123. "assemblyVersion": "6.0.0.0",
  124. "fileVersion": "6.0.1423.7309"
  125. },
  126. "System.Diagnostics.DiagnosticSource.dll": {
  127. "assemblyVersion": "6.0.0.0",
  128. "fileVersion": "6.0.1423.7309"
  129. },
  130. "System.Diagnostics.FileVersionInfo.dll": {
  131. "assemblyVersion": "6.0.0.0",
  132. "fileVersion": "6.0.1423.7309"
  133. },
  134. "System.Diagnostics.Process.dll": {
  135. "assemblyVersion": "6.0.0.0",
  136. "fileVersion": "6.0.1423.7309"
  137. },
  138. "System.Diagnostics.StackTrace.dll": {
  139. "assemblyVersion": "6.0.0.0",
  140. "fileVersion": "6.0.1423.7309"
  141. },
  142. "System.Diagnostics.TextWriterTraceListener.dll": {
  143. "assemblyVersion": "6.0.0.0",
  144. "fileVersion": "6.0.1423.7309"
  145. },
  146. "System.Diagnostics.Tools.dll": {
  147. "assemblyVersion": "6.0.0.0",
  148. "fileVersion": "6.0.1423.7309"
  149. },
  150. "System.Diagnostics.TraceSource.dll": {
  151. "assemblyVersion": "6.0.0.0",
  152. "fileVersion": "6.0.1423.7309"
  153. },
  154. "System.Diagnostics.Tracing.dll": {
  155. "assemblyVersion": "6.0.0.0",
  156. "fileVersion": "6.0.1423.7309"
  157. },
  158. "System.Drawing.Primitives.dll": {
  159. "assemblyVersion": "6.0.0.0",
  160. "fileVersion": "6.0.1423.7309"
  161. },
  162. "System.Drawing.dll": {
  163. "assemblyVersion": "4.0.0.0",
  164. "fileVersion": "6.0.1423.7309"
  165. },
  166. "System.Dynamic.Runtime.dll": {
  167. "assemblyVersion": "6.0.0.0",
  168. "fileVersion": "6.0.1423.7309"
  169. },
  170. "System.Formats.Asn1.dll": {
  171. "assemblyVersion": "6.0.0.0",
  172. "fileVersion": "6.0.1423.7309"
  173. },
  174. "System.Globalization.Calendars.dll": {
  175. "assemblyVersion": "6.0.0.0",
  176. "fileVersion": "6.0.1423.7309"
  177. },
  178. "System.Globalization.Extensions.dll": {
  179. "assemblyVersion": "6.0.0.0",
  180. "fileVersion": "6.0.1423.7309"
  181. },
  182. "System.Globalization.dll": {
  183. "assemblyVersion": "6.0.0.0",
  184. "fileVersion": "6.0.1423.7309"
  185. },
  186. "System.IO.Compression.Brotli.dll": {
  187. "assemblyVersion": "6.0.0.0",
  188. "fileVersion": "6.0.1423.7309"
  189. },
  190. "System.IO.Compression.FileSystem.dll": {
  191. "assemblyVersion": "4.0.0.0",
  192. "fileVersion": "6.0.1423.7309"
  193. },
  194. "System.IO.Compression.ZipFile.dll": {
  195. "assemblyVersion": "6.0.0.0",
  196. "fileVersion": "6.0.1423.7309"
  197. },
  198. "System.IO.Compression.dll": {
  199. "assemblyVersion": "6.0.0.0",
  200. "fileVersion": "6.0.1423.7309"
  201. },
  202. "System.IO.FileSystem.AccessControl.dll": {
  203. "assemblyVersion": "6.0.0.0",
  204. "fileVersion": "6.0.1423.7309"
  205. },
  206. "System.IO.FileSystem.DriveInfo.dll": {
  207. "assemblyVersion": "6.0.0.0",
  208. "fileVersion": "6.0.1423.7309"
  209. },
  210. "System.IO.FileSystem.Primitives.dll": {
  211. "assemblyVersion": "6.0.0.0",
  212. "fileVersion": "6.0.1423.7309"
  213. },
  214. "System.IO.FileSystem.Watcher.dll": {
  215. "assemblyVersion": "6.0.0.0",
  216. "fileVersion": "6.0.1423.7309"
  217. },
  218. "System.IO.FileSystem.dll": {
  219. "assemblyVersion": "6.0.0.0",
  220. "fileVersion": "6.0.1423.7309"
  221. },
  222. "System.IO.IsolatedStorage.dll": {
  223. "assemblyVersion": "6.0.0.0",
  224. "fileVersion": "6.0.1423.7309"
  225. },
  226. "System.IO.MemoryMappedFiles.dll": {
  227. "assemblyVersion": "6.0.0.0",
  228. "fileVersion": "6.0.1423.7309"
  229. },
  230. "System.IO.Pipes.AccessControl.dll": {
  231. "assemblyVersion": "6.0.0.0",
  232. "fileVersion": "6.0.1423.7309"
  233. },
  234. "System.IO.Pipes.dll": {
  235. "assemblyVersion": "6.0.0.0",
  236. "fileVersion": "6.0.1423.7309"
  237. },
  238. "System.IO.UnmanagedMemoryStream.dll": {
  239. "assemblyVersion": "6.0.0.0",
  240. "fileVersion": "6.0.1423.7309"
  241. },
  242. "System.IO.dll": {
  243. "assemblyVersion": "6.0.0.0",
  244. "fileVersion": "6.0.1423.7309"
  245. },
  246. "System.Linq.Expressions.dll": {
  247. "assemblyVersion": "6.0.0.0",
  248. "fileVersion": "6.0.1423.7309"
  249. },
  250. "System.Linq.Parallel.dll": {
  251. "assemblyVersion": "6.0.0.0",
  252. "fileVersion": "6.0.1423.7309"
  253. },
  254. "System.Linq.Queryable.dll": {
  255. "assemblyVersion": "6.0.0.0",
  256. "fileVersion": "6.0.1423.7309"
  257. },
  258. "System.Linq.dll": {
  259. "assemblyVersion": "6.0.0.0",
  260. "fileVersion": "6.0.1423.7309"
  261. },
  262. "System.Memory.dll": {
  263. "assemblyVersion": "6.0.0.0",
  264. "fileVersion": "6.0.1423.7309"
  265. },
  266. "System.Net.Http.Json.dll": {
  267. "assemblyVersion": "6.0.0.0",
  268. "fileVersion": "6.0.1423.7309"
  269. },
  270. "System.Net.Http.dll": {
  271. "assemblyVersion": "6.0.0.0",
  272. "fileVersion": "6.0.1423.7309"
  273. },
  274. "System.Net.HttpListener.dll": {
  275. "assemblyVersion": "6.0.0.0",
  276. "fileVersion": "6.0.1423.7309"
  277. },
  278. "System.Net.Mail.dll": {
  279. "assemblyVersion": "6.0.0.0",
  280. "fileVersion": "6.0.1423.7309"
  281. },
  282. "System.Net.NameResolution.dll": {
  283. "assemblyVersion": "6.0.0.0",
  284. "fileVersion": "6.0.1423.7309"
  285. },
  286. "System.Net.NetworkInformation.dll": {
  287. "assemblyVersion": "6.0.0.0",
  288. "fileVersion": "6.0.1423.7309"
  289. },
  290. "System.Net.Ping.dll": {
  291. "assemblyVersion": "6.0.0.0",
  292. "fileVersion": "6.0.1423.7309"
  293. },
  294. "System.Net.Primitives.dll": {
  295. "assemblyVersion": "6.0.0.0",
  296. "fileVersion": "6.0.1423.7309"
  297. },
  298. "System.Net.Quic.dll": {
  299. "assemblyVersion": "6.0.0.0",
  300. "fileVersion": "6.0.1423.7309"
  301. },
  302. "System.Net.Requests.dll": {
  303. "assemblyVersion": "6.0.0.0",
  304. "fileVersion": "6.0.1423.7309"
  305. },
  306. "System.Net.Security.dll": {
  307. "assemblyVersion": "6.0.0.0",
  308. "fileVersion": "6.0.1423.7309"
  309. },
  310. "System.Net.ServicePoint.dll": {
  311. "assemblyVersion": "6.0.0.0",
  312. "fileVersion": "6.0.1423.7309"
  313. },
  314. "System.Net.Sockets.dll": {
  315. "assemblyVersion": "6.0.0.0",
  316. "fileVersion": "6.0.1423.7309"
  317. },
  318. "System.Net.WebClient.dll": {
  319. "assemblyVersion": "6.0.0.0",
  320. "fileVersion": "6.0.1423.7309"
  321. },
  322. "System.Net.WebHeaderCollection.dll": {
  323. "assemblyVersion": "6.0.0.0",
  324. "fileVersion": "6.0.1423.7309"
  325. },
  326. "System.Net.WebProxy.dll": {
  327. "assemblyVersion": "6.0.0.0",
  328. "fileVersion": "6.0.1423.7309"
  329. },
  330. "System.Net.WebSockets.Client.dll": {
  331. "assemblyVersion": "6.0.0.0",
  332. "fileVersion": "6.0.1423.7309"
  333. },
  334. "System.Net.WebSockets.dll": {
  335. "assemblyVersion": "6.0.0.0",
  336. "fileVersion": "6.0.1423.7309"
  337. },
  338. "System.Net.dll": {
  339. "assemblyVersion": "4.0.0.0",
  340. "fileVersion": "6.0.1423.7309"
  341. },
  342. "System.Numerics.Vectors.dll": {
  343. "assemblyVersion": "6.0.0.0",
  344. "fileVersion": "6.0.1423.7309"
  345. },
  346. "System.Numerics.dll": {
  347. "assemblyVersion": "4.0.0.0",
  348. "fileVersion": "6.0.1423.7309"
  349. },
  350. "System.ObjectModel.dll": {
  351. "assemblyVersion": "6.0.0.0",
  352. "fileVersion": "6.0.1423.7309"
  353. },
  354. "System.Private.CoreLib.dll": {
  355. "assemblyVersion": "6.0.0.0",
  356. "fileVersion": "6.0.1423.7309"
  357. },
  358. "System.Private.DataContractSerialization.dll": {
  359. "assemblyVersion": "6.0.0.0",
  360. "fileVersion": "6.0.1423.7309"
  361. },
  362. "System.Private.Uri.dll": {
  363. "assemblyVersion": "6.0.0.0",
  364. "fileVersion": "6.0.1423.7309"
  365. },
  366. "System.Private.Xml.Linq.dll": {
  367. "assemblyVersion": "6.0.0.0",
  368. "fileVersion": "6.0.1423.7309"
  369. },
  370. "System.Private.Xml.dll": {
  371. "assemblyVersion": "6.0.0.0",
  372. "fileVersion": "6.0.1423.7309"
  373. },
  374. "System.Reflection.DispatchProxy.dll": {
  375. "assemblyVersion": "6.0.0.0",
  376. "fileVersion": "6.0.1423.7309"
  377. },
  378. "System.Reflection.Emit.ILGeneration.dll": {
  379. "assemblyVersion": "6.0.0.0",
  380. "fileVersion": "6.0.1423.7309"
  381. },
  382. "System.Reflection.Emit.Lightweight.dll": {
  383. "assemblyVersion": "6.0.0.0",
  384. "fileVersion": "6.0.1423.7309"
  385. },
  386. "System.Reflection.Emit.dll": {
  387. "assemblyVersion": "6.0.0.0",
  388. "fileVersion": "6.0.1423.7309"
  389. },
  390. "System.Reflection.Extensions.dll": {
  391. "assemblyVersion": "6.0.0.0",
  392. "fileVersion": "6.0.1423.7309"
  393. },
  394. "System.Reflection.Metadata.dll": {
  395. "assemblyVersion": "6.0.0.0",
  396. "fileVersion": "6.0.1423.7309"
  397. },
  398. "System.Reflection.Primitives.dll": {
  399. "assemblyVersion": "6.0.0.0",
  400. "fileVersion": "6.0.1423.7309"
  401. },
  402. "System.Reflection.TypeExtensions.dll": {
  403. "assemblyVersion": "6.0.0.0",
  404. "fileVersion": "6.0.1423.7309"
  405. },
  406. "System.Reflection.dll": {
  407. "assemblyVersion": "6.0.0.0",
  408. "fileVersion": "6.0.1423.7309"
  409. },
  410. "System.Resources.Reader.dll": {
  411. "assemblyVersion": "6.0.0.0",
  412. "fileVersion": "6.0.1423.7309"
  413. },
  414. "System.Resources.ResourceManager.dll": {
  415. "assemblyVersion": "6.0.0.0",
  416. "fileVersion": "6.0.1423.7309"
  417. },
  418. "System.Resources.Writer.dll": {
  419. "assemblyVersion": "6.0.0.0",
  420. "fileVersion": "6.0.1423.7309"
  421. },
  422. "System.Runtime.CompilerServices.Unsafe.dll": {
  423. "assemblyVersion": "6.0.0.0",
  424. "fileVersion": "6.0.1423.7309"
  425. },
  426. "System.Runtime.CompilerServices.VisualC.dll": {
  427. "assemblyVersion": "6.0.0.0",
  428. "fileVersion": "6.0.1423.7309"
  429. },
  430. "System.Runtime.Extensions.dll": {
  431. "assemblyVersion": "6.0.0.0",
  432. "fileVersion": "6.0.1423.7309"
  433. },
  434. "System.Runtime.Handles.dll": {
  435. "assemblyVersion": "6.0.0.0",
  436. "fileVersion": "6.0.1423.7309"
  437. },
  438. "System.Runtime.InteropServices.RuntimeInformation.dll": {
  439. "assemblyVersion": "6.0.0.0",
  440. "fileVersion": "6.0.1423.7309"
  441. },
  442. "System.Runtime.InteropServices.dll": {
  443. "assemblyVersion": "6.0.0.0",
  444. "fileVersion": "6.0.1423.7309"
  445. },
  446. "System.Runtime.Intrinsics.dll": {
  447. "assemblyVersion": "6.0.0.0",
  448. "fileVersion": "6.0.1423.7309"
  449. },
  450. "System.Runtime.Loader.dll": {
  451. "assemblyVersion": "6.0.0.0",
  452. "fileVersion": "6.0.1423.7309"
  453. },
  454. "System.Runtime.Numerics.dll": {
  455. "assemblyVersion": "6.0.0.0",
  456. "fileVersion": "6.0.1423.7309"
  457. },
  458. "System.Runtime.Serialization.Formatters.dll": {
  459. "assemblyVersion": "6.0.0.0",
  460. "fileVersion": "6.0.1423.7309"
  461. },
  462. "System.Runtime.Serialization.Json.dll": {
  463. "assemblyVersion": "6.0.0.0",
  464. "fileVersion": "6.0.1423.7309"
  465. },
  466. "System.Runtime.Serialization.Primitives.dll": {
  467. "assemblyVersion": "6.0.0.0",
  468. "fileVersion": "6.0.1423.7309"
  469. },
  470. "System.Runtime.Serialization.Xml.dll": {
  471. "assemblyVersion": "6.0.0.0",
  472. "fileVersion": "6.0.1423.7309"
  473. },
  474. "System.Runtime.Serialization.dll": {
  475. "assemblyVersion": "4.0.0.0",
  476. "fileVersion": "6.0.1423.7309"
  477. },
  478. "System.Runtime.dll": {
  479. "assemblyVersion": "6.0.0.0",
  480. "fileVersion": "6.0.1423.7309"
  481. },
  482. "System.Security.AccessControl.dll": {
  483. "assemblyVersion": "6.0.0.0",
  484. "fileVersion": "6.0.1423.7309"
  485. },
  486. "System.Security.Claims.dll": {
  487. "assemblyVersion": "6.0.0.0",
  488. "fileVersion": "6.0.1423.7309"
  489. },
  490. "System.Security.Cryptography.Algorithms.dll": {
  491. "assemblyVersion": "6.0.0.0",
  492. "fileVersion": "6.0.1423.7309"
  493. },
  494. "System.Security.Cryptography.Cng.dll": {
  495. "assemblyVersion": "6.0.0.0",
  496. "fileVersion": "6.0.1423.7309"
  497. },
  498. "System.Security.Cryptography.Csp.dll": {
  499. "assemblyVersion": "6.0.0.0",
  500. "fileVersion": "6.0.1423.7309"
  501. },
  502. "System.Security.Cryptography.Encoding.dll": {
  503. "assemblyVersion": "6.0.0.0",
  504. "fileVersion": "6.0.1423.7309"
  505. },
  506. "System.Security.Cryptography.OpenSsl.dll": {
  507. "assemblyVersion": "6.0.0.0",
  508. "fileVersion": "6.0.1423.7309"
  509. },
  510. "System.Security.Cryptography.Primitives.dll": {
  511. "assemblyVersion": "6.0.0.0",
  512. "fileVersion": "6.0.1423.7309"
  513. },
  514. "System.Security.Cryptography.X509Certificates.dll": {
  515. "assemblyVersion": "6.0.0.0",
  516. "fileVersion": "6.0.1423.7309"
  517. },
  518. "System.Security.Principal.Windows.dll": {
  519. "assemblyVersion": "6.0.0.0",
  520. "fileVersion": "6.0.1423.7309"
  521. },
  522. "System.Security.Principal.dll": {
  523. "assemblyVersion": "6.0.0.0",
  524. "fileVersion": "6.0.1423.7309"
  525. },
  526. "System.Security.SecureString.dll": {
  527. "assemblyVersion": "6.0.0.0",
  528. "fileVersion": "6.0.1423.7309"
  529. },
  530. "System.Security.dll": {
  531. "assemblyVersion": "4.0.0.0",
  532. "fileVersion": "6.0.1423.7309"
  533. },
  534. "System.ServiceModel.Web.dll": {
  535. "assemblyVersion": "4.0.0.0",
  536. "fileVersion": "6.0.1423.7309"
  537. },
  538. "System.ServiceProcess.dll": {
  539. "assemblyVersion": "4.0.0.0",
  540. "fileVersion": "6.0.1423.7309"
  541. },
  542. "System.Text.Encoding.CodePages.dll": {
  543. "assemblyVersion": "6.0.0.0",
  544. "fileVersion": "6.0.1423.7309"
  545. },
  546. "System.Text.Encoding.Extensions.dll": {
  547. "assemblyVersion": "6.0.0.0",
  548. "fileVersion": "6.0.1423.7309"
  549. },
  550. "System.Text.Encoding.dll": {
  551. "assemblyVersion": "6.0.0.0",
  552. "fileVersion": "6.0.1423.7309"
  553. },
  554. "System.Text.Encodings.Web.dll": {
  555. "assemblyVersion": "6.0.0.0",
  556. "fileVersion": "6.0.1423.7309"
  557. },
  558. "System.Text.Json.dll": {
  559. "assemblyVersion": "6.0.0.0",
  560. "fileVersion": "6.0.1423.7309"
  561. },
  562. "System.Text.RegularExpressions.dll": {
  563. "assemblyVersion": "6.0.0.0",
  564. "fileVersion": "6.0.1423.7309"
  565. },
  566. "System.Threading.Channels.dll": {
  567. "assemblyVersion": "6.0.0.0",
  568. "fileVersion": "6.0.1423.7309"
  569. },
  570. "System.Threading.Overlapped.dll": {
  571. "assemblyVersion": "6.0.0.0",
  572. "fileVersion": "6.0.1423.7309"
  573. },
  574. "System.Threading.Tasks.Dataflow.dll": {
  575. "assemblyVersion": "6.0.0.0",
  576. "fileVersion": "6.0.1423.7309"
  577. },
  578. "System.Threading.Tasks.Extensions.dll": {
  579. "assemblyVersion": "6.0.0.0",
  580. "fileVersion": "6.0.1423.7309"
  581. },
  582. "System.Threading.Tasks.Parallel.dll": {
  583. "assemblyVersion": "6.0.0.0",
  584. "fileVersion": "6.0.1423.7309"
  585. },
  586. "System.Threading.Tasks.dll": {
  587. "assemblyVersion": "6.0.0.0",
  588. "fileVersion": "6.0.1423.7309"
  589. },
  590. "System.Threading.Thread.dll": {
  591. "assemblyVersion": "6.0.0.0",
  592. "fileVersion": "6.0.1423.7309"
  593. },
  594. "System.Threading.ThreadPool.dll": {
  595. "assemblyVersion": "6.0.0.0",
  596. "fileVersion": "6.0.1423.7309"
  597. },
  598. "System.Threading.Timer.dll": {
  599. "assemblyVersion": "6.0.0.0",
  600. "fileVersion": "6.0.1423.7309"
  601. },
  602. "System.Threading.dll": {
  603. "assemblyVersion": "6.0.0.0",
  604. "fileVersion": "6.0.1423.7309"
  605. },
  606. "System.Transactions.Local.dll": {
  607. "assemblyVersion": "6.0.0.0",
  608. "fileVersion": "6.0.1423.7309"
  609. },
  610. "System.Transactions.dll": {
  611. "assemblyVersion": "4.0.0.0",
  612. "fileVersion": "6.0.1423.7309"
  613. },
  614. "System.ValueTuple.dll": {
  615. "assemblyVersion": "6.0.0.0",
  616. "fileVersion": "6.0.1423.7309"
  617. },
  618. "System.Web.HttpUtility.dll": {
  619. "assemblyVersion": "6.0.0.0",
  620. "fileVersion": "6.0.1423.7309"
  621. },
  622. "System.Web.dll": {
  623. "assemblyVersion": "4.0.0.0",
  624. "fileVersion": "6.0.1423.7309"
  625. },
  626. "System.Windows.dll": {
  627. "assemblyVersion": "4.0.0.0",
  628. "fileVersion": "6.0.1423.7309"
  629. },
  630. "System.Xml.Linq.dll": {
  631. "assemblyVersion": "4.0.0.0",
  632. "fileVersion": "6.0.1423.7309"
  633. },
  634. "System.Xml.ReaderWriter.dll": {
  635. "assemblyVersion": "6.0.0.0",
  636. "fileVersion": "6.0.1423.7309"
  637. },
  638. "System.Xml.Serialization.dll": {
  639. "assemblyVersion": "4.0.0.0",
  640. "fileVersion": "6.0.1423.7309"
  641. },
  642. "System.Xml.XDocument.dll": {
  643. "assemblyVersion": "6.0.0.0",
  644. "fileVersion": "6.0.1423.7309"
  645. },
  646. "System.Xml.XPath.XDocument.dll": {
  647. "assemblyVersion": "6.0.0.0",
  648. "fileVersion": "6.0.1423.7309"
  649. },
  650. "System.Xml.XPath.dll": {
  651. "assemblyVersion": "6.0.0.0",
  652. "fileVersion": "6.0.1423.7309"
  653. },
  654. "System.Xml.XmlDocument.dll": {
  655. "assemblyVersion": "6.0.0.0",
  656. "fileVersion": "6.0.1423.7309"
  657. },
  658. "System.Xml.XmlSerializer.dll": {
  659. "assemblyVersion": "6.0.0.0",
  660. "fileVersion": "6.0.1423.7309"
  661. },
  662. "System.Xml.dll": {
  663. "assemblyVersion": "4.0.0.0",
  664. "fileVersion": "6.0.1423.7309"
  665. },
  666. "System.dll": {
  667. "assemblyVersion": "4.0.0.0",
  668. "fileVersion": "6.0.1423.7309"
  669. },
  670. "WindowsBase.dll": {
  671. "assemblyVersion": "4.0.0.0",
  672. "fileVersion": "6.0.1423.7309"
  673. },
  674. "mscorlib.dll": {
  675. "assemblyVersion": "4.0.0.0",
  676. "fileVersion": "6.0.1423.7309"
  677. },
  678. "netstandard.dll": {
  679. "assemblyVersion": "2.1.0.0",
  680. "fileVersion": "6.0.1423.7309"
  681. }
  682. },
  683. "native": {
  684. "createdump": {
  685. "fileVersion": "0.0.0.0"
  686. },
  687. "libSystem.Globalization.Native.so": {
  688. "fileVersion": "0.0.0.0"
  689. },
  690. "libSystem.IO.Compression.Native.so": {
  691. "fileVersion": "0.0.0.0"
  692. },
  693. "libSystem.Native.so": {
  694. "fileVersion": "0.0.0.0"
  695. },
  696. "libSystem.Net.Security.Native.so": {
  697. "fileVersion": "0.0.0.0"
  698. },
  699. "libSystem.Security.Cryptography.Native.OpenSsl.so": {
  700. "fileVersion": "0.0.0.0"
  701. },
  702. "libclrjit.so": {
  703. "fileVersion": "0.0.0.0"
  704. },
  705. "libcoreclr.so": {
  706. "fileVersion": "0.0.0.0"
  707. },
  708. "libcoreclrtraceptprovider.so": {
  709. "fileVersion": "0.0.0.0"
  710. },
  711. "libdbgshim.so": {
  712. "fileVersion": "0.0.0.0"
  713. },
  714. "libhostfxr.so": {
  715. "fileVersion": "0.0.0.0"
  716. },
  717. "libhostpolicy.so": {
  718. "fileVersion": "0.0.0.0"
  719. },
  720. "libmscordaccore.so": {
  721. "fileVersion": "0.0.0.0"
  722. },
  723. "libmscordbi.so": {
  724. "fileVersion": "0.0.0.0"
  725. }
  726. }
  727. },
  728. "Godot.SourceGenerators/4.0.2": {},
  729. "GodotSharp/4.0.2": {
  730. "runtime": {
  731. "lib/net6.0/GodotSharp.dll": {
  732. "assemblyVersion": "4.0.2.0",
  733. "fileVersion": "4.0.2.0"
  734. }
  735. }
  736. }
  737. }
  738. },
  739. "libraries": {
  740. "ld53s/1.0.0": {
  741. "type": "project",
  742. "serviceable": false,
  743. "sha512": ""
  744. },
  745. "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.14": {
  746. "type": "runtimepack",
  747. "serviceable": false,
  748. "sha512": ""
  749. },
  750. "Godot.SourceGenerators/4.0.2": {
  751. "type": "package",
  752. "serviceable": true,
  753. "sha512": "sha512-nf4QegHOSrlw7WtpgwSwFnmKMuIzFBeF/f11r2e5witGfrnoxtqyxInxOahnYnnP3DntrDmXZe4XNKRr9qYUoQ==",
  754. "path": "godot.sourcegenerators/4.0.2",
  755. "hashPath": "godot.sourcegenerators.4.0.2.nupkg.sha512"
  756. },
  757. "GodotSharp/4.0.2": {
  758. "type": "package",
  759. "serviceable": true,
  760. "sha512": "sha512-ZRXK64N5CoxaVxu0LmhmYJV+gOLJOMiILskklqLsanJk/4glUaZLqTmVy8yt74iLXseEaeXU2RwLBsSUEIZ4Gw==",
  761. "path": "godotsharp/4.0.2",
  762. "hashPath": "godotsharp.4.0.2.nupkg.sha512"
  763. }
  764. },
  765. "runtimes": {
  766. "alpine-x64": [
  767. "alpine",
  768. "linux-musl-x64",
  769. "linux-musl",
  770. "linux-x64",
  771. "linux",
  772. "unix-x64",
  773. "unix",
  774. "any",
  775. "base"
  776. ],
  777. "alpine.3.10-x64": [
  778. "alpine.3.10",
  779. "alpine.3.9-x64",
  780. "alpine.3.9",
  781. "alpine.3.8-x64",
  782. "alpine.3.8",
  783. "alpine.3.7-x64",
  784. "alpine.3.7",
  785. "alpine.3.6-x64",
  786. "alpine.3.6",
  787. "alpine-x64",
  788. "alpine",
  789. "linux-musl-x64",
  790. "linux-musl",
  791. "linux-x64",
  792. "linux",
  793. "unix-x64",
  794. "unix",
  795. "any",
  796. "base"
  797. ],
  798. "alpine.3.11-x64": [
  799. "alpine.3.11",
  800. "alpine.3.10-x64",
  801. "alpine.3.10",
  802. "alpine.3.9-x64",
  803. "alpine.3.9",
  804. "alpine.3.8-x64",
  805. "alpine.3.8",
  806. "alpine.3.7-x64",
  807. "alpine.3.7",
  808. "alpine.3.6-x64",
  809. "alpine.3.6",
  810. "alpine-x64",
  811. "alpine",
  812. "linux-musl-x64",
  813. "linux-musl",
  814. "linux-x64",
  815. "linux",
  816. "unix-x64",
  817. "unix",
  818. "any",
  819. "base"
  820. ],
  821. "alpine.3.12-x64": [
  822. "alpine.3.12",
  823. "alpine.3.11-x64",
  824. "alpine.3.11",
  825. "alpine.3.10-x64",
  826. "alpine.3.10",
  827. "alpine.3.9-x64",
  828. "alpine.3.9",
  829. "alpine.3.8-x64",
  830. "alpine.3.8",
  831. "alpine.3.7-x64",
  832. "alpine.3.7",
  833. "alpine.3.6-x64",
  834. "alpine.3.6",
  835. "alpine-x64",
  836. "alpine",
  837. "linux-musl-x64",
  838. "linux-musl",
  839. "linux-x64",
  840. "linux",
  841. "unix-x64",
  842. "unix",
  843. "any",
  844. "base"
  845. ],
  846. "alpine.3.13-x64": [
  847. "alpine.3.13",
  848. "alpine.3.12-x64",
  849. "alpine.3.12",
  850. "alpine.3.11-x64",
  851. "alpine.3.11",
  852. "alpine.3.10-x64",
  853. "alpine.3.10",
  854. "alpine.3.9-x64",
  855. "alpine.3.9",
  856. "alpine.3.8-x64",
  857. "alpine.3.8",
  858. "alpine.3.7-x64",
  859. "alpine.3.7",
  860. "alpine.3.6-x64",
  861. "alpine.3.6",
  862. "alpine-x64",
  863. "alpine",
  864. "linux-musl-x64",
  865. "linux-musl",
  866. "linux-x64",
  867. "linux",
  868. "unix-x64",
  869. "unix",
  870. "any",
  871. "base"
  872. ],
  873. "alpine.3.14-x64": [
  874. "alpine.3.14",
  875. "alpine.3.13-x64",
  876. "alpine.3.13",
  877. "alpine.3.12-x64",
  878. "alpine.3.12",
  879. "alpine.3.11-x64",
  880. "alpine.3.11",
  881. "alpine.3.10-x64",
  882. "alpine.3.10",
  883. "alpine.3.9-x64",
  884. "alpine.3.9",
  885. "alpine.3.8-x64",
  886. "alpine.3.8",
  887. "alpine.3.7-x64",
  888. "alpine.3.7",
  889. "alpine.3.6-x64",
  890. "alpine.3.6",
  891. "alpine-x64",
  892. "alpine",
  893. "linux-musl-x64",
  894. "linux-musl",
  895. "linux-x64",
  896. "linux",
  897. "unix-x64",
  898. "unix",
  899. "any",
  900. "base"
  901. ],
  902. "alpine.3.15-x64": [
  903. "alpine.3.15",
  904. "alpine.3.14-x64",
  905. "alpine.3.14",
  906. "alpine.3.13-x64",
  907. "alpine.3.13",
  908. "alpine.3.12-x64",
  909. "alpine.3.12",
  910. "alpine.3.11-x64",
  911. "alpine.3.11",
  912. "alpine.3.10-x64",
  913. "alpine.3.10",
  914. "alpine.3.9-x64",
  915. "alpine.3.9",
  916. "alpine.3.8-x64",
  917. "alpine.3.8",
  918. "alpine.3.7-x64",
  919. "alpine.3.7",
  920. "alpine.3.6-x64",
  921. "alpine.3.6",
  922. "alpine-x64",
  923. "alpine",
  924. "linux-musl-x64",
  925. "linux-musl",
  926. "linux-x64",
  927. "linux",
  928. "unix-x64",
  929. "unix",
  930. "any",
  931. "base"
  932. ],
  933. "alpine.3.16-x64": [
  934. "alpine.3.16",
  935. "alpine.3.15-x64",
  936. "alpine.3.15",
  937. "alpine.3.14-x64",
  938. "alpine.3.14",
  939. "alpine.3.13-x64",
  940. "alpine.3.13",
  941. "alpine.3.12-x64",
  942. "alpine.3.12",
  943. "alpine.3.11-x64",
  944. "alpine.3.11",
  945. "alpine.3.10-x64",
  946. "alpine.3.10",
  947. "alpine.3.9-x64",
  948. "alpine.3.9",
  949. "alpine.3.8-x64",
  950. "alpine.3.8",
  951. "alpine.3.7-x64",
  952. "alpine.3.7",
  953. "alpine.3.6-x64",
  954. "alpine.3.6",
  955. "alpine-x64",
  956. "alpine",
  957. "linux-musl-x64",
  958. "linux-musl",
  959. "linux-x64",
  960. "linux",
  961. "unix-x64",
  962. "unix",
  963. "any",
  964. "base"
  965. ],
  966. "alpine.3.17-x64": [
  967. "alpine.3.17",
  968. "alpine.3.16-x64",
  969. "alpine.3.16",
  970. "alpine.3.15-x64",
  971. "alpine.3.15",
  972. "alpine.3.14-x64",
  973. "alpine.3.14",
  974. "alpine.3.13-x64",
  975. "alpine.3.13",
  976. "alpine.3.12-x64",
  977. "alpine.3.12",
  978. "alpine.3.11-x64",
  979. "alpine.3.11",
  980. "alpine.3.10-x64",
  981. "alpine.3.10",
  982. "alpine.3.9-x64",
  983. "alpine.3.9",
  984. "alpine.3.8-x64",
  985. "alpine.3.8",
  986. "alpine.3.7-x64",
  987. "alpine.3.7",
  988. "alpine.3.6-x64",
  989. "alpine.3.6",
  990. "alpine-x64",
  991. "alpine",
  992. "linux-musl-x64",
  993. "linux-musl",
  994. "linux-x64",
  995. "linux",
  996. "unix-x64",
  997. "unix",
  998. "any",
  999. "base"
  1000. ],
  1001. "alpine.3.6-x64": [
  1002. "alpine.3.6",
  1003. "alpine-x64",
  1004. "alpine",
  1005. "linux-musl-x64",
  1006. "linux-musl",
  1007. "linux-x64",
  1008. "linux",
  1009. "unix-x64",
  1010. "unix",
  1011. "any",
  1012. "base"
  1013. ],
  1014. "alpine.3.7-x64": [
  1015. "alpine.3.7",
  1016. "alpine.3.6-x64",
  1017. "alpine.3.6",
  1018. "alpine-x64",
  1019. "alpine",
  1020. "linux-musl-x64",
  1021. "linux-musl",
  1022. "linux-x64",
  1023. "linux",
  1024. "unix-x64",
  1025. "unix",
  1026. "any",
  1027. "base"
  1028. ],
  1029. "alpine.3.8-x64": [
  1030. "alpine.3.8",
  1031. "alpine.3.7-x64",
  1032. "alpine.3.7",
  1033. "alpine.3.6-x64",
  1034. "alpine.3.6",
  1035. "alpine-x64",
  1036. "alpine",
  1037. "linux-musl-x64",
  1038. "linux-musl",
  1039. "linux-x64",
  1040. "linux",
  1041. "unix-x64",
  1042. "unix",
  1043. "any",
  1044. "base"
  1045. ],
  1046. "alpine.3.9-x64": [
  1047. "alpine.3.9",
  1048. "alpine.3.8-x64",
  1049. "alpine.3.8",
  1050. "alpine.3.7-x64",
  1051. "alpine.3.7",
  1052. "alpine.3.6-x64",
  1053. "alpine.3.6",
  1054. "alpine-x64",
  1055. "alpine",
  1056. "linux-musl-x64",
  1057. "linux-musl",
  1058. "linux-x64",
  1059. "linux",
  1060. "unix-x64",
  1061. "unix",
  1062. "any",
  1063. "base"
  1064. ],
  1065. "android-x64": [
  1066. "android",
  1067. "linux-bionic-x64",
  1068. "linux-bionic",
  1069. "linux-x64",
  1070. "linux",
  1071. "unix-x64",
  1072. "unix",
  1073. "any",
  1074. "base"
  1075. ],
  1076. "android.21-x64": [
  1077. "android.21",
  1078. "android-x64",
  1079. "android",
  1080. "linux-bionic-x64",
  1081. "linux-bionic",
  1082. "linux-x64",
  1083. "linux",
  1084. "unix-x64",
  1085. "unix",
  1086. "any",
  1087. "base"
  1088. ],
  1089. "android.22-x64": [
  1090. "android.22",
  1091. "android.21-x64",
  1092. "android.21",
  1093. "android-x64",
  1094. "android",
  1095. "linux-bionic-x64",
  1096. "linux-bionic",
  1097. "linux-x64",
  1098. "linux",
  1099. "unix-x64",
  1100. "unix",
  1101. "any",
  1102. "base"
  1103. ],
  1104. "android.23-x64": [
  1105. "android.23",
  1106. "android.22-x64",
  1107. "android.22",
  1108. "android.21-x64",
  1109. "android.21",
  1110. "android-x64",
  1111. "android",
  1112. "linux-bionic-x64",
  1113. "linux-bionic",
  1114. "linux-x64",
  1115. "linux",
  1116. "unix-x64",
  1117. "unix",
  1118. "any",
  1119. "base"
  1120. ],
  1121. "android.24-x64": [
  1122. "android.24",
  1123. "android.23-x64",
  1124. "android.23",
  1125. "android.22-x64",
  1126. "android.22",
  1127. "android.21-x64",
  1128. "android.21",
  1129. "android-x64",
  1130. "android",
  1131. "linux-bionic-x64",
  1132. "linux-bionic",
  1133. "linux-x64",
  1134. "linux",
  1135. "unix-x64",
  1136. "unix",
  1137. "any",
  1138. "base"
  1139. ],
  1140. "android.25-x64": [
  1141. "android.25",
  1142. "android.24-x64",
  1143. "android.24",
  1144. "android.23-x64",
  1145. "android.23",
  1146. "android.22-x64",
  1147. "android.22",
  1148. "android.21-x64",
  1149. "android.21",
  1150. "android-x64",
  1151. "android",
  1152. "linux-bionic-x64",
  1153. "linux-bionic",
  1154. "linux-x64",
  1155. "linux",
  1156. "unix-x64",
  1157. "unix",
  1158. "any",
  1159. "base"
  1160. ],
  1161. "android.26-x64": [
  1162. "android.26",
  1163. "android.25-x64",
  1164. "android.25",
  1165. "android.24-x64",
  1166. "android.24",
  1167. "android.23-x64",
  1168. "android.23",
  1169. "android.22-x64",
  1170. "android.22",
  1171. "android.21-x64",
  1172. "android.21",
  1173. "android-x64",
  1174. "android",
  1175. "linux-bionic-x64",
  1176. "linux-bionic",
  1177. "linux-x64",
  1178. "linux",
  1179. "unix-x64",
  1180. "unix",
  1181. "any",
  1182. "base"
  1183. ],
  1184. "android.27-x64": [
  1185. "android.27",
  1186. "android.26-x64",
  1187. "android.26",
  1188. "android.25-x64",
  1189. "android.25",
  1190. "android.24-x64",
  1191. "android.24",
  1192. "android.23-x64",
  1193. "android.23",
  1194. "android.22-x64",
  1195. "android.22",
  1196. "android.21-x64",
  1197. "android.21",
  1198. "android-x64",
  1199. "android",
  1200. "linux-bionic-x64",
  1201. "linux-bionic",
  1202. "linux-x64",
  1203. "linux",
  1204. "unix-x64",
  1205. "unix",
  1206. "any",
  1207. "base"
  1208. ],
  1209. "android.28-x64": [
  1210. "android.28",
  1211. "android.27-x64",
  1212. "android.27",
  1213. "android.26-x64",
  1214. "android.26",
  1215. "android.25-x64",
  1216. "android.25",
  1217. "android.24-x64",
  1218. "android.24",
  1219. "android.23-x64",
  1220. "android.23",
  1221. "android.22-x64",
  1222. "android.22",
  1223. "android.21-x64",
  1224. "android.21",
  1225. "android-x64",
  1226. "android",
  1227. "linux-bionic-x64",
  1228. "linux-bionic",
  1229. "linux-x64",
  1230. "linux",
  1231. "unix-x64",
  1232. "unix",
  1233. "any",
  1234. "base"
  1235. ],
  1236. "android.29-x64": [
  1237. "android.29",
  1238. "android.28-x64",
  1239. "android.28",
  1240. "android.27-x64",
  1241. "android.27",
  1242. "android.26-x64",
  1243. "android.26",
  1244. "android.25-x64",
  1245. "android.25",
  1246. "android.24-x64",
  1247. "android.24",
  1248. "android.23-x64",
  1249. "android.23",
  1250. "android.22-x64",
  1251. "android.22",
  1252. "android.21-x64",
  1253. "android.21",
  1254. "android-x64",
  1255. "android",
  1256. "linux-bionic-x64",
  1257. "linux-bionic",
  1258. "linux-x64",
  1259. "linux",
  1260. "unix-x64",
  1261. "unix",
  1262. "any",
  1263. "base"
  1264. ],
  1265. "android.30-x64": [
  1266. "android.30",
  1267. "android.29-x64",
  1268. "android.29",
  1269. "android.28-x64",
  1270. "android.28",
  1271. "android.27-x64",
  1272. "android.27",
  1273. "android.26-x64",
  1274. "android.26",
  1275. "android.25-x64",
  1276. "android.25",
  1277. "android.24-x64",
  1278. "android.24",
  1279. "android.23-x64",
  1280. "android.23",
  1281. "android.22-x64",
  1282. "android.22",
  1283. "android.21-x64",
  1284. "android.21",
  1285. "android-x64",
  1286. "android",
  1287. "linux-bionic-x64",
  1288. "linux-bionic",
  1289. "linux-x64",
  1290. "linux",
  1291. "unix-x64",
  1292. "unix",
  1293. "any",
  1294. "base"
  1295. ],
  1296. "android.31-x64": [
  1297. "android.31",
  1298. "android.30-x64",
  1299. "android.30",
  1300. "android.29-x64",
  1301. "android.29",
  1302. "android.28-x64",
  1303. "android.28",
  1304. "android.27-x64",
  1305. "android.27",
  1306. "android.26-x64",
  1307. "android.26",
  1308. "android.25-x64",
  1309. "android.25",
  1310. "android.24-x64",
  1311. "android.24",
  1312. "android.23-x64",
  1313. "android.23",
  1314. "android.22-x64",
  1315. "android.22",
  1316. "android.21-x64",
  1317. "android.21",
  1318. "android-x64",
  1319. "android",
  1320. "linux-bionic-x64",
  1321. "linux-bionic",
  1322. "linux-x64",
  1323. "linux",
  1324. "unix-x64",
  1325. "unix",
  1326. "any",
  1327. "base"
  1328. ],
  1329. "android.32-x64": [
  1330. "android.32",
  1331. "android.31-x64",
  1332. "android.31",
  1333. "android.30-x64",
  1334. "android.30",
  1335. "android.29-x64",
  1336. "android.29",
  1337. "android.28-x64",
  1338. "android.28",
  1339. "android.27-x64",
  1340. "android.27",
  1341. "android.26-x64",
  1342. "android.26",
  1343. "android.25-x64",
  1344. "android.25",
  1345. "android.24-x64",
  1346. "android.24",
  1347. "android.23-x64",
  1348. "android.23",
  1349. "android.22-x64",
  1350. "android.22",
  1351. "android.21-x64",
  1352. "android.21",
  1353. "android-x64",
  1354. "android",
  1355. "linux-bionic-x64",
  1356. "linux-bionic",
  1357. "linux-x64",
  1358. "linux",
  1359. "unix-x64",
  1360. "unix",
  1361. "any",
  1362. "base"
  1363. ],
  1364. "arch-x64": [
  1365. "arch",
  1366. "linux-x64",
  1367. "linux",
  1368. "unix-x64",
  1369. "unix",
  1370. "any",
  1371. "base"
  1372. ],
  1373. "centos-x64": [
  1374. "centos",
  1375. "rhel-x64",
  1376. "rhel",
  1377. "linux-x64",
  1378. "linux",
  1379. "unix-x64",
  1380. "unix",
  1381. "any",
  1382. "base"
  1383. ],
  1384. "centos.7-x64": [
  1385. "centos.7",
  1386. "centos-x64",
  1387. "rhel.7-x64",
  1388. "centos",
  1389. "rhel.7",
  1390. "rhel-x64",
  1391. "rhel",
  1392. "linux-x64",
  1393. "linux",
  1394. "unix-x64",
  1395. "unix",
  1396. "any",
  1397. "base"
  1398. ],
  1399. "centos.8-x64": [
  1400. "centos.8",
  1401. "centos-x64",
  1402. "rhel.8-x64",
  1403. "centos",
  1404. "rhel.8",
  1405. "rhel-x64",
  1406. "rhel",
  1407. "linux-x64",
  1408. "linux",
  1409. "unix-x64",
  1410. "unix",
  1411. "any",
  1412. "base"
  1413. ],
  1414. "centos.9-x64": [
  1415. "centos.9",
  1416. "centos-x64",
  1417. "rhel.9-x64",
  1418. "centos",
  1419. "rhel.9",
  1420. "rhel-x64",
  1421. "rhel",
  1422. "linux-x64",
  1423. "linux",
  1424. "unix-x64",
  1425. "unix",
  1426. "any",
  1427. "base"
  1428. ],
  1429. "debian-x64": [
  1430. "debian",
  1431. "linux-x64",
  1432. "linux",
  1433. "unix-x64",
  1434. "unix",
  1435. "any",
  1436. "base"
  1437. ],
  1438. "debian.10-x64": [
  1439. "debian.10",
  1440. "debian-x64",
  1441. "debian",
  1442. "linux-x64",
  1443. "linux",
  1444. "unix-x64",
  1445. "unix",
  1446. "any",
  1447. "base"
  1448. ],
  1449. "debian.11-x64": [
  1450. "debian.11",
  1451. "debian-x64",
  1452. "debian",
  1453. "linux-x64",
  1454. "linux",
  1455. "unix-x64",
  1456. "unix",
  1457. "any",
  1458. "base"
  1459. ],
  1460. "debian.8-x64": [
  1461. "debian.8",
  1462. "debian-x64",
  1463. "debian",
  1464. "linux-x64",
  1465. "linux",
  1466. "unix-x64",
  1467. "unix",
  1468. "any",
  1469. "base"
  1470. ],
  1471. "debian.9-x64": [
  1472. "debian.9",
  1473. "debian-x64",
  1474. "debian",
  1475. "linux-x64",
  1476. "linux",
  1477. "unix-x64",
  1478. "unix",
  1479. "any",
  1480. "base"
  1481. ],
  1482. "exherbo-x64": [
  1483. "exherbo",
  1484. "linux-x64",
  1485. "linux",
  1486. "unix-x64",
  1487. "unix",
  1488. "any",
  1489. "base"
  1490. ],
  1491. "fedora-x64": [
  1492. "fedora",
  1493. "linux-x64",
  1494. "linux",
  1495. "unix-x64",
  1496. "unix",
  1497. "any",
  1498. "base"
  1499. ],
  1500. "fedora.23-x64": [
  1501. "fedora.23",
  1502. "fedora-x64",
  1503. "fedora",
  1504. "linux-x64",
  1505. "linux",
  1506. "unix-x64",
  1507. "unix",
  1508. "any",
  1509. "base"
  1510. ],
  1511. "fedora.24-x64": [
  1512. "fedora.24",
  1513. "fedora-x64",
  1514. "fedora",
  1515. "linux-x64",
  1516. "linux",
  1517. "unix-x64",
  1518. "unix",
  1519. "any",
  1520. "base"
  1521. ],
  1522. "fedora.25-x64": [
  1523. "fedora.25",
  1524. "fedora-x64",
  1525. "fedora",
  1526. "linux-x64",
  1527. "linux",
  1528. "unix-x64",
  1529. "unix",
  1530. "any",
  1531. "base"
  1532. ],
  1533. "fedora.26-x64": [
  1534. "fedora.26",
  1535. "fedora-x64",
  1536. "fedora",
  1537. "linux-x64",
  1538. "linux",
  1539. "unix-x64",
  1540. "unix",
  1541. "any",
  1542. "base"
  1543. ],
  1544. "fedora.27-x64": [
  1545. "fedora.27",
  1546. "fedora-x64",
  1547. "fedora",
  1548. "linux-x64",
  1549. "linux",
  1550. "unix-x64",
  1551. "unix",
  1552. "any",
  1553. "base"
  1554. ],
  1555. "fedora.28-x64": [
  1556. "fedora.28",
  1557. "fedora-x64",
  1558. "fedora",
  1559. "linux-x64",
  1560. "linux",
  1561. "unix-x64",
  1562. "unix",
  1563. "any",
  1564. "base"
  1565. ],
  1566. "fedora.29-x64": [
  1567. "fedora.29",
  1568. "fedora-x64",
  1569. "fedora",
  1570. "linux-x64",
  1571. "linux",
  1572. "unix-x64",
  1573. "unix",
  1574. "any",
  1575. "base"
  1576. ],
  1577. "fedora.30-x64": [
  1578. "fedora.30",
  1579. "fedora-x64",
  1580. "fedora",
  1581. "linux-x64",
  1582. "linux",
  1583. "unix-x64",
  1584. "unix",
  1585. "any",
  1586. "base"
  1587. ],
  1588. "fedora.31-x64": [
  1589. "fedora.31",
  1590. "fedora-x64",
  1591. "fedora",
  1592. "linux-x64",
  1593. "linux",
  1594. "unix-x64",
  1595. "unix",
  1596. "any",
  1597. "base"
  1598. ],
  1599. "fedora.32-x64": [
  1600. "fedora.32",
  1601. "fedora-x64",
  1602. "fedora",
  1603. "linux-x64",
  1604. "linux",
  1605. "unix-x64",
  1606. "unix",
  1607. "any",
  1608. "base"
  1609. ],
  1610. "fedora.33-x64": [
  1611. "fedora.33",
  1612. "fedora-x64",
  1613. "fedora",
  1614. "linux-x64",
  1615. "linux",
  1616. "unix-x64",
  1617. "unix",
  1618. "any",
  1619. "base"
  1620. ],
  1621. "fedora.34-x64": [
  1622. "fedora.34",
  1623. "fedora-x64",
  1624. "fedora",
  1625. "linux-x64",
  1626. "linux",
  1627. "unix-x64",
  1628. "unix",
  1629. "any",
  1630. "base"
  1631. ],
  1632. "fedora.35-x64": [
  1633. "fedora.35",
  1634. "fedora-x64",
  1635. "fedora",
  1636. "linux-x64",
  1637. "linux",
  1638. "unix-x64",
  1639. "unix",
  1640. "any",
  1641. "base"
  1642. ],
  1643. "fedora.36-x64": [
  1644. "fedora.36",
  1645. "fedora-x64",
  1646. "fedora",
  1647. "linux-x64",
  1648. "linux",
  1649. "unix-x64",
  1650. "unix",
  1651. "any",
  1652. "base"
  1653. ],
  1654. "fedora.37-x64": [
  1655. "fedora.37",
  1656. "fedora-x64",
  1657. "fedora",
  1658. "linux-x64",
  1659. "linux",
  1660. "unix-x64",
  1661. "unix",
  1662. "any",
  1663. "base"
  1664. ],
  1665. "fedora.38-x64": [
  1666. "fedora.38",
  1667. "fedora-x64",
  1668. "fedora",
  1669. "linux-x64",
  1670. "linux",
  1671. "unix-x64",
  1672. "unix",
  1673. "any",
  1674. "base"
  1675. ],
  1676. "gentoo-x64": [
  1677. "gentoo",
  1678. "linux-x64",
  1679. "linux",
  1680. "unix-x64",
  1681. "unix",
  1682. "any",
  1683. "base"
  1684. ],
  1685. "linux-bionic-x64": [
  1686. "linux-bionic",
  1687. "linux-x64",
  1688. "linux",
  1689. "unix-x64",
  1690. "unix",
  1691. "any",
  1692. "base"
  1693. ],
  1694. "linux-musl-x64": [
  1695. "linux-musl",
  1696. "linux-x64",
  1697. "linux",
  1698. "unix-x64",
  1699. "unix",
  1700. "any",
  1701. "base"
  1702. ],
  1703. "linux-x64": [
  1704. "linux",
  1705. "unix-x64",
  1706. "unix",
  1707. "any",
  1708. "base"
  1709. ],
  1710. "linuxmint.17-x64": [
  1711. "linuxmint.17",
  1712. "ubuntu.14.04-x64",
  1713. "ubuntu.14.04",
  1714. "ubuntu-x64",
  1715. "ubuntu",
  1716. "debian-x64",
  1717. "debian",
  1718. "linux-x64",
  1719. "linux",
  1720. "unix-x64",
  1721. "unix",
  1722. "any",
  1723. "base"
  1724. ],
  1725. "linuxmint.17.1-x64": [
  1726. "linuxmint.17.1",
  1727. "linuxmint.17-x64",
  1728. "linuxmint.17",
  1729. "ubuntu.14.04-x64",
  1730. "ubuntu.14.04",
  1731. "ubuntu-x64",
  1732. "ubuntu",
  1733. "debian-x64",
  1734. "debian",
  1735. "linux-x64",
  1736. "linux",
  1737. "unix-x64",
  1738. "unix",
  1739. "any",
  1740. "base"
  1741. ],
  1742. "linuxmint.17.2-x64": [
  1743. "linuxmint.17.2",
  1744. "linuxmint.17.1-x64",
  1745. "linuxmint.17.1",
  1746. "linuxmint.17-x64",
  1747. "linuxmint.17",
  1748. "ubuntu.14.04-x64",
  1749. "ubuntu.14.04",
  1750. "ubuntu-x64",
  1751. "ubuntu",
  1752. "debian-x64",
  1753. "debian",
  1754. "linux-x64",
  1755. "linux",
  1756. "unix-x64",
  1757. "unix",
  1758. "any",
  1759. "base"
  1760. ],
  1761. "linuxmint.17.3-x64": [
  1762. "linuxmint.17.3",
  1763. "linuxmint.17.2-x64",
  1764. "linuxmint.17.2",
  1765. "linuxmint.17.1-x64",
  1766. "linuxmint.17.1",
  1767. "linuxmint.17-x64",
  1768. "linuxmint.17",
  1769. "ubuntu.14.04-x64",
  1770. "ubuntu.14.04",
  1771. "ubuntu-x64",
  1772. "ubuntu",
  1773. "debian-x64",
  1774. "debian",
  1775. "linux-x64",
  1776. "linux",
  1777. "unix-x64",
  1778. "unix",
  1779. "any",
  1780. "base"
  1781. ],
  1782. "linuxmint.18-x64": [
  1783. "linuxmint.18",
  1784. "ubuntu.16.04-x64",
  1785. "ubuntu.16.04",
  1786. "ubuntu-x64",
  1787. "ubuntu",
  1788. "debian-x64",
  1789. "debian",
  1790. "linux-x64",
  1791. "linux",
  1792. "unix-x64",
  1793. "unix",
  1794. "any",
  1795. "base"
  1796. ],
  1797. "linuxmint.18.1-x64": [
  1798. "linuxmint.18.1",
  1799. "linuxmint.18-x64",
  1800. "linuxmint.18",
  1801. "ubuntu.16.04-x64",
  1802. "ubuntu.16.04",
  1803. "ubuntu-x64",
  1804. "ubuntu",
  1805. "debian-x64",
  1806. "debian",
  1807. "linux-x64",
  1808. "linux",
  1809. "unix-x64",
  1810. "unix",
  1811. "any",
  1812. "base"
  1813. ],
  1814. "linuxmint.18.2-x64": [
  1815. "linuxmint.18.2",
  1816. "linuxmint.18.1-x64",
  1817. "linuxmint.18.1",
  1818. "linuxmint.18-x64",
  1819. "linuxmint.18",
  1820. "ubuntu.16.04-x64",
  1821. "ubuntu.16.04",
  1822. "ubuntu-x64",
  1823. "ubuntu",
  1824. "debian-x64",
  1825. "debian",
  1826. "linux-x64",
  1827. "linux",
  1828. "unix-x64",
  1829. "unix",
  1830. "any",
  1831. "base"
  1832. ],
  1833. "linuxmint.18.3-x64": [
  1834. "linuxmint.18.3",
  1835. "linuxmint.18.2-x64",
  1836. "linuxmint.18.2",
  1837. "linuxmint.18.1-x64",
  1838. "linuxmint.18.1",
  1839. "linuxmint.18-x64",
  1840. "linuxmint.18",
  1841. "ubuntu.16.04-x64",
  1842. "ubuntu.16.04",
  1843. "ubuntu-x64",
  1844. "ubuntu",
  1845. "debian-x64",
  1846. "debian",
  1847. "linux-x64",
  1848. "linux",
  1849. "unix-x64",
  1850. "unix",
  1851. "any",
  1852. "base"
  1853. ],
  1854. "linuxmint.19-x64": [
  1855. "linuxmint.19",
  1856. "ubuntu.18.04-x64",
  1857. "ubuntu.18.04",
  1858. "ubuntu-x64",
  1859. "ubuntu",
  1860. "debian-x64",
  1861. "debian",
  1862. "linux-x64",
  1863. "linux",
  1864. "unix-x64",
  1865. "unix",
  1866. "any",
  1867. "base"
  1868. ],
  1869. "linuxmint.19.1-x64": [
  1870. "linuxmint.19.1",
  1871. "linuxmint.19-x64",
  1872. "linuxmint.19",
  1873. "ubuntu.18.04-x64",
  1874. "ubuntu.18.04",
  1875. "ubuntu-x64",
  1876. "ubuntu",
  1877. "debian-x64",
  1878. "debian",
  1879. "linux-x64",
  1880. "linux",
  1881. "unix-x64",
  1882. "unix",
  1883. "any",
  1884. "base"
  1885. ],
  1886. "linuxmint.19.2-x64": [
  1887. "linuxmint.19.2",
  1888. "linuxmint.19.1-x64",
  1889. "linuxmint.19.1",
  1890. "linuxmint.19-x64",
  1891. "linuxmint.19",
  1892. "ubuntu.18.04-x64",
  1893. "ubuntu.18.04",
  1894. "ubuntu-x64",
  1895. "ubuntu",
  1896. "debian-x64",
  1897. "debian",
  1898. "linux-x64",
  1899. "linux",
  1900. "unix-x64",
  1901. "unix",
  1902. "any",
  1903. "base"
  1904. ],
  1905. "manjaro-x64": [
  1906. "manjaro",
  1907. "arch-x64",
  1908. "arch",
  1909. "linux-x64",
  1910. "linux",
  1911. "unix-x64",
  1912. "unix",
  1913. "any",
  1914. "base"
  1915. ],
  1916. "miraclelinux-x64": [
  1917. "miraclelinux",
  1918. "rhel-x64",
  1919. "rhel",
  1920. "linux-x64",
  1921. "linux",
  1922. "unix-x64",
  1923. "unix",
  1924. "any",
  1925. "base"
  1926. ],
  1927. "miraclelinux.8-x64": [
  1928. "miraclelinux.8",
  1929. "miraclelinux-x64",
  1930. "rhel.8-x64",
  1931. "miraclelinux",
  1932. "rhel.8",
  1933. "rhel-x64",
  1934. "rhel",
  1935. "linux-x64",
  1936. "linux",
  1937. "unix-x64",
  1938. "unix",
  1939. "any",
  1940. "base"
  1941. ],
  1942. "miraclelinux.9-x64": [
  1943. "miraclelinux.9",
  1944. "miraclelinux-x64",
  1945. "rhel.9-x64",
  1946. "miraclelinux",
  1947. "rhel.9",
  1948. "rhel-x64",
  1949. "rhel",
  1950. "linux-x64",
  1951. "linux",
  1952. "unix-x64",
  1953. "unix",
  1954. "any",
  1955. "base"
  1956. ],
  1957. "ol-x64": [
  1958. "ol",
  1959. "rhel-x64",
  1960. "rhel",
  1961. "linux-x64",
  1962. "linux",
  1963. "unix-x64",
  1964. "unix",
  1965. "any",
  1966. "base"
  1967. ],
  1968. "ol.7-x64": [
  1969. "ol.7",
  1970. "ol-x64",
  1971. "rhel.7-x64",
  1972. "ol",
  1973. "rhel.7",
  1974. "rhel-x64",
  1975. "rhel",
  1976. "linux-x64",
  1977. "linux",
  1978. "unix-x64",
  1979. "unix",
  1980. "any",
  1981. "base"
  1982. ],
  1983. "ol.7.0-x64": [
  1984. "ol.7.0",
  1985. "ol.7-x64",
  1986. "rhel.7.0-x64",
  1987. "ol.7",
  1988. "rhel.7.0",
  1989. "ol-x64",
  1990. "rhel.7-x64",
  1991. "ol",
  1992. "rhel.7",
  1993. "rhel-x64",
  1994. "rhel",
  1995. "linux-x64",
  1996. "linux",
  1997. "unix-x64",
  1998. "unix",
  1999. "any",
  2000. "base"
  2001. ],
  2002. "ol.7.1-x64": [
  2003. "ol.7.1",
  2004. "ol.7.0-x64",
  2005. "rhel.7.1-x64",
  2006. "ol.7.0",
  2007. "rhel.7.1",
  2008. "ol.7-x64",
  2009. "rhel.7.0-x64",
  2010. "ol.7",
  2011. "rhel.7.0",
  2012. "ol-x64",
  2013. "rhel.7-x64",
  2014. "ol",
  2015. "rhel.7",
  2016. "rhel-x64",
  2017. "rhel",
  2018. "linux-x64",
  2019. "linux",
  2020. "unix-x64",
  2021. "unix",
  2022. "any",
  2023. "base"
  2024. ],
  2025. "ol.7.2-x64": [
  2026. "ol.7.2",
  2027. "ol.7.1-x64",
  2028. "rhel.7.2-x64",
  2029. "ol.7.1",
  2030. "rhel.7.2",
  2031. "ol.7.0-x64",
  2032. "rhel.7.1-x64",
  2033. "ol.7.0",
  2034. "rhel.7.1",
  2035. "ol.7-x64",
  2036. "rhel.7.0-x64",
  2037. "ol.7",
  2038. "rhel.7.0",
  2039. "ol-x64",
  2040. "rhel.7-x64",
  2041. "ol",
  2042. "rhel.7",
  2043. "rhel-x64",
  2044. "rhel",
  2045. "linux-x64",
  2046. "linux",
  2047. "unix-x64",
  2048. "unix",
  2049. "any",
  2050. "base"
  2051. ],
  2052. "ol.7.3-x64": [
  2053. "ol.7.3",
  2054. "ol.7.2-x64",
  2055. "rhel.7.3-x64",
  2056. "ol.7.2",
  2057. "rhel.7.3",
  2058. "ol.7.1-x64",
  2059. "rhel.7.2-x64",
  2060. "ol.7.1",
  2061. "rhel.7.2",
  2062. "ol.7.0-x64",
  2063. "rhel.7.1-x64",
  2064. "ol.7.0",
  2065. "rhel.7.1",
  2066. "ol.7-x64",
  2067. "rhel.7.0-x64",
  2068. "ol.7",
  2069. "rhel.7.0",
  2070. "ol-x64",
  2071. "rhel.7-x64",
  2072. "ol",
  2073. "rhel.7",
  2074. "rhel-x64",
  2075. "rhel",
  2076. "linux-x64",
  2077. "linux",
  2078. "unix-x64",
  2079. "unix",
  2080. "any",
  2081. "base"
  2082. ],
  2083. "ol.7.4-x64": [
  2084. "ol.7.4",
  2085. "ol.7.3-x64",
  2086. "rhel.7.4-x64",
  2087. "ol.7.3",
  2088. "rhel.7.4",
  2089. "ol.7.2-x64",
  2090. "rhel.7.3-x64",
  2091. "ol.7.2",
  2092. "rhel.7.3",
  2093. "ol.7.1-x64",
  2094. "rhel.7.2-x64",
  2095. "ol.7.1",
  2096. "rhel.7.2",
  2097. "ol.7.0-x64",
  2098. "rhel.7.1-x64",
  2099. "ol.7.0",
  2100. "rhel.7.1",
  2101. "ol.7-x64",
  2102. "rhel.7.0-x64",
  2103. "ol.7",
  2104. "rhel.7.0",
  2105. "ol-x64",
  2106. "rhel.7-x64",
  2107. "ol",
  2108. "rhel.7",
  2109. "rhel-x64",
  2110. "rhel",
  2111. "linux-x64",
  2112. "linux",
  2113. "unix-x64",
  2114. "unix",
  2115. "any",
  2116. "base"
  2117. ],
  2118. "ol.7.5-x64": [
  2119. "ol.7.5",
  2120. "ol.7.4-x64",
  2121. "rhel.7.5-x64",
  2122. "ol.7.4",
  2123. "rhel.7.5",
  2124. "ol.7.3-x64",
  2125. "rhel.7.4-x64",
  2126. "ol.7.3",
  2127. "rhel.7.4",
  2128. "ol.7.2-x64",
  2129. "rhel.7.3-x64",
  2130. "ol.7.2",
  2131. "rhel.7.3",
  2132. "ol.7.1-x64",
  2133. "rhel.7.2-x64",
  2134. "ol.7.1",
  2135. "rhel.7.2",
  2136. "ol.7.0-x64",
  2137. "rhel.7.1-x64",
  2138. "ol.7.0",
  2139. "rhel.7.1",
  2140. "ol.7-x64",
  2141. "rhel.7.0-x64",
  2142. "ol.7",
  2143. "rhel.7.0",
  2144. "ol-x64",
  2145. "rhel.7-x64",
  2146. "ol",
  2147. "rhel.7",
  2148. "rhel-x64",
  2149. "rhel",
  2150. "linux-x64",
  2151. "linux",
  2152. "unix-x64",
  2153. "unix",
  2154. "any",
  2155. "base"
  2156. ],
  2157. "ol.7.6-x64": [
  2158. "ol.7.6",
  2159. "ol.7.5-x64",
  2160. "rhel.7.6-x64",
  2161. "ol.7.5",
  2162. "rhel.7.6",
  2163. "ol.7.4-x64",
  2164. "rhel.7.5-x64",
  2165. "ol.7.4",
  2166. "rhel.7.5",
  2167. "ol.7.3-x64",
  2168. "rhel.7.4-x64",
  2169. "ol.7.3",
  2170. "rhel.7.4",
  2171. "ol.7.2-x64",
  2172. "rhel.7.3-x64",
  2173. "ol.7.2",
  2174. "rhel.7.3",
  2175. "ol.7.1-x64",
  2176. "rhel.7.2-x64",
  2177. "ol.7.1",
  2178. "rhel.7.2",
  2179. "ol.7.0-x64",
  2180. "rhel.7.1-x64",
  2181. "ol.7.0",
  2182. "rhel.7.1",
  2183. "ol.7-x64",
  2184. "rhel.7.0-x64",
  2185. "ol.7",
  2186. "rhel.7.0",
  2187. "ol-x64",
  2188. "rhel.7-x64",
  2189. "ol",
  2190. "rhel.7",
  2191. "rhel-x64",
  2192. "rhel",
  2193. "linux-x64",
  2194. "linux",
  2195. "unix-x64",
  2196. "unix",
  2197. "any",
  2198. "base"
  2199. ],
  2200. "ol.8-x64": [
  2201. "ol.8",
  2202. "ol-x64",
  2203. "rhel.8-x64",
  2204. "ol",
  2205. "rhel.8",
  2206. "rhel-x64",
  2207. "rhel",
  2208. "linux-x64",
  2209. "linux",
  2210. "unix-x64",
  2211. "unix",
  2212. "any",
  2213. "base"
  2214. ],
  2215. "ol.8.0-x64": [
  2216. "ol.8.0",
  2217. "ol.8-x64",
  2218. "rhel.8.0-x64",
  2219. "ol.8",
  2220. "rhel.8.0",
  2221. "ol-x64",
  2222. "rhel.8-x64",
  2223. "ol",
  2224. "rhel.8",
  2225. "rhel-x64",
  2226. "rhel",
  2227. "linux-x64",
  2228. "linux",
  2229. "unix-x64",
  2230. "unix",
  2231. "any",
  2232. "base"
  2233. ],
  2234. "opensuse-x64": [
  2235. "opensuse",
  2236. "linux-x64",
  2237. "linux",
  2238. "unix-x64",
  2239. "unix",
  2240. "any",
  2241. "base"
  2242. ],
  2243. "opensuse.13.2-x64": [
  2244. "opensuse.13.2",
  2245. "opensuse-x64",
  2246. "opensuse",
  2247. "linux-x64",
  2248. "linux",
  2249. "unix-x64",
  2250. "unix",
  2251. "any",
  2252. "base"
  2253. ],
  2254. "opensuse.15.0-x64": [
  2255. "opensuse.15.0",
  2256. "opensuse-x64",
  2257. "opensuse",
  2258. "linux-x64",
  2259. "linux",
  2260. "unix-x64",
  2261. "unix",
  2262. "any",
  2263. "base"
  2264. ],
  2265. "opensuse.15.1-x64": [
  2266. "opensuse.15.1",
  2267. "opensuse-x64",
  2268. "opensuse",
  2269. "linux-x64",
  2270. "linux",
  2271. "unix-x64",
  2272. "unix",
  2273. "any",
  2274. "base"
  2275. ],
  2276. "opensuse.42.1-x64": [
  2277. "opensuse.42.1",
  2278. "opensuse-x64",
  2279. "opensuse",
  2280. "linux-x64",
  2281. "linux",
  2282. "unix-x64",
  2283. "unix",
  2284. "any",
  2285. "base"
  2286. ],
  2287. "opensuse.42.2-x64": [
  2288. "opensuse.42.2",
  2289. "opensuse-x64",
  2290. "opensuse",
  2291. "linux-x64",
  2292. "linux",
  2293. "unix-x64",
  2294. "unix",
  2295. "any",
  2296. "base"
  2297. ],
  2298. "opensuse.42.3-x64": [
  2299. "opensuse.42.3",
  2300. "opensuse-x64",
  2301. "opensuse",
  2302. "linux-x64",
  2303. "linux",
  2304. "unix-x64",
  2305. "unix",
  2306. "any",
  2307. "base"
  2308. ],
  2309. "rhel-x64": [
  2310. "rhel",
  2311. "linux-x64",
  2312. "linux",
  2313. "unix-x64",
  2314. "unix",
  2315. "any",
  2316. "base"
  2317. ],
  2318. "rhel.6-x64": [
  2319. "rhel.6",
  2320. "rhel-x64",
  2321. "rhel",
  2322. "linux-x64",
  2323. "linux",
  2324. "unix-x64",
  2325. "unix",
  2326. "any",
  2327. "base"
  2328. ],
  2329. "rhel.7-x64": [
  2330. "rhel.7",
  2331. "rhel-x64",
  2332. "rhel",
  2333. "linux-x64",
  2334. "linux",
  2335. "unix-x64",
  2336. "unix",
  2337. "any",
  2338. "base"
  2339. ],
  2340. "rhel.7.0-x64": [
  2341. "rhel.7.0",
  2342. "rhel.7-x64",
  2343. "rhel.7",
  2344. "rhel-x64",
  2345. "rhel",
  2346. "linux-x64",
  2347. "linux",
  2348. "unix-x64",
  2349. "unix",
  2350. "any",
  2351. "base"
  2352. ],
  2353. "rhel.7.1-x64": [
  2354. "rhel.7.1",
  2355. "rhel.7.0-x64",
  2356. "rhel.7.0",
  2357. "rhel.7-x64",
  2358. "rhel.7",
  2359. "rhel-x64",
  2360. "rhel",
  2361. "linux-x64",
  2362. "linux",
  2363. "unix-x64",
  2364. "unix",
  2365. "any",
  2366. "base"
  2367. ],
  2368. "rhel.7.2-x64": [
  2369. "rhel.7.2",
  2370. "rhel.7.1-x64",
  2371. "rhel.7.1",
  2372. "rhel.7.0-x64",
  2373. "rhel.7.0",
  2374. "rhel.7-x64",
  2375. "rhel.7",
  2376. "rhel-x64",
  2377. "rhel",
  2378. "linux-x64",
  2379. "linux",
  2380. "unix-x64",
  2381. "unix",
  2382. "any",
  2383. "base"
  2384. ],
  2385. "rhel.7.3-x64": [
  2386. "rhel.7.3",
  2387. "rhel.7.2-x64",
  2388. "rhel.7.2",
  2389. "rhel.7.1-x64",
  2390. "rhel.7.1",
  2391. "rhel.7.0-x64",
  2392. "rhel.7.0",
  2393. "rhel.7-x64",
  2394. "rhel.7",
  2395. "rhel-x64",
  2396. "rhel",
  2397. "linux-x64",
  2398. "linux",
  2399. "unix-x64",
  2400. "unix",
  2401. "any",
  2402. "base"
  2403. ],
  2404. "rhel.7.4-x64": [
  2405. "rhel.7.4",
  2406. "rhel.7.3-x64",
  2407. "rhel.7.3",
  2408. "rhel.7.2-x64",
  2409. "rhel.7.2",
  2410. "rhel.7.1-x64",
  2411. "rhel.7.1",
  2412. "rhel.7.0-x64",
  2413. "rhel.7.0",
  2414. "rhel.7-x64",
  2415. "rhel.7",
  2416. "rhel-x64",
  2417. "rhel",
  2418. "linux-x64",
  2419. "linux",
  2420. "unix-x64",
  2421. "unix",
  2422. "any",
  2423. "base"
  2424. ],
  2425. "rhel.7.5-x64": [
  2426. "rhel.7.5",
  2427. "rhel.7.4-x64",
  2428. "rhel.7.4",
  2429. "rhel.7.3-x64",
  2430. "rhel.7.3",
  2431. "rhel.7.2-x64",
  2432. "rhel.7.2",
  2433. "rhel.7.1-x64",
  2434. "rhel.7.1",
  2435. "rhel.7.0-x64",
  2436. "rhel.7.0",
  2437. "rhel.7-x64",
  2438. "rhel.7",
  2439. "rhel-x64",
  2440. "rhel",
  2441. "linux-x64",
  2442. "linux",
  2443. "unix-x64",
  2444. "unix",
  2445. "any",
  2446. "base"
  2447. ],
  2448. "rhel.7.6-x64": [
  2449. "rhel.7.6",
  2450. "rhel.7.5-x64",
  2451. "rhel.7.5",
  2452. "rhel.7.4-x64",
  2453. "rhel.7.4",
  2454. "rhel.7.3-x64",
  2455. "rhel.7.3",
  2456. "rhel.7.2-x64",
  2457. "rhel.7.2",
  2458. "rhel.7.1-x64",
  2459. "rhel.7.1",
  2460. "rhel.7.0-x64",
  2461. "rhel.7.0",
  2462. "rhel.7-x64",
  2463. "rhel.7",
  2464. "rhel-x64",
  2465. "rhel",
  2466. "linux-x64",
  2467. "linux",
  2468. "unix-x64",
  2469. "unix",
  2470. "any",
  2471. "base"
  2472. ],
  2473. "rhel.8-x64": [
  2474. "rhel.8",
  2475. "rhel-x64",
  2476. "rhel",
  2477. "linux-x64",
  2478. "linux",
  2479. "unix-x64",
  2480. "unix",
  2481. "any",
  2482. "base"
  2483. ],
  2484. "rhel.8.0-x64": [
  2485. "rhel.8.0",
  2486. "rhel.8-x64",
  2487. "rhel.8",
  2488. "rhel-x64",
  2489. "rhel",
  2490. "linux-x64",
  2491. "linux",
  2492. "unix-x64",
  2493. "unix",
  2494. "any",
  2495. "base"
  2496. ],
  2497. "rhel.8.1-x64": [
  2498. "rhel.8.1",
  2499. "rhel.8.0-x64",
  2500. "rhel.8.0",
  2501. "rhel.8-x64",
  2502. "rhel.8",
  2503. "rhel-x64",
  2504. "rhel",
  2505. "linux-x64",
  2506. "linux",
  2507. "unix-x64",
  2508. "unix",
  2509. "any",
  2510. "base"
  2511. ],
  2512. "rhel.9-x64": [
  2513. "rhel.9",
  2514. "rhel-x64",
  2515. "rhel",
  2516. "linux-x64",
  2517. "linux",
  2518. "unix-x64",
  2519. "unix",
  2520. "any",
  2521. "base"
  2522. ],
  2523. "rocky-x64": [
  2524. "rocky",
  2525. "rhel-x64",
  2526. "rhel",
  2527. "linux-x64",
  2528. "linux",
  2529. "unix-x64",
  2530. "unix",
  2531. "any",
  2532. "base"
  2533. ],
  2534. "rocky.8-x64": [
  2535. "rocky.8",
  2536. "rocky-x64",
  2537. "rhel.8-x64",
  2538. "rocky",
  2539. "rhel.8",
  2540. "rhel-x64",
  2541. "rhel",
  2542. "linux-x64",
  2543. "linux",
  2544. "unix-x64",
  2545. "unix",
  2546. "any",
  2547. "base"
  2548. ],
  2549. "rocky.9-x64": [
  2550. "rocky.9",
  2551. "rocky-x64",
  2552. "rhel.9-x64",
  2553. "rocky",
  2554. "rhel.9",
  2555. "rhel-x64",
  2556. "rhel",
  2557. "linux-x64",
  2558. "linux",
  2559. "unix-x64",
  2560. "unix",
  2561. "any",
  2562. "base"
  2563. ],
  2564. "sles-x64": [
  2565. "sles",
  2566. "linux-x64",
  2567. "linux",
  2568. "unix-x64",
  2569. "unix",
  2570. "any",
  2571. "base"
  2572. ],
  2573. "sles.12-x64": [
  2574. "sles.12",
  2575. "sles-x64",
  2576. "sles",
  2577. "linux-x64",
  2578. "linux",
  2579. "unix-x64",
  2580. "unix",
  2581. "any",
  2582. "base"
  2583. ],
  2584. "sles.12.1-x64": [
  2585. "sles.12.1",
  2586. "sles.12-x64",
  2587. "sles.12",
  2588. "sles-x64",
  2589. "sles",
  2590. "linux-x64",
  2591. "linux",
  2592. "unix-x64",
  2593. "unix",
  2594. "any",
  2595. "base"
  2596. ],
  2597. "sles.12.2-x64": [
  2598. "sles.12.2",
  2599. "sles.12.1-x64",
  2600. "sles.12.1",
  2601. "sles.12-x64",
  2602. "sles.12",
  2603. "sles-x64",
  2604. "sles",
  2605. "linux-x64",
  2606. "linux",
  2607. "unix-x64",
  2608. "unix",
  2609. "any",
  2610. "base"
  2611. ],
  2612. "sles.12.3-x64": [
  2613. "sles.12.3",
  2614. "sles.12.2-x64",
  2615. "sles.12.2",
  2616. "sles.12.1-x64",
  2617. "sles.12.1",
  2618. "sles.12-x64",
  2619. "sles.12",
  2620. "sles-x64",
  2621. "sles",
  2622. "linux-x64",
  2623. "linux",
  2624. "unix-x64",
  2625. "unix",
  2626. "any",
  2627. "base"
  2628. ],
  2629. "sles.12.4-x64": [
  2630. "sles.12.4",
  2631. "sles.12.3-x64",
  2632. "sles.12.3",
  2633. "sles.12.2-x64",
  2634. "sles.12.2",
  2635. "sles.12.1-x64",
  2636. "sles.12.1",
  2637. "sles.12-x64",
  2638. "sles.12",
  2639. "sles-x64",
  2640. "sles",
  2641. "linux-x64",
  2642. "linux",
  2643. "unix-x64",
  2644. "unix",
  2645. "any",
  2646. "base"
  2647. ],
  2648. "sles.15-x64": [
  2649. "sles.15",
  2650. "sles.12.4-x64",
  2651. "sles.12.4",
  2652. "sles.12.3-x64",
  2653. "sles.12.3",
  2654. "sles.12.2-x64",
  2655. "sles.12.2",
  2656. "sles.12.1-x64",
  2657. "sles.12.1",
  2658. "sles.12-x64",
  2659. "sles.12",
  2660. "sles-x64",
  2661. "sles",
  2662. "linux-x64",
  2663. "linux",
  2664. "unix-x64",
  2665. "unix",
  2666. "any",
  2667. "base"
  2668. ],
  2669. "sles.15.1-x64": [
  2670. "sles.15.1",
  2671. "sles.15-x64",
  2672. "sles.15",
  2673. "sles.12.4-x64",
  2674. "sles.12.4",
  2675. "sles.12.3-x64",
  2676. "sles.12.3",
  2677. "sles.12.2-x64",
  2678. "sles.12.2",
  2679. "sles.12.1-x64",
  2680. "sles.12.1",
  2681. "sles.12-x64",
  2682. "sles.12",
  2683. "sles-x64",
  2684. "sles",
  2685. "linux-x64",
  2686. "linux",
  2687. "unix-x64",
  2688. "unix",
  2689. "any",
  2690. "base"
  2691. ],
  2692. "ubuntu-x64": [
  2693. "ubuntu",
  2694. "debian-x64",
  2695. "debian",
  2696. "linux-x64",
  2697. "linux",
  2698. "unix-x64",
  2699. "unix",
  2700. "any",
  2701. "base"
  2702. ],
  2703. "ubuntu.14.04-x64": [
  2704. "ubuntu.14.04",
  2705. "ubuntu-x64",
  2706. "ubuntu",
  2707. "debian-x64",
  2708. "debian",
  2709. "linux-x64",
  2710. "linux",
  2711. "unix-x64",
  2712. "unix",
  2713. "any",
  2714. "base"
  2715. ],
  2716. "ubuntu.14.10-x64": [
  2717. "ubuntu.14.10",
  2718. "ubuntu-x64",
  2719. "ubuntu",
  2720. "debian-x64",
  2721. "debian",
  2722. "linux-x64",
  2723. "linux",
  2724. "unix-x64",
  2725. "unix",
  2726. "any",
  2727. "base"
  2728. ],
  2729. "ubuntu.15.04-x64": [
  2730. "ubuntu.15.04",
  2731. "ubuntu-x64",
  2732. "ubuntu",
  2733. "debian-x64",
  2734. "debian",
  2735. "linux-x64",
  2736. "linux",
  2737. "unix-x64",
  2738. "unix",
  2739. "any",
  2740. "base"
  2741. ],
  2742. "ubuntu.15.10-x64": [
  2743. "ubuntu.15.10",
  2744. "ubuntu-x64",
  2745. "ubuntu",
  2746. "debian-x64",
  2747. "debian",
  2748. "linux-x64",
  2749. "linux",
  2750. "unix-x64",
  2751. "unix",
  2752. "any",
  2753. "base"
  2754. ],
  2755. "ubuntu.16.04-x64": [
  2756. "ubuntu.16.04",
  2757. "ubuntu-x64",
  2758. "ubuntu",
  2759. "debian-x64",
  2760. "debian",
  2761. "linux-x64",
  2762. "linux",
  2763. "unix-x64",
  2764. "unix",
  2765. "any",
  2766. "base"
  2767. ],
  2768. "ubuntu.16.10-x64": [
  2769. "ubuntu.16.10",
  2770. "ubuntu-x64",
  2771. "ubuntu",
  2772. "debian-x64",
  2773. "debian",
  2774. "linux-x64",
  2775. "linux",
  2776. "unix-x64",
  2777. "unix",
  2778. "any",
  2779. "base"
  2780. ],
  2781. "ubuntu.17.04-x64": [
  2782. "ubuntu.17.04",
  2783. "ubuntu-x64",
  2784. "ubuntu",
  2785. "debian-x64",
  2786. "debian",
  2787. "linux-x64",
  2788. "linux",
  2789. "unix-x64",
  2790. "unix",
  2791. "any",
  2792. "base"
  2793. ],
  2794. "ubuntu.17.10-x64": [
  2795. "ubuntu.17.10",
  2796. "ubuntu-x64",
  2797. "ubuntu",
  2798. "debian-x64",
  2799. "debian",
  2800. "linux-x64",
  2801. "linux",
  2802. "unix-x64",
  2803. "unix",
  2804. "any",
  2805. "base"
  2806. ],
  2807. "ubuntu.18.04-x64": [
  2808. "ubuntu.18.04",
  2809. "ubuntu-x64",
  2810. "ubuntu",
  2811. "debian-x64",
  2812. "debian",
  2813. "linux-x64",
  2814. "linux",
  2815. "unix-x64",
  2816. "unix",
  2817. "any",
  2818. "base"
  2819. ],
  2820. "ubuntu.18.10-x64": [
  2821. "ubuntu.18.10",
  2822. "ubuntu-x64",
  2823. "ubuntu",
  2824. "debian-x64",
  2825. "debian",
  2826. "linux-x64",
  2827. "linux",
  2828. "unix-x64",
  2829. "unix",
  2830. "any",
  2831. "base"
  2832. ],
  2833. "ubuntu.19.04-x64": [
  2834. "ubuntu.19.04",
  2835. "ubuntu-x64",
  2836. "ubuntu",
  2837. "debian-x64",
  2838. "debian",
  2839. "linux-x64",
  2840. "linux",
  2841. "unix-x64",
  2842. "unix",
  2843. "any",
  2844. "base"
  2845. ],
  2846. "ubuntu.19.10-x64": [
  2847. "ubuntu.19.10",
  2848. "ubuntu-x64",
  2849. "ubuntu",
  2850. "debian-x64",
  2851. "debian",
  2852. "linux-x64",
  2853. "linux",
  2854. "unix-x64",
  2855. "unix",
  2856. "any",
  2857. "base"
  2858. ],
  2859. "ubuntu.20.04-x64": [
  2860. "ubuntu.20.04",
  2861. "ubuntu-x64",
  2862. "ubuntu",
  2863. "debian-x64",
  2864. "debian",
  2865. "linux-x64",
  2866. "linux",
  2867. "unix-x64",
  2868. "unix",
  2869. "any",
  2870. "base"
  2871. ],
  2872. "ubuntu.20.10-x64": [
  2873. "ubuntu.20.10",
  2874. "ubuntu-x64",
  2875. "ubuntu",
  2876. "debian-x64",
  2877. "debian",
  2878. "linux-x64",
  2879. "linux",
  2880. "unix-x64",
  2881. "unix",
  2882. "any",
  2883. "base"
  2884. ],
  2885. "ubuntu.21.04-x64": [
  2886. "ubuntu.21.04",
  2887. "ubuntu-x64",
  2888. "ubuntu",
  2889. "debian-x64",
  2890. "debian",
  2891. "linux-x64",
  2892. "linux",
  2893. "unix-x64",
  2894. "unix",
  2895. "any",
  2896. "base"
  2897. ],
  2898. "ubuntu.21.10-x64": [
  2899. "ubuntu.21.10",
  2900. "ubuntu-x64",
  2901. "ubuntu",
  2902. "debian-x64",
  2903. "debian",
  2904. "linux-x64",
  2905. "linux",
  2906. "unix-x64",
  2907. "unix",
  2908. "any",
  2909. "base"
  2910. ],
  2911. "ubuntu.22.04-x64": [
  2912. "ubuntu.22.04",
  2913. "ubuntu-x64",
  2914. "ubuntu",
  2915. "debian-x64",
  2916. "debian",
  2917. "linux-x64",
  2918. "linux",
  2919. "unix-x64",
  2920. "unix",
  2921. "any",
  2922. "base"
  2923. ]
  2924. }
  2925. }